:root {
    --brand: #6f78ff;
    --brand-deep: #3542a8;
    --accent: #4f75ff;
    --accent-soft: #9eb0ff;
    --accent-lilac: #d8d4ff;
    --text: #202645;
    --muted: #6c739b;
    --line: rgba(127, 139, 208, 0.16);
    --bg: #f7f8ff;
    --white: #ffffff;
    --shadow: 0 16px 42px rgba(101, 113, 183, 0.12);
    --shadow-strong: 0 26px 60px rgba(87, 98, 166, 0.18);
    --container: min(1440px, calc(100% - 48px));
    --font-heading: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --font-body: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --cta-bg: linear-gradient(180deg, #31a4dc 0%, #1c7cae 100%);
    --cta-bg-hover: linear-gradient(180deg, #39afe8 0%, #2186bb 100%);
    --cta-text: #ffffff;
    --cta-shadow: 0 20px 38px rgba(16, 88, 131, 0.28);
    --cta-shadow-hover: 0 24px 42px rgba(16, 88, 131, 0.34);
    --cta-radius: 999px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: calc(var(--header-height, 100px) + 16px);
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    background:
        linear-gradient(180deg, #f9fbff 0%, #ffffff 140px, #ffffff 100%);
}

body.is-consult-modal-open {
    overflow: hidden;
}

b,
strong,
th,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

.site-shell {
    position: relative;
}

main {
    display: block;
    padding-top: var(--header-height, 100px);
}

.topbar {
    background: linear-gradient(90deg, rgba(236, 233, 255, 0.92), rgba(227, 242, 255, 0.92));
    color: #6c739b;
    font-size: 12px;
    border-bottom: 1px solid rgba(151, 165, 231, 0.16);
}

.topbar-row,
.topbar-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-row {
    justify-content: space-between;
    min-height: 40px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(148, 156, 210, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 156, 210, 0.04) 1px, transparent 1px);
    background-size: 4px 4px, 4px 4px;
    mix-blend-mode: soft-light;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

.container-fluid {
    width: auto;
    max-width: none;
    margin: 0 24px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgb(27, 32, 39);
    border-bottom: 1px solid rgba(188, 203, 221, 0.38);
    transition: box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(27,
            32,
            39, 0.8);
    background: rgba(27,
            32,
            39,
            0.8);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 232px;
    min-height: 74px;


}

.brand img {
    display: block;
    width: auto;
    height: 50px;
    max-width: 100%;
}

.brand-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
}

.brand-text strong {
    font-size: 1.15rem;
    color: #0d3d5b;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.brand-text em {
    color: #3f9fcb;
    font-style: normal;
    font-size: 0.82rem;
    letter-spacing: 0;
}

.eyebrow {
    color: var(--muted);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.site-nav>a,
.nav-item-head>a,
.nav-item-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.nav-item-trigger {
    gap: 8px;
    border: 0;
    background: transparent;
    padding-right: 2px;
    cursor: pointer;
    appearance: none;
}

.nav-item-trigger::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: transparent;
}

.nav-item-trigger::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms var(--ease-out), color 180ms var(--ease-out);
}

.nav-item {
    position: relative;
}

.nav-item-head {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-item.active>.nav-item-head>a,
.nav-item.active>.nav-item-head>.nav-item-trigger {
    color: #ffffff;
}

.nav-item.active>.nav-item-head>a::after,
.nav-item.active>.nav-item-head>.nav-item-trigger::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--accent);
}

.nav-item-toggle {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.nav-item-toggle::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 180ms var(--ease-out);
}

.nav-item-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 920px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(186, 202, 216, 0.4);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 64px rgba(58, 88, 116, 0.14);
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 220ms;
}

.mega-menu-solutions {
    left: 0;
    width: 222px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(214, 225, 235, 0.96);
    box-shadow: 0 18px 40px rgba(31, 52, 78, 0.14);
    overflow: hidden;
    transform: translateY(10px);
}

.mega-menu-solutions .mega-col {
    position: relative;
}

.mega-menu-solutions .mega-col + .mega-col {
    border-top: 1px solid rgba(223, 231, 239, 0.92);
}

.nav-item-mega.open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-item-mega-solutions.open .mega-menu-solutions {
    transform: translateY(0);
}

.nav-item-mega.open .nav-item-toggle::before {
    transform: rotate(225deg) translateY(1px);
}

.nav-item-mega.open .nav-item-trigger::after {
    transform: rotate(225deg) translateY(-1px);
}

.mega-col h4 {
    margin: 0 0 10px;
    color: #0f5671;
    font-size: 16px;
}

.mega-menu-solutions .mega-col h4 {
    margin: 0;
}

.mega-menu-solutions .mega-col h4 a {
    display: block;
    position: relative;
    padding: 16px 20px 16px 22px;
    color: #193b5a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    background: transparent;
    border: 0;
    transition: color 180ms var(--ease-out), background 180ms var(--ease-out), padding-left 180ms var(--ease-out);
}

.mega-menu-solutions .mega-col h4 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #168fd3 0%, #0a6a9d 100%);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 180ms var(--ease-out);
}

.mega-menu-solutions .mega-col h4 a::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.5;
    transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.mega-menu-solutions .mega-col h4 a:hover {
    color: #0d5f8f;
    background: rgba(233, 244, 251, 0.72);
    padding-left: 26px;
}

.mega-menu-solutions .mega-col h4 a.is-current {
    color: #0d5f8f;
    background: rgba(233, 244, 251, 0.72);
    padding-left: 26px;
}

.mega-menu-solutions .mega-col h4 a:hover::before {
    opacity: 1;
}

.mega-menu-solutions .mega-col h4 a.is-current::before {
    opacity: 1;
}

.mega-menu-solutions .mega-col h4 a:hover::after {
    opacity: 0.9;
    transform: translate(2px, -50%) rotate(45deg);
}

.mega-menu-solutions .mega-col h4 a.is-current::after {
    opacity: 0.9;
}

.mega-col p,
.mega-col span {
    margin: 0 0 8px;
    color: #687a8d;
    font-size: 13px;
    line-height: 1.7;
}

.site-nav>a.active,
.site-nav>a:hover,
.nav-item-head>a:hover,
.nav-item-trigger:hover,
.nav-item-mega.open>.nav-item-head>.nav-item-trigger,
.nav-item-mega.open>.nav-item-head>a {
    color: #ffffff;
}

.site-nav>a.active::after,
.site-nav>a:hover::after,
.nav-item-head>a:hover::after,
.nav-item-trigger:hover::before,
.nav-item-mega.open>.nav-item-head>.nav-item-trigger::before,
.nav-item-mega.open>.nav-item-head>a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--accent);
}

.side-contact {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 40;
    display: grid;
    gap: 10px;
}

.side-contact a {
    display: block;
    min-width: 88px;
    padding: 12px 14px;
    background: rgba(16, 28, 54, 0.88);
    color: #fff;
    font-size: 13px;
    text-align: center;
    border: 1px solid rgba(146, 165, 231, 0.22);
    box-shadow: 0 16px 32px rgba(8, 16, 30, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.side-contact a:hover {
    transform: translateY(-2px);
    background: rgba(23, 43, 82, 0.94);
    border-color: rgba(146, 165, 231, 0.36);
}

.consult-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
}

.consult-modal[hidden] {
    display: none;
}

.consult-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 17, 31, 0.56);
    backdrop-filter: blur(6px);
}

.consult-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    padding: 18px;
    border-radius: 22px;
    background: rgba(233, 241, 251, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 36px 96px rgba(8, 19, 38, 0.28);
    text-align: left;
}

.consult-modal-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 34px;
    align-items: center;
}

.consult-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #5b6e84;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
    box-shadow: 0 10px 22px rgba(18, 38, 66, 0.12);
}

.consult-modal-close:hover {
    transform: rotate(90deg) scale(1.02);
    background: rgba(255, 255, 255, 0.98);
}

.consult-modal-copy {
    padding: 22px 10px 14px 10px;
}

.consult-modal-dialog h2 {
    margin: 0 0 24px;
    color: #101924;
    max-width: 560px;
    font-size: clamp(18px, 1.7vw, 25px);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.consult-modal-dialog p {
    color: #5d7185;
    line-height: 1.75;
}

.consult-modal-note {
    margin: 12px 0 0;
    max-width: 600px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.consult-modal-form {
    margin-top: 6px;
    display: grid;
    gap: 18px;
    text-align: left;
}

.consult-modal-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.consult-modal-form input,
.consult-modal-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(194, 208, 222, 0.8);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    color: #203246;
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.consult-modal-form input:focus,
.consult-modal-form textarea:focus {
    outline: 0;
    border-color: rgba(74, 115, 255, 0.72);
    box-shadow: 0 0 0 4px rgba(74, 115, 255, 0.1);
    transform: translateY(-1px);
}

.consult-modal-form textarea {
    resize: vertical;
    min-height: 136px;
}

.consult-modal-form-foot {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.consult-modal-form button {
    min-height: 52px;
    border: 0;
    border-radius: var(--cta-radius);
    min-width: 240px;
    padding: 0 24px;
    background: var(--cta-bg);
    color: var(--cta-text);
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: var(--cta-shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.consult-modal-form button:hover {
    transform: translateY(-1px);
    background: var(--cta-bg-hover);
    box-shadow: var(--cta-shadow-hover);
}

.consult-modal-form button[disabled] {
    background: #b8c3d2;
    color: #ffffff;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.consult-modal-aside {
    display: grid;
    align-items: center;
    justify-items: center;
    padding-right: 8px;
}

.consult-modal-qr {
    width: 100%;
    max-width: 240px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(10, 26, 48, 0.16);
}

.consult-modal-qr img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
}

@media (max-width: 900px) {
    .consult-modal-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .consult-modal-copy,
    .consult-modal-aside {
        padding: 0;
    }

    .consult-modal-form-grid {
        grid-template-columns: 1fr;
    }

    .consult-modal-form button {
        width: 100%;
    }

    .consult-modal-note {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .consult-modal {
        padding: 14px;
    }

    .consult-modal-dialog {
        padding: 12px;
        border-radius: 24px;
    }

    .consult-modal-copy,
    .consult-modal-aside {
        padding: 0;
    }

    .consult-modal-dialog h2 {
        font-size: 24px;
    }

    .consult-modal-note {
        font-size: 15px;
        white-space: normal;
    }
}

.stitch-case-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.stitch-case-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f4f7fb;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 90;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(196, 211, 255, 0.22);
    border-radius: 50%;
    background: rgba(15, 29, 51, 0.72);
    color: #ffffff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 32px rgba(8, 16, 30, 0.2);
    cursor: pointer;
}

.back-to-top[hidden] {
    display: none;
}

.back-to-top span {
    font-size: 24px;
    line-height: 1;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: var(--cta-radius);
    background: var(--cta-bg);
    color: var(--cta-text);
    font-size: 13px;
    font-weight: 400;
    box-shadow: var(--cta-shadow);
}

.home-banner {
    padding: 0;
}

.banner-surface {
    position: relative;
    overflow: hidden;
    padding: 52px 48px;
    border-radius: 0 0 18px 18px;
    background:
        linear-gradient(180deg, rgba(5, 10, 24, 0.2), rgba(5, 10, 24, 0.2)),
        radial-gradient(circle at 50% 18%, rgba(119, 132, 236, 0.42), rgba(119, 132, 236, 0) 34%),
        linear-gradient(120deg, #0b1323 0%, #14284b 56%, #17386a 100%);
    box-shadow: none;
}

.banner-surface-blur {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(14px);
    pointer-events: none;
}

.banner-surface-blur-left {
    top: -110px;
    left: -70px;
    background: radial-gradient(circle, rgba(120, 135, 236, 0.48), rgba(120, 135, 236, 0));
}

.banner-surface-blur-right {
    right: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(90, 152, 255, 0.38), rgba(90, 152, 255, 0));
}

.banner-floating-mark {
    position: absolute;
    right: 32px;
    top: 18px;
    width: 116px;
    opacity: 0.14;
    animation: floatPulse 6s ease-in-out infinite;
}

.banner-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    min-height: 560px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-carousel {
    position: relative;
    min-height: 360px;
    padding-right: 10px;
}

.banner-slide {
    position: absolute;
    inset: 0 10px 56px 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.banner-copy h1,
.inner-banner h1,
.article-shell h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.8vw, 3.15rem);
    line-height: 1.16;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    font-weight: 400;
}

.inner-banner p,
.article-lead {
    font-size: 17px;
    line-height: 1.9;
}

.banner-copy h1 {
    color: #fff;
}

.banner-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.inner-banner h1 {
    color: #fff;
}

.inner-banner p {
    color: rgba(255, 255, 255, 0.82);
}

.banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.banner-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #98a2ff, #7dcfff);
    box-shadow: 0 0 0 6px rgba(151, 164, 255, 0.16);
}

.banner-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.banner-dots {
    display: flex;
    gap: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.banner-dot {
    width: 30px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(130, 144, 219, 0.32);
    cursor: pointer;
}

.banner-dot.active {
    background: linear-gradient(90deg, #8b93ff, #63b9ff);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 144px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(132, 146, 221, 0.18);
    border-radius: 16px;
    transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(114, 126, 202, 0.16);
}

.button-primary {
    background: var(--cta-bg);
    color: var(--cta-text);
    box-shadow: var(--cta-shadow);
}

.button-secondary {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.banner-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.banner-aside {
    display: grid;
    gap: 16px;
}

.banner-visual {
    min-height: 204px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.banner-visual-mark {
    position: absolute;
    right: -24px;
    bottom: -14px;
    width: 250px;
    opacity: 0.95;
    animation: floatSlow 7s ease-in-out infinite;
}

.banner-visual-top span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.64);
}

.banner-visual-top strong {
    font-size: 24px;
}

.banner-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 28px;
}

.banner-visual-grid div {
    padding: 16px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: none;
}

.banner-panel-item {
    padding: 24px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
    box-shadow: none;
}

.banner-panel-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.banner-panel-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
}

.banner-panel-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.banner-panel-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.banner-panel-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.section,
.article-page {
    padding: 74px 0;
}

.home-data-strip {
    background: transparent;
    border-bottom: 0;
    padding-bottom: 12px;
}

.home-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-data-item {
    padding: 28px 22px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: var(--shadow);
}

.home-data-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--brand-deep);
    font-size: 22px;
}

.home-data-item span {
    color: #6f7aab;
    font-size: 14px;
}

.home-data-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    object-fit: contain;
}

.section-light {
    background: transparent;
}

.section-steel,
.article-page-light {
    background: #f6f8fb;
}

.section-title {
    margin-bottom: 34px;
    text-align: center;
    position: relative;
}

.section-title-left {
    text-align: left;
}

.section-title h2,
.stack-card h2,
.detail-grid h2,
.job-card h2,
.product-card h2,
.news-item h2 {
    margin: 0;
    font-size: 34px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
}

.section-title p {
    margin: 8px 0 0;
    color: #8992bd;
}

.section-title::after {
    content: "";
    display: block;
    width: 74px;
    height: 2px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-title-left::after {
    margin-left: 0;
}

.solution-strip {
    display: flex;
    gap: 16px;
}

.solution-strip-item {
    flex: 1;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(rgba(11, 30, 54, 0.12), rgba(11, 30, 54, 0.82)),
        linear-gradient(145deg, #9eb4ca, #5f7892);
    transition: flex 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.solution-strip-item:hover {
    flex: 1.35;
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.solution-strip-overlay {
    padding: 24px;
    color: #fff;
}

.solution-strip-overlay h3,
.product-feature-head h3,
.news-feature-body h3,
.news-home-item h3,
.product-card h3,
.news-item h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.solution-strip-overlay p,
.product-feature-card p,
.news-feature-body p,
.news-home-item p,
.product-card p,
.news-item p,
.stack-card p,
.detail-grid p,
.article-shell p,
.site-footer p {
    line-height: 1.9;
}

.solution-strip-overlay a {
    display: inline-block;
    margin-top: 10px;
}

.solution-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.solution-rail-item {
    padding: 26px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.16);
    box-shadow: none;
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.solution-rail-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.solution-rail-head span {
    color: var(--accent);
    font-size: 13px;
}

.solution-rail-badge {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(226, 222, 255, 0.8), rgba(225, 242, 255, 0.84));
}

.solution-rail-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.solution-rail-head h3 {
    margin: 8px 0 14px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
    font-size: 24px;
}

.solution-rail-item p {
    color: #65798d;
    line-height: 1.85;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-rail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.solution-rail-tags li {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(238, 242, 255, 0.96);
    color: #61709e;
    font-size: 13px;
}

.solution-rail-item a {
    display: inline-flex;
    margin-top: auto;
    color: var(--accent);
}

.product-feature-grid,
.product-grid,
.job-grid,
.news-stack,
.news-home-list,
.stack-list,
.capability-board,
.platform-grid,
.culture-grid,
.sustainability-grid,
.certificate-wall {
    display: grid;
    gap: 24px;
}

.product-feature-grid,
.product-grid {
    grid-template-columns: repeat(2, 1fr);
}

.home-product-stage {
    display: grid;
    grid-template-columns: 0.85fr 1.3fr 0.85fr;
    gap: 20px;
    align-items: stretch;
}

.home-product-side {
    display: grid;
    gap: 20px;
}

.home-product-mini,
.home-product-main {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.16);
    box-shadow: none;
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.home-product-mini:hover,
.home-product-main:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.home-product-mini {
    padding: 24px;
}

.home-product-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(232, 227, 255, 0.86), rgba(229, 245, 255, 0.92));
}

.home-product-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.home-product-mini span,
.home-product-main-copy span {
    color: var(--accent);
    font-size: 13px;
}

.home-product-mini h3,
.home-product-main-copy h3 {
    margin: 10px 0 12px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
}

.home-product-mini p,
.home-product-main-copy p {
    color: #62788d;
    line-height: 1.85;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-mini a,
.home-product-main-copy a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--accent);
}

.home-product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.home-product-main-visual {
    min-height: 100%;
    position: relative;
    display: grid;
    place-items: center;
    padding: 20px;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0)),
        linear-gradient(145deg, rgba(225, 222, 255, 0.92), rgba(215, 239, 255, 0.96));
}

.home-product-main-visual img {
    width: min(240px, 74%);
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(114, 129, 213, 0.22));
    animation: floatSlow 7s ease-in-out infinite;
}

.home-product-main-copy {
    padding: 30px;
}

.capability-board {
    grid-template-columns: repeat(2, 1fr);
}

.capability-board-item {
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: var(--shadow);
}

.capability-board-item h3 {
    margin-top: 0;
    color: var(--brand-deep);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.about-intro-copy {
    padding: 34px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: var(--shadow);
}

.about-intro-copy p {
    color: #52677f;
    line-height: 1.9;
}

.about-fact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.about-fact-list li {
    padding: 8px 14px;
    border: 1px solid rgba(154, 166, 233, 0.16);
    border-radius: 999px;
    background: rgba(241, 244, 255, 0.86);
    color: #51657b;
}

.about-intro-visual {
    display: grid;
    gap: 16px;
}

.about-video-card {
    min-height: 286px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 10px;
    background:
        linear-gradient(rgba(246, 243, 255, 0.1), rgba(125, 143, 223, 0.34)),
        url("../images/visual-about.svg");
    background-size: cover;
    background-position: center;
    color: #fff;
    box-shadow: var(--shadow);
}

.about-video-badge {
    align-self: flex-start;
    margin-bottom: auto;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    letter-spacing: 0.14em;
    font-size: 12px;
}

.about-video-title {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
}

.about-video-sub {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.about-contact-card {
    padding: 24px;
    border-radius: 10px;
    background: #17386a;
    color: #fff;
    box-shadow: var(--shadow);
}

.about-contact-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
}

.about-contact-card p {
    margin: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.platform-grid {
    grid-template-columns: repeat(3, 1fr);
}

.platform-card {
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: var(--shadow);
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.platform-card:hover,
.culture-card:hover,
.sustainability-card:hover,
.certificate-card:hover,
.office-card:hover,
.product-feature-card:hover,
.product-card:hover,
.news-home-item:hover,
.news-line-item:hover,
.stack-card:hover,
.capability-board-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: #cddceb;
}

.platform-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(232, 227, 255, 0.88), rgba(229, 245, 255, 0.92));
}

.platform-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.platform-card h3,
.sustainability-card h3,
.office-card h3 {
    margin: 0 0 10px;
    color: var(--brand-deep);
}

.platform-card p,
.sustainability-card p,
.office-card p,
.office-card span,
.culture-card strong {
    color: #5f7387;
    line-height: 1.8;
}

.culture-grid {
    grid-template-columns: repeat(4, 1fr);
}

.culture-card {
    padding: 26px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: var(--shadow);
}

.culture-card span {
    display: block;
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.culture-card strong {
    display: block;
    margin-top: 14px;
    font-size: 20px;
}

.sustainability-grid {
    grid-template-columns: repeat(3, 1fr);
}

.sustainability-card {
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: var(--shadow);
}

.support-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(232, 227, 255, 0.88), rgba(229, 245, 255, 0.92));
}

.support-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.certificate-wall {
    grid-template-columns: repeat(3, 1fr);
}

.certificate-card {
    min-height: 170px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: var(--shadow);
}

.certificate-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(232, 227, 255, 0.88), rgba(229, 245, 255, 0.92));
    color: var(--accent);
    font-size: 26px;
    line-height: 1;
}

.product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    justify-content: center;
}

.product-tab {
    min-width: 148px;
    padding: 12px 18px;
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 4px;
    background: #fff;
    color: #4c6077;
    cursor: pointer;
    transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.product-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(20, 46, 80, 0.08);
}

.product-tab.active {
    border-color: var(--accent);
    color: var(--accent);
    background: linear-gradient(135deg, rgba(230, 224, 255, 0.9), rgba(225, 242, 255, 0.94));
}

.product-panel {
    display: none;
    animation: panelFade 320ms var(--ease-out);
}

.product-panel.active {
    display: block;
}

.product-list {
    display: grid;
    gap: 24px;
}

.product-row {
    display: grid;
    grid-template-columns: 0.3fr 0.5fr 0.2fr;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.16);
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.product-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.product-row-media {
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 22px;
    background:
        radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0)),
        linear-gradient(145deg, rgba(226, 223, 255, 0.92), rgba(215, 240, 255, 0.94));
    position: relative;
}

.product-row-art {
    width: min(170px, 72%);
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(116, 127, 193, 0.2));
}

.product-row-badge {
    display: inline-flex;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-deep);
    font-size: 13px;
    border-radius: 999px;
    position: absolute;
    left: 18px;
    bottom: 18px;
}

.product-row-copy {
    padding: 28px;
}

.product-row-copy h2 {
    margin-bottom: 14px;
}

.product-row-copy p {
    color: #63778b;
    line-height: 1.9;
}

.product-row-action {
    display: grid;
    place-items: center;
    padding: 24px;
    border-left: 1px solid rgba(154, 166, 233, 0.14);
    background: linear-gradient(180deg, rgba(251, 253, 255, 0.96), rgba(244, 247, 255, 0.96));
}

.product-row-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 42px;
    border: 1px solid var(--line);
    color: var(--accent);
}

.product-feature-card,
.product-card,
.job-card,
.news-item,
.detail-panel,
.stack-card,
.article-shell,
.news-feature,
.news-home-item,
.detail-grid>div {
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 10px;
    box-shadow: none;
}

.product-feature-card,
.product-card,
.job-card,
.news-item,
.detail-panel,
.stack-card,
.news-home-item {
    padding: 24px;
}

.product-feature-head span,
.product-card span,
.news-date,
.news-home-item span,
.stack-index {
    color: var(--accent);
    font-size: 14px;
}

.mini-tags,
.tag-list,
.plain-list,
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.mini-tags li,
.tag-list li,
.plain-list li,
.job-meta span {
    padding: 7px 12px;
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 999px;
    background: rgba(241, 244, 255, 0.86);
    color: #4d6178;
    font-size: 14px;
}

.product-card a,
.product-feature-card a,
.news-item a,
.job-card a,
.news-home-item a,
.news-feature a {
    display: inline-flex;
    margin-top: 20px;
    color: var(--accent);
}

.stack-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    padding: 28px;
    border-bottom: 1px solid rgba(154, 166, 233, 0.14);
}

.product-card-full {
    min-height: 280px;
    padding: 28px;
}

.job-grid {
    grid-template-columns: repeat(3, 1fr);
}

.detail-grid,
.news-home-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
}

.news-category,
.news-line-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(238, 242, 255, 0.92);
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.news-list-shell {
    padding-top: 8px;
}

.news-list-rows {
    background: #fff;
    border-top: 1px solid rgba(154, 166, 233, 0.14);
}

.news-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(154, 166, 233, 0.14);
}

.news-row-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    background: #f5f8fc;
}

.news-row-media img {
    max-width: 78%;
    max-height: 130px;
    object-fit: contain;
}

.news-row-copy {
    display: grid;
    gap: 10px;
}

.news-row-tag {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    border: 1px solid rgba(154, 166, 233, 0.18);
    color: var(--accent);
    font-size: 12px;
}

.news-row-copy h2 {
    margin: 0;
    font-size: 24px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
}

.news-row-copy p {
    margin: 0;
    color: #647285;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-row-meta {
    color: #8a96a6;
    font-size: 14px;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.news-page-btn {
    min-width: 34px;
    height: 34px;
    border: 1px solid rgba(154, 166, 233, 0.18);
    background: #fff;
    color: #4f5f7a;
    cursor: pointer;
}

.news-page-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.news-page-btn.disabled {
    color: #b3bcc8;
    cursor: default;
}

.detail-grid>div {
    padding: 34px;
}

.section-tight-top {
    padding-top: 0;
}

.detail-hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.metric-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.metric-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 30px;
    font-family: var(--font-heading);
}

.metric-card span {
    color: #607487;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.timeline-card {
    position: relative;
    padding: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.timeline-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 28px;
    font-family: var(--font-heading);
}

.timeline-card span {
    color: #5d7286;
    line-height: 1.8;
}

.mini-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mini-related-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.mini-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.mini-related-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 12px;
}

.mini-related-card h3 {
    margin: 0 0 12px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
    font-size: 22px;
}

.mini-related-card p {
    color: #65798d;
    line-height: 1.8;
}

.mini-related-card a {
    display: inline-flex;
    margin-top: auto;
    color: var(--accent);
}

.detail-bottom-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
}

.news-side-list {
    display: grid;
    gap: 16px;
}

.news-side-item {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.news-side-item span {
    color: #8a9aab;
    font-size: 13px;
}

.news-side-item h3 {
    margin: 10px 0 0;
    font-size: 20px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
}

.detail-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(154, 166, 233, 0.14);
}

.detail-block h3,
.detail-panel h3,
.qualification-box h4,
.about-mini-card h3 {
    margin-top: 0;
    color: var(--brand-deep);
}

.detail-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-side-note {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(154, 166, 233, 0.14);
}

.detail-side-note strong {
    display: block;
    margin-bottom: 10px;
    color: var(--brand-deep);
}

.detail-scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.detail-scene-card {
    padding: 20px;
    background: rgba(244, 247, 255, 0.92);
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 20px;
}

.detail-scene-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--brand-deep);
}

.detail-scene-card p {
    margin: 0;
    color: #63788c;
}

.news-feature {
    overflow: hidden;
}

.news-feature-media {
    height: 290px;
    background:
        linear-gradient(rgba(245, 244, 255, 0.1), rgba(111, 130, 230, 0.22)),
        url("../images/visual-news.svg");
    background-size: cover;
    background-position: center;
}

.news-feature-body {
    padding: 24px;
}

.news-home-board {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
}

.news-home-feature {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.news-home-feature-media {
    height: 360px;
}

.news-home-feature-copy {
    padding: 26px;
}

.news-home-feature-copy span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 12px;
}

.news-home-feature-copy h3 {
    margin: 0 0 12px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
    font-size: 28px;
}

.news-home-feature-copy p {
    color: #65798d;
    line-height: 1.85;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-home-timeline {
    display: grid;
    gap: 18px;
}

.news-home-timeline-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.news-home-timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.news-home-timeline-date {
    text-align: center;
    border-right: 1px solid var(--line);
    padding-right: 14px;
}

.news-home-timeline-date strong {
    display: block;
    font-size: 30px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
    line-height: 1;
}

.news-home-timeline-date span {
    display: block;
    margin-top: 8px;
    color: #8a9aab;
    font-size: 12px;
}

.news-home-timeline-copy em {
    color: #7b8ab6;
    font-size: 12px;
    font-style: normal;
}

.news-home-timeline-copy h3 {
    margin: 10px 0 10px;
    color: var(--brand-deep);
    font-family: var(--font-heading);
}

.news-home-timeline-copy p {
    margin: 0;
    color: #64798d;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-shell {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: 36px;
}

.article-bottom-nav {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-bottom-nav a {
    color: var(--accent);
}

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 14px 0 20px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(154, 166, 233, 0.14);
    color: #7b8da1;
    font-size: 14px;
}

.article-quote-box {
    margin-top: 28px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(243, 240, 255, 0.9), rgba(236, 245, 255, 0.92));
    border-left: 4px solid var(--accent);
    border-radius: 0 20px 20px 0;
}

.article-quote-box strong {
    display: block;
    margin-bottom: 12px;
    color: var(--brand-deep);
}

.article-quote-box p {
    margin: 0;
    color: #62778b;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-mini-card {
    padding: 20px;
    background: #f7fafd;
    border: 1px solid var(--line);
}

.about-mini-card p,
.about-mini-card span {
    display: block;
    margin: 0;
    color: #6f8095;
}

.about-mini-card span {
    margin-top: 10px;
}

.qualification-box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.qualification-list {
    margin: 0;
    padding-left: 18px;
    color: #566b82;
    line-height: 1.9;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.office-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.office-card h3 {
    margin-top: 0;
    color: var(--brand-deep);
}

.office-card p,
.office-card span {
    color: #6f8095;
    line-height: 1.8;
}

.contact-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.contact-banner-copy {
    display: grid;
    gap: 10px;
}

.contact-banner-copy h2 {
    margin: 0;
    color: var(--brand-deep);
}

.contact-banner-copy p {
    margin: 0;
    color: #5f7387;
}

.contact-map {
    position: relative;
    width: min(420px, 100%);
    min-height: 180px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.38)),
        url("../images/visual-map.svg");
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 24px;
}

.contact-map-pin {
    position: absolute;
    top: 42%;
    left: 53%;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(26, 116, 216, 0.12);
}

.contact-map-label {
    position: absolute;
    left: 58%;
    top: 34%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    color: var(--brand-deep);
    font-size: 13px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: #7d86b5;
    font-size: 11px;
    letter-spacing: 0.14em;
}

.section-title-compact,
.section-title-contrast {
    margin-bottom: 42px;
}

.section-title-compact h2,
.section-title-contrast h2 {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.section-title-compact::after {
    margin-top: 18px;
}

.section-title-contrast h2,
.section-title-contrast p {
    color: #fff;
}

.section-title-contrast .section-kicker {
    color: rgba(196, 211, 255, 0.76);
}

.section-title-contrast::after {
    background: linear-gradient(90deg, transparent, #74afff, transparent);
}

.section-night {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(109, 120, 229, 0.18), rgba(109, 120, 229, 0) 28%),
        linear-gradient(180deg, #101828 0%, #111f3a 100%);
}

.section-night-soft {
    background:
        radial-gradient(circle at 20% 0%, rgba(98, 139, 255, 0.16), rgba(98, 139, 255, 0) 22%),
        linear-gradient(180deg, #111f3a 0%, #16284a 100%);
}

.section-night::before,
.section-night-soft::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(133, 153, 224, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(133, 153, 224, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 88%);
}

.banner-surface {
    padding: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(9, 17, 37, 0.22), rgba(9, 17, 37, 0.12)),
        radial-gradient(circle at 18% 18%, rgba(143, 156, 255, 0.22), rgba(143, 156, 255, 0) 28%),
        radial-gradient(circle at 84% 22%, rgba(98, 170, 255, 0.22), rgba(98, 170, 255, 0) 26%),
        linear-gradient(135deg, #0d1630 0%, #12244a 54%, #18386a 100%);
}

.banner-grid-mask {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(189, 204, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(189, 204, 255, 0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 92%);
}

.banner-shell {
    position: relative;
    z-index: 1;
}

.banner-carousel {
    min-height: 640px;
    padding: 0;
}

.banner-slide {
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 44px;
    align-items: center;
    padding: 102px 0 116px;
    transform: translateY(10px);
}

.banner-copy {
    max-width: 660px;
}

.banner-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.banner-copy p {
    margin: 0;
    max-width: 34em;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.9;
}

.banner-note {
    margin-top: 24px;
    max-width: 560px;
    padding: 18px 20px 18px 22px;
    border-left: 1px solid rgba(140, 183, 255, 0.48);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.banner-points,
.case-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.banner-points li {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(196, 211, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.banner-actions {
    margin-top: 32px;
}

.button {
    min-width: 148px;
    min-height: 48px;
    border-radius: 999px;
    font-size: 15px;
}

.button-primary {
    background: var(--cta-bg);
    box-shadow: var(--cta-shadow);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 211, 255, 0.18);
    backdrop-filter: blur(14px);
}

.banner-stage {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-stage-frame {
    position: relative;
    width: min(460px, 100%);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(199, 215, 255, 0.12);
    background:
        radial-gradient(circle at 50% 46%, rgba(173, 191, 255, 0.26), rgba(173, 191, 255, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: 0 26px 64px rgba(6, 14, 32, 0.3);
}

.banner-stage-frame::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 26px;
    border: 1px solid rgba(199, 215, 255, 0.12);
}

.banner-stage-glow {
    position: absolute;
    inset: 18% 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 187, 255, 0.26), rgba(112, 187, 255, 0));
    filter: blur(16px);
}

.banner-stage-art {
    position: relative;
    z-index: 1;
    width: min(74%, 330px);
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
    animation: floatSlow 7s ease-in-out infinite;
}

.banner-stage-card {
    position: absolute;
    min-width: 186px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(10, 20, 42, 0.74);
    border: 1px solid rgba(199, 215, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(5, 12, 26, 0.26);
}

.banner-stage-card-1 {
    top: 10%;
    left: -2%;
}

.banner-stage-card-2 {
    right: -3%;
    bottom: 9%;
}

.banner-stage-card span {
    display: block;
    color: rgba(196, 211, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.banner-stage-card strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.banner-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banner-arrow {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 215, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.banner-arrow:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(199, 215, 255, 0.28);
}

.banner-dots {
    position: static;
    flex: 1;
    justify-content: center;
}

.banner-dot {
    width: 42px;
    height: 3px;
    background: rgba(168, 186, 238, 0.34);
}

.banner-dot.active {
    background: linear-gradient(90deg, #8c96ff, #76ceff);
}

.home-data-strip {
    padding: 26px 0 10px;
}

.home-data-grid {
    gap: 20px;
}

.home-data-item {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px 26px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: 0 16px 34px rgba(114, 126, 202, 0.08);
    text-align: left;
}

.home-data-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(113, 125, 255, 0), rgba(113, 125, 255, 0.7), rgba(87, 187, 255, 0));
}

.home-data-icon {
    width: 48px;
    height: 48px;
    margin: 0;
}

.home-data-copy strong,
.home-data-item strong {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 400;
}

.home-data-copy span,
.home-data-item span {
    display: block;
    color: #6c739b;
    font-size: 14px;
    line-height: 1.7;
}

.solution-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.solution-rail-item {
    padding: 28px;
    border-radius: 18px;
}

.solution-rail-badge {
    width: 62px;
    height: 62px;
    border-radius: 20px;
}

.solution-rail-head h3 {
    margin: 10px 0 14px;
    font-size: 30px;
    font-weight: 400;
}

.solution-rail-item p {
    margin: 0;
}

.case-showcase,
.process-showcase {
    position: relative;
    z-index: 1;
}

.case-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.case-menu {
    display: grid;
    gap: 12px;
}

.case-menu-item {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(167, 187, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.case-menu-item.active,
.case-menu-item:hover {
    transform: translateX(4px);
    border-color: rgba(135, 164, 255, 0.24);
    background: linear-gradient(135deg, rgba(120, 131, 255, 0.16), rgba(93, 183, 255, 0.08));
}

.case-menu-item span {
    display: block;
    color: rgba(195, 209, 255, 0.54);
    font-size: 12px;
    letter-spacing: 0.18em;
}

.case-menu-item strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(167, 187, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(135, 164, 255, 0.24);
    box-shadow: 0 22px 46px rgba(3, 10, 24, 0.24);
}

.case-card-media {
    position: relative;
    min-height: 156px;
    display: grid;
    place-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(167, 187, 255, 0.08);
}

.case-card-media::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 18px;
    border: 1px solid rgba(207, 218, 255, 0.14);
}

.case-card-media img {
    position: relative;
    z-index: 1;
    width: min(126px, 58%);
    height: 126px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
}

.case-card-body {
    padding: 22px 22px 24px;
}

.case-card-body>span {
    display: inline-flex;
    color: #8fb5ff;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.case-card-body h3 {
    margin: 12px 0 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
}

.case-card-body p {
    margin: 0;
    color: rgba(228, 235, 255, 0.74);
    line-height: 1.8;
}

.case-card-tags li {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(228, 235, 255, 0.82);
    font-size: 12px;
}

.case-tone-a .case-card-media {
    background: linear-gradient(135deg, rgba(95, 110, 255, 0.3), rgba(59, 182, 255, 0.16));
}

.case-tone-b .case-card-media {
    background: linear-gradient(135deg, rgba(79, 150, 255, 0.28), rgba(126, 198, 255, 0.14));
}

.case-tone-c .case-card-media {
    background: linear-gradient(135deg, rgba(101, 142, 255, 0.22), rgba(81, 108, 204, 0.14));
}

.case-tone-d .case-card-media {
    background: linear-gradient(135deg, rgba(89, 141, 255, 0.24), rgba(52, 205, 255, 0.14));
}

.case-tone-e .case-card-media {
    background: linear-gradient(135deg, rgba(132, 123, 255, 0.24), rgba(89, 157, 255, 0.12));
}

.case-tone-f .case-card-media {
    background: linear-gradient(135deg, rgba(77, 183, 255, 0.22), rgba(122, 135, 255, 0.16));
}

.process-line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 24px;
}

.process-line span {
    position: relative;
    display: block;
    height: 1px;
    background: rgba(170, 188, 255, 0.18);
}

.process-line span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #8d97ff, #74c8ff);
    box-shadow: 0 0 0 6px rgba(119, 139, 255, 0.12);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.process-card {
    padding: 22px 18px 24px;
    border-radius: 20px;
    border: 1px solid rgba(167, 187, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(135, 164, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.process-index {
    display: inline-flex;
    color: rgba(195, 209, 255, 0.54);
    font-size: 12px;
    letter-spacing: 0.18em;
}

.process-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 18px 0 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.process-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.process-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 19px;
    font-weight: 400;
}

.process-card p {
    margin: 0;
    color: rgba(228, 235, 255, 0.72);
    font-size: 14px;
    line-height: 1.78;
}

.news-home-board {
    align-items: stretch;
    gap: 22px;
}

.news-home-feature {
    border-radius: 20px;
    box-shadow: none;
}

.news-home-feature-media {
    display: grid;
    place-items: center;
    height: 320px;
    background:
        radial-gradient(circle at 50% 40%, rgba(120, 145, 255, 0.16), rgba(120, 145, 255, 0) 40%),
        linear-gradient(135deg, #eef0ff, #edf7ff);
}

.news-home-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 64px;
}

.news-home-feature-copy {
    padding: 24px 26px 28px;
}

.news-home-feature-copy h3 {
    font-size: 24px;
    font-weight: 400;
}

.news-home-timeline {
    gap: 16px;
}

.news-home-timeline-item {
    border-radius: 18px;
    box-shadow: none;
}

.news-home-timeline-copy h3 {
    font-size: 19px;
    font-weight: 400;
}

[data-reveal] {
    --animate-duration: 1s;
    --animate-delay: 0s;
    --animate-repeat: 1;
    opacity: 1;
    will-change: opacity, transform;
}

[data-reveal].reveal-pending {
    opacity: 0;
    transform: translate3d(0, -42px, 0);
}

[data-reveal="left"] {
    transform: none;
}

[data-reveal="right"] {
    transform: none;
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
    transform: none;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@keyframes fadeInDownSoft {
    from {
        opacity: 0;
        transform: translate3d(0, -42px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

[data-reveal].is-visible.reveal-running {
    animation-name: fadeInDownSoft;
    animation-duration: 1s;
    animation-delay: var(--reveal-delay, 0ms);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
}

@keyframes panelFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    [data-reveal].is-visible.reveal-running {
        animation-duration: 2s;
    }
}

.inner-banner {
    padding: 68px 0;
    background:
        linear-gradient(180deg, rgba(5, 10, 24, 0.18), rgba(5, 10, 24, 0.18)),
        radial-gradient(circle at 50% 18%, rgba(107, 123, 241, 0.28), rgba(107, 123, 241, 0) 34%),
        linear-gradient(120deg, #0b1323 0%, #14284b 56%, #17386a 100%);
}

.inner-banner-content {
    text-align: center;
}

.site-footer {
    padding-top: 28px;
    background: #2b2d31;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
    gap: 24px;
    padding: 32px 0;
}

.footer-grid h3,
.footer-grid h4 {
    margin-top: 0;
    color: #fff;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-badge-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.footer-badge-list img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    white-space: normal;
}

.footer-contact-line img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.footer-qr-box {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-deep);
    font-weight: 400;
}

.footer-qr-box img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.detail-intro-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(232, 227, 255, 0.88), rgba(229, 245, 255, 0.92));
}

.detail-intro-mark img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.detail-intro-mark span {
    color: var(--brand-deep);
    font-size: 14px;
    font-weight: 400;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.22;
    }

    50% {
        transform: translateY(-10px) scale(1.04);
        opacity: 0.3;
    }
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 28px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {

    .solution-strip,
    .product-feature-grid,
    .product-grid,
    .job-grid,
    .detail-grid,
    .news-home-layout,
    .news-page-layout,
    .stack-card,
    .footer-grid,
    .banner-inner,
    .home-data-grid,
    .about-card-grid,
    .detail-columns,
    .detail-scene-grid,
    .capability-board,
    .about-intro-grid,
    .platform-grid,
    .culture-grid,
    .sustainability-grid,
    .certificate-wall,
    .office-grid,
    .detail-hero-metrics,
    .timeline-grid,
    .mini-related-grid,
    .news-archive-grid,
    .detail-bottom-grid,
    .product-row,
    .news-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .nav-row {
        min-height: 84px;
        gap: 10px;
    }

    .brand {
        min-width: 0;
        min-height: 56px;
        flex: 1 1 auto;
        justify-content: flex-start;
    }

    .brand img {
        height: 38px;
    }

    .nav-tools {
        gap: 10px;
        flex: 0 0 auto;
    }

    .header-cta {
        min-height: 38px;
        padding: 0 14px;
        border-radius: 11px;
        font-size: 12px;
        white-space: nowrap;
    }

    .menu-toggle {
        display: flex;
    }

    .banner-surface {
        padding: 22px 18px;
        border-radius: 0 0 14px 14px;
    }

    .banner-floating-mark {
        width: 78px;
        right: 16px;
        top: 14px;
    }

    .banner-visual-mark {
        width: 180px;
        right: -10px;
        bottom: -4px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        box-shadow: 0 20px 42px rgba(15, 27, 44, 0.18);
    }

    .site-nav>a,
    .nav-item-head>a,
    .nav-item-trigger {
        color: #223449;
    }

    .nav-item.active>.nav-item-head>a,
    .nav-item.active>.nav-item-head>.nav-item-trigger,
    .site-nav>a.active,
    .site-nav>a:hover,
    .nav-item-head>a:hover,
    .nav-item-trigger:hover,
    .nav-item-mega.open>.nav-item-head>.nav-item-trigger,
    .nav-item-mega.open>.nav-item-head>a {
        color: #102a43;
    }

    .nav-item-toggle {
        color: #42556b;
    }

    .nav-item-toggle:hover {
        background: rgba(225, 232, 241, 0.82);
        color: #102a43;
    }

    .site-nav.open {
        display: flex;
    }

    .mega-menu {
        position: static;
        display: none;
        width: auto;
        transform: none;
        grid-template-columns: 1fr;
        margin-top: 12px;
        padding: 16px;
        box-shadow: none;
    }

    .nav-item-mega:hover .mega-menu {
        display: none;
    }

    .site-nav>a,
    .nav-item-head,
    .nav-item-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .nav-item-head {
        align-items: center;
    }

    .nav-item-trigger {
        justify-content: flex-start;
        text-align: left;
        padding-right: 18px;
    }

    .nav-item-trigger::after {
        margin-left: auto;
        margin-top: 0;
    }

    .mega-menu-solutions {
        width: 100%;
        padding: 8px 0;
        border-radius: 14px;
        background: rgba(243, 248, 252, 0.94);
        border: 1px solid rgba(220, 229, 237, 0.92);
    }

    .mega-menu-solutions .mega-col h4 a {
        padding: 14px 18px;
        font-size: 14px;
    }

    .site-nav.open .nav-item-mega.open .mega-menu {
        display: grid;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .banner-actions,
    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-panel,
    .solution-strip {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .contact-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar {
        display: none;
    }

    .container {
        width: min(1440px, calc(100% - 28px));
    }

    .container-fluid {
        width: auto;
        margin: 0 14px;
    }

    .product-row {
        grid-template-columns: 1fr;
    }

    .news-row {
        gap: 16px;
        padding: 22px 0;
    }

    .news-row-media {
        min-height: 140px;
    }

    .news-row-copy h2 {
        font-size: 22px;
    }

    .product-row-action {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .side-contact {
        display: none;
    }
}

@media (max-width: 1240px) {
    .banner-slide {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
        gap: 30px;
    }

    .solution-rail,
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .case-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }
}

@media (max-width: 980px) {
    .banner-carousel {
        min-height: 760px;
    }

    .banner-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 84px 0 118px;
    }

    .banner-copy {
        max-width: none;
    }

    .banner-stage {
        min-height: 320px;
    }

    .banner-stage-card-1 {
        top: 8%;
        left: 4%;
    }

    .banner-stage-card-2 {
        right: 4%;
        bottom: 6%;
    }

    .home-data-grid,
    .news-home-board,
    .case-layout {
        grid-template-columns: 1fr;
    }

    .solution-rail,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(1440px, calc(100% - 28px));
    }

    .container-fluid {
        margin: 0 14px;
    }

    .home-banner {
        padding-bottom: 18px;
    }

    .banner-surface {
        border-radius: 0;
    }

    .banner-carousel {
        min-height: 700px;
    }

    .banner-slide {
        padding: 74px 0 110px;
    }

    .banner-copy h1 {
        font-size: clamp(2.4rem, 12vw, 3.4rem);
    }

    .banner-copy p,
    .banner-note {
        font-size: 15px;
    }

    .banner-points {
        gap: 8px;
    }

    .banner-stage-frame {
        width: min(100%, 320px);
        border-radius: 26px;
    }

    .banner-stage-card {
        min-width: 0;
        width: 160px;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .banner-stage-card strong {
        font-size: 15px;
    }

    .banner-controls {
        bottom: 28px;
        gap: 12px;
    }

    .banner-arrow {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .banner-dot {
        width: 28px;
    }

    .home-data-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 20px;
    }

    .solution-rail,
    .case-grid,
    .process-grid,
    .case-menu {
        grid-template-columns: 1fr;
    }

    .process-line {
        display: none;
    }

    .news-home-feature-media {
        height: 240px;
    }

    .news-home-feature-media img {
        padding: 42px;
    }

    .news-home-timeline-item {
        grid-template-columns: 72px 1fr;
        padding: 18px;
    }

    .news-home-timeline-date strong {
        font-size: 24px;
    }
}

.button-outline {
    color: var(--brand-deep);
    background: #fff;
    border-color: rgba(120, 136, 210, 0.2);
    box-shadow: 0 12px 24px rgba(106, 118, 194, 0.08);
}

.button-outline:hover {
    background: linear-gradient(135deg, rgba(238, 241, 255, 0.92), rgba(233, 245, 255, 0.96));
}

.inner-banner-page {
    padding: 72px 0 84px;
}

.inner-banner-page .inner-banner-content {
    display: grid;
    justify-items: center;
    text-align: center;
}

.inner-banner-kicker {
    color: rgba(196, 211, 255, 0.7);
}

.inner-banner-page .inner-banner-content p {
    max-width: 760px;
}

.inner-banner-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.inner-banner-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(196, 211, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(235, 241, 255, 0.84);
    font-size: 13px;
}

.page-intro-board,
.process-page-layout,
.news-page-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
}

.page-intro-board {
    margin-bottom: 32px;
}

.page-intro-copy,
.process-lead-card,
.process-side-card,
.process-contact-card,
.news-mini-board,
.detail-content-card {
    padding: 30px 32px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(114, 126, 202, 0.08);
}

.page-intro-copy h2,
.process-lead-card h2 {
    margin: 0 0 14px;
    color: var(--brand-deep);
    font-size: clamp(26px, 2.5vw, 34px);
    line-height: 1.24;
    font-weight: 400;
}

.page-intro-copy p,
.process-lead-card p {
    margin: 0;
    color: #62758c;
    line-height: 1.9;
}

.page-intro-copy p+p,
.process-lead-card p+p {
    margin-top: 12px;
}

.page-intro-stats,
.process-side-stack {
    display: grid;
    gap: 18px;
}

.page-stat-card {
    padding: 24px 26px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(236, 239, 255, 0.82), rgba(246, 250, 255, 0.96));
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: 0 18px 34px rgba(106, 120, 196, 0.08);
}

.page-stat-card strong {
    display: block;
    color: var(--brand-deep);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
}

.page-stat-card span {
    display: block;
    margin-top: 10px;
    color: #6d7e94;
    line-height: 1.7;
}

.service-card-grid,
.product-catalog-grid,
.scenario-grid-pro,
.support-card-grid,
.news-related-grid {
    display: grid;
    gap: 20px;
}

.service-card-grid {
    grid-template-columns: repeat(2, 1fr);
}

.service-card-pro,
.product-catalog-card,
.scenario-card-pro,
.support-card-pro,
.news-related-card {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(108, 120, 196, 0.08);
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.service-card-pro,
.scenario-card-pro,
.support-card-pro,
.mini-related-card {
    display: flex;
    flex-direction: column;
}

.service-card-pro:hover,
.product-catalog-card:hover,
.scenario-card-pro:hover,
.support-card-pro:hover,
.news-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(99, 114, 191, 0.14);
    border-color: rgba(126, 142, 222, 0.24);
}

.service-card-top,
.scenario-index {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.14em;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card-mark,
.support-card-icon,
.process-flow-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(232, 227, 255, 0.88), rgba(229, 245, 255, 0.92));
}

.service-card-mark img,
.support-card-icon img,
.process-flow-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.service-card-pro h2,
.scenario-card-pro h2,
.news-mini-board h3,
.news-related-copy h3 {
    margin: 18px 0 12px;
    color: var(--brand-deep);
    font-size: 24px;
    line-height: 1.28;
    font-weight: 400;
}

.service-card-tagline,
.service-card-summary,
.scenario-card-pro p,
.support-card-pro p {
    margin: 0;
    color: #64768d;
    line-height: 1.85;
}

.service-card-summary {
    margin-top: 10px;
}

.service-card-block {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(154, 166, 233, 0.14);
}

.service-card-block strong,
.detail-content-card h3,
.delivery-note-card span,
.support-card-pro h3,
.process-side-card strong,
.process-contact-card strong,
.news-spotlight-copy h2,
.article-head-copy h1 {
    color: var(--brand-deep);
}

.service-card-block strong,
.delivery-note-card span,
.process-side-card span,
.process-flow-index,
.news-spotlight-copy span,
.news-related-copy span {
    display: inline-flex;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.service-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.service-chip-list span,
.news-mini-list a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(241, 244, 255, 0.88);
    color: #5f728a;
    font-size: 13px;
}

.service-card-pro .tag-list,
.product-catalog-card .tag-list,
.scenario-card-pro .job-meta {
    margin-top: 20px;
    margin-bottom: 22px;
}

.service-card-pro .button-outline,
.product-catalog-body .button-outline,
.news-spotlight .button-outline {
    margin-top: auto;
    align-self: flex-start;
}

.product-tabs-refined {
    justify-content: flex-start;
    padding: 12px;
    margin-bottom: 28px;
    border-radius: 24px;
    background: rgba(245, 247, 255, 0.92);
    border: 1px solid rgba(154, 166, 233, 0.14);
}

.product-tab {
    min-width: 132px;
    border-radius: 999px;
}

.product-catalog-grid,
.support-card-grid {
    grid-template-columns: repeat(2, 1fr);
}

.product-catalog-card,
.news-related-card {
    padding: 0;
    overflow: hidden;
}

.product-catalog-card {
    display: flex;
    flex-direction: column;
}

.product-catalog-media {
    position: relative;
    min-height: 240px;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0)),
        linear-gradient(145deg, rgba(226, 223, 255, 0.92), rgba(215, 240, 255, 0.94));
}

.product-catalog-art {
    width: min(190px, 72%);
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(116, 127, 193, 0.22));
}

.product-catalog-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-catalog-body h2 {
    margin: 0 0 12px;
    color: var(--brand-deep);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
}

.product-catalog-body p,
.product-fit-note,
.detail-hero-summary,
.detail-panel p,
.news-mini-board p,
.news-related-copy p,
.article-body-copy p {
    color: #64768d;
    line-height: 1.85;
}

.product-fit-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(154, 166, 233, 0.14);
}

.process-page-layout {
    align-items: start;
}

.process-lead-card {
    min-height: 100%;
}

.process-side-card {
    background: linear-gradient(145deg, rgba(236, 240, 255, 0.9), rgba(245, 249, 255, 0.98));
}

.process-side-card span,
.process-contact-card strong {
    color: var(--accent);
}

.process-side-card strong {
    display: block;
    margin-top: 12px;
    font-size: 24px;
    line-height: 1.35;
}

.process-side-card p,
.process-contact-card p {
    margin: 12px 0 0;
    color: #607288;
    line-height: 1.8;
}

.process-contact-card {
    background: linear-gradient(135deg, #1f3f76, #173261);
}

.process-contact-card strong,
.process-contact-card p {
    color: rgba(255, 255, 255, 0.92);
}

.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-flow-card {
    padding: 24px 22px;
    border-radius: 22px;
    border: 1px solid rgba(167, 187, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.process-flow-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(167, 187, 255, 0.2);
}

.process-flow-index {
    color: rgba(196, 211, 255, 0.58);
}

.process-flow-icon {
    margin: 18px 0 18px;
    background: rgba(255, 255, 255, 0.08);
}

.process-flow-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.process-flow-card p {
    margin: 0;
    color: rgba(229, 236, 255, 0.72);
    line-height: 1.8;
}

.dual-note-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.delivery-note-grid {
    display: grid;
    gap: 18px;
}

.delivery-note-card {
    padding: 24px 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    box-shadow: 0 18px 36px rgba(108, 120, 196, 0.08);
}

.delivery-note-card span {
    color: var(--accent);
}

.delivery-note-card strong {
    display: block;
    margin-top: 12px;
    color: var(--brand-deep);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
}

.support-card-pro h3 {
    margin: 18px 0 10px;
    font-size: 20px;
    font-weight: 400;
}

.contact-banner-refined {
    border-radius: 26px;
    box-shadow: 0 18px 36px rgba(112, 124, 201, 0.08);
}

.scenario-grid-pro {
    grid-template-columns: repeat(3, 1fr);
}

.scenario-index {
    display: inline-flex;
    margin-bottom: 18px;
}

.scenario-card-pro .text-link {
    display: inline-flex;
    margin-top: auto;
}

.text-link {
    color: var(--accent);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 16%, rgba(122, 138, 255, 0.24), rgba(122, 138, 255, 0) 24%),
        radial-gradient(circle at 82% 20%, rgba(104, 191, 255, 0.2), rgba(104, 191, 255, 0) 24%),
        linear-gradient(135deg, #0f1831 0%, #122449 54%, #173668 100%);
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(189, 204, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(189, 204, 255, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 92%);
}

.detail-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 44px;
    align-items: center;
    padding: 84px 0 88px;
}

.detail-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.3rem, 4.8vw, 3.6rem);
    line-height: 1.12;
    font-weight: 400;
}

.detail-hero-tagline {
    margin: 18px 0 0;
    color: rgba(206, 221, 255, 0.92);
    font-size: 18px;
    line-height: 1.7;
}

.detail-hero-summary {
    margin: 18px 0 0;
    max-width: 38em;
    color: rgba(221, 232, 255, 0.72);
}

.detail-hero-points {
    margin-top: 28px;
}

.detail-hero-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-hero-visual-frame {
    position: relative;
    width: min(450px, 100%);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(197, 214, 255, 0.12);
    background:
        radial-gradient(circle at 50% 46%, rgba(173, 191, 255, 0.26), rgba(173, 191, 255, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: 0 28px 60px rgba(6, 14, 32, 0.28);
}

.detail-hero-visual-frame::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 24px;
    border: 1px solid rgba(199, 215, 255, 0.12);
}

.detail-hero-visual-frame img {
    position: relative;
    z-index: 1;
    width: min(76%, 320px);
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.26));
}

.detail-hero-floating {
    position: absolute;
    min-width: 170px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(12, 21, 40, 0.72);
    border: 1px solid rgba(197, 214, 255, 0.12);
    backdrop-filter: blur(16px);
}

.detail-hero-floating-left {
    top: 10%;
    left: -2%;
}

.detail-hero-floating-right {
    right: -3%;
    bottom: 10%;
}

.detail-hero-floating span {
    display: block;
    color: rgba(196, 211, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.detail-hero-floating strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.45;
}

.detail-grid-refined {
    align-items: start;
}

.detail-main-stack,
.detail-side-stack {
    display: grid;
    gap: 20px;
}

.detail-content-card {
    box-shadow: 0 18px 36px rgba(114, 126, 202, 0.08);
}

.detail-content-card h3 {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 400;
}

.detail-content-card p {
    margin: 0;
}

.detail-content-card p+p {
    margin-top: 12px;
}

.deliverable-list {
    display: grid;
    gap: 14px;
}

.deliverable-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 18px 18px 20px;
    border-radius: 18px;
    background: rgba(244, 247, 255, 0.92);
    border: 1px solid rgba(154, 166, 233, 0.14);
}

.deliverable-item span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 400;
}

.deliverable-item p {
    margin: 0;
    color: #63778d;
}

.detail-panel {
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(114, 126, 202, 0.08);
}

.detail-panel-strong {
    background: linear-gradient(145deg, rgba(236, 239, 255, 0.82), rgba(247, 250, 255, 0.98));
}

.timeline-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.timeline-rail .timeline-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(167, 187, 255, 0.1);
    box-shadow: none;
}

.timeline-rail .timeline-card strong,
.timeline-rail .timeline-card span {
    color: #fff;
}

.timeline-rail .timeline-card strong {
    color: rgba(135, 178, 255, 0.92);
}

.news-page-stage {
    margin-bottom: 28px;
}

.news-spotlight,
.article-shell-wide {
    background: #fff;
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(108, 120, 196, 0.08);
    overflow: hidden;
}

.news-spotlight {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
}

.news-spotlight-media {
    display: grid;
    place-items: center;
    min-height: 340px;
    background:
        radial-gradient(circle at 50% 40%, rgba(120, 145, 255, 0.16), rgba(120, 145, 255, 0) 40%),
        linear-gradient(135deg, #eef0ff, #edf7ff);
}

.news-spotlight-media img {
    width: min(76%, 260px);
    object-fit: contain;
}

.news-spotlight-copy {
    padding: 34px 34px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-spotlight-copy span {
    color: var(--accent);
}

.news-spotlight-copy h2 {
    margin: 16px 0 16px;
    font-size: clamp(28px, 2.8vw, 36px);
    line-height: 1.18;
    font-weight: 400;
}

.news-spotlight-copy p {
    margin: 0;
    color: #64768d;
    line-height: 1.9;
}

.news-spotlight-meta {
    margin-top: 18px;
    color: #8595aa;
    font-size: 14px;
}

.news-spotlight-side {
    display: grid;
    gap: 18px;
}

.news-mini-board h3 {
    font-size: 24px;
}

.news-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.news-mini-list a {
    line-height: 1.6;
}

.news-list-rows-card {
    padding: 0 28px;
    border: 1px solid rgba(154, 166, 233, 0.14);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(108, 120, 196, 0.08);
}

.article-shell-wide {
    padding: 36px;
}

.article-head-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.article-head-copy h1 {
    margin: 14px 0 16px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.16;
    font-weight: 400;
}

.article-cover {
    min-height: 280px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 38%, rgba(120, 145, 255, 0.16), rgba(120, 145, 255, 0) 40%),
        linear-gradient(135deg, #eef0ff, #edf7ff);
}

.article-cover img {
    width: min(68%, 220px);
    object-fit: contain;
}

.article-body-copy {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(154, 166, 233, 0.14);
}

.news-related-grid {
    grid-template-columns: repeat(3, 1fr);
}

.news-related-media {
    display: grid;
    place-items: center;
    min-height: 190px;
    background:
        radial-gradient(circle at 50% 38%, rgba(120, 145, 255, 0.16), rgba(120, 145, 255, 0) 40%),
        linear-gradient(135deg, #eef0ff, #edf7ff);
}

.news-related-media img {
    width: min(62%, 150px);
    object-fit: contain;
}

.news-related-copy {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-related-copy span {
    color: var(--accent);
}

.news-related-copy h3 {
    font-size: 22px;
    line-height: 1.35;
}

.news-related-copy p {
    margin: 0 0 20px;
}

.news-related-copy a:last-child {
    display: inline-flex;
    margin-top: auto;
    color: var(--accent);
}

.stitch-home-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 72px;
    background:
        linear-gradient(90deg, rgba(247, 251, 255, 0.94) 0%, rgba(241, 248, 255, 0.88) 42%, rgba(236, 245, 255, 0.8) 100%),
        radial-gradient(circle at 12% 24%, rgba(120, 218, 255, 0.18), rgba(120, 218, 255, 0) 30%),
        radial-gradient(circle at 84% 18%, rgba(144, 176, 255, 0.14), rgba(144, 176, 255, 0) 26%),
        url("../images/hero_bg.jpg") center center / cover no-repeat;
}

.stitch-home-hero-grid,
.stitch-trust-layout,
.stitch-product-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 48px;
    align-items: center;
}

.stitch-home-hero-grid {
    grid-template-columns: 1fr;
    min-height: 560px;
}

.stitch-home-copy {
    max-width: 760px;
}

.stitch-trust-visual {
    display: grid;
    place-items: stretch;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
}

.stitch-trust-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stitch-home-copy h1,
.stitch-products-hero-inner h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #0f172d;
}

.stitch-home-copy h1 em,
.stitch-products-hero-inner h1 em {
    color: #169ec8;
    font-style: normal;
}

.stitch-home-copy p,
.stitch-products-hero-inner p,
.stitch-home-cta-card p,
.stitch-products-cta-inner p {
    margin: 22px 0 0;
    max-width: 38em;
    color: #63748a;
    font-size: 17px;
    line-height: 1.9;
}

.stitch-home-actions,
.stitch-home-cta-actions,
.stitch-products-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.stitch-products-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.stitch-products-hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(182, 202, 216, 0.42);
    color: #566678;
    font-size: 13px;
}

.stitch-home-visual {
    position: relative;
    min-height: 380px;
}

.stitch-home-screen {
    position: relative;
    width: min(520px, 100%);
    margin: 0 auto;
    padding: 26px;
    border-radius: 26px;
    background: linear-gradient(180deg, #06111c 0%, #0a1828 100%);
    box-shadow: 0 34px 72px rgba(14, 35, 58, 0.24);
}

.stitch-home-screen img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(16, 163, 214, 0.12));
}

.stitch-home-screen-bars {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.stitch-home-screen-bars span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(142, 232, 255, 0.44);
}

.stitch-home-screen-grid {
    position: absolute;
    inset: 46px 24px 24px;
    border-radius: 18px;
    background-image:
        linear-gradient(rgba(57, 136, 167, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 136, 167, 0.12) 1px, transparent 1px);
    background-size: 22px 22px;
}

.stitch-service-section,
.stitch-solution-section,
.stitch-case-section,
.stitch-trust-section,
.stitch-home-cta,
.stitch-products-bento,
.stitch-products-catalog,
.stitch-product-spotlight,
.stitch-products-cta {
    padding: 88px 0;
}

.stitch-service-section {
    background: #fff;
}

.stitch-solution-section,
.stitch-product-spotlight {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.stitch-case-section,
.stitch-products-catalog {
    background: #fff;
}

.stitch-trust-section {
    background: linear-gradient(180deg, #f4fbff 0%, #edf6fb 100%);
}

.stitch-products-cta {
    background: #2b3134;
}

.stitch-section-head {
    margin-bottom: 34px;
}

.stitch-section-head h2,
.stitch-home-cta-card h2,
.stitch-products-cta-inner h2,
.stitch-trust-copy h2,
.stitch-product-spotlight-copy h2 {
    margin: 0;
    color: #101729;
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.stitch-section-head p,
.stitch-trust-copy p,
.stitch-product-card-body p,
.stitch-product-spotlight-copy p,
.stitch-home-cta-card p,
.stitch-products-cta-inner p {
    color: #64768d;
}

.stitch-section-head-center {
    display: block;
    text-align: center;
}

.stitch-case-section .stitch-section-head-center h2 {
    text-align: center;
}

.stitch-section-head-center p {
    max-width: 38em;
    margin: 10px auto 0;
}

.stitch-service-grid,
.stitch-case-grid,
.stitch-products-catalog-grid {
    display: grid;
    gap: 22px;
}

.stitch-service-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stitch-service-card,
.stitch-case-card,
.stitch-product-card,
.stitch-products-bento-card {
    border: 1px solid rgba(187, 205, 218, 0.38);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(70, 96, 125, 0.08);
}

.stitch-service-card {
    padding: 30px 24px;
    border-radius: 22px;
}

.stitch-service-card-head {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 58px;
}

.stitch-service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(202, 243, 252, 0.88), rgba(231, 240, 255, 0.9));
}

.stitch-service-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.stitch-service-card h3,
.stitch-case-card h3,
.stitch-solution-lead-copy h3,
.stitch-solution-mini h3,
.stitch-product-card h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.3;
}

.stitch-service-card p,
.stitch-case-card p,
.stitch-solution-lead-copy p,
.stitch-solution-mini p,
.stitch-product-card-body p {
    margin: 18px 0 0;
    color: #65768d;
    line-height: 1.8;
}

.stitch-solution-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
}

.stitch-solution-lead {
    display: grid;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #edf7ff 0%, #ffffff 100%);
    border: 1px solid rgba(189, 208, 221, 0.42);
}

.stitch-solution-lead-media {
    min-height: 300px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(118, 211, 255, 0.18), rgba(118, 211, 255, 0) 34%),
        linear-gradient(180deg, #f1f8ff 0%, #dceefb 100%);
}

.stitch-solution-lead-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stitch-solution-lead-copy {
    padding: 24px 28px 26px;
    background: linear-gradient(180deg, rgba(11, 28, 47, 0.8), rgba(15, 37, 58, 0.95));
}

.stitch-solution-lead-copy h3,
.stitch-solution-lead-copy p {
    color: #fff;
}

.stitch-solution-stack {
    display: grid;
    gap: 24px;
}

.stitch-solution-mini {
    position: relative;
    isolation: isolate;
    display: grid;
    align-content: start;
    min-height: 210px;
    padding: 24px 22px;
    border-radius: 24px;
    background: #eef4f8;
    border: 1px solid rgba(189, 208, 221, 0.42);
    overflow: hidden;
}

.stitch-solution-mini::before,
.stitch-solution-mini::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.stitch-solution-mini::before {
    background: var(--solution-mini-bg) center center / cover no-repeat;
}

.stitch-solution-mini::after {
    background: linear-gradient(135deg, rgba(247, 251, 255, 0.92) 0%, rgba(238, 245, 249, 0.82) 52%, rgba(232, 241, 247, 0.74) 100%);
}

.stitch-solution-mini > * {
    position: relative;
    z-index: 1;
}

.stitch-solution-mini-head {
    display: block;
    min-height: 0;
}

.stitch-solution-mini.is-accent {
    background: linear-gradient(180deg, #0f7f97 0%, #0d6f88 100%);
}

.stitch-solution-mini.is-accent::before {

}

.stitch-solution-mini.is-accent::after {
    background: linear-gradient(135deg, rgba(12, 124, 148, 0.9) 0%, rgba(10, 102, 127, 0.84) 48%, rgba(8, 87, 110, 0.8) 100%);
}

.stitch-solution-mini.is-accent h3,
.stitch-solution-mini.is-accent p {
    color: #fff;
}

.stitch-solution-mini-head,
.stitch-solution-mini p {
    max-width: 66%;
}

.stitch-solution-mini-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.68);
}

.stitch-solution-mini-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.stitch-case-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.stitch-case-card {
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
}

.stitch-case-card-link {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    color: inherit;
}

.stitch-case-media {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #eff7ff, #dfeef7);
}

.stitch-case-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f4f7fb;
}

.stitch-case-body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 16px 22px 18px;
    background: #ffffff;
}

.stitch-case-card h3,
.stitch-case-card p {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.stitch-case-card p {
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.stitch-trust-list {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.stitch-trust-list article {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
}

.stitch-trust-list article span {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1093b6, #42bee4);
    box-shadow: 0 0 0 6px rgba(130, 211, 232, 0.18);
}

.stitch-trust-list h3 {
    margin: 0;
    color: #121c31;
    font-size: 18px;
}

.stitch-trust-list p {
    margin: 8px 0 0;
    line-height: 1.8;
}

.stitch-home-cta-card,
.stitch-products-cta-inner {
    position: relative;
    overflow: hidden;
    padding: 52px 56px;
    border-radius: 34px;
}

.stitch-home-cta-card {
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 78% 30%, rgba(132, 228, 255, 0.26), rgba(132, 228, 255, 0) 24%),
        linear-gradient(135deg, #0e7f99 0%, #1cbaf0 100%);
    background-size: 24px 24px, 24px 24px, auto, auto;
    color: #fff;
}

.stitch-home-cta-card h2,
.stitch-home-cta-card p {
    color: #fff;
}

.stitch-home-cta-card::before,
.stitch-products-cta-inner::before {
    content: "";
    position: absolute;
    right: -62px;
    bottom: -72px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06) 62%, rgba(255, 255, 255, 0) 72%);
}

.stitch-home-cta-card::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 118px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    transform: rotate(12deg);
    box-shadow:
        34px 24px 0 -33px rgba(255, 255, 255, 0.14),
        -26px 38px 0 -37px rgba(255, 255, 255, 0.12);
}

.stitch-home-cta-card > * {
    position: relative;
    z-index: 1;
}

.stitch-products-hero {
    padding: 74px 0 52px;
    background:
        radial-gradient(circle at 14% 24%, rgba(124, 225, 255, 0.18), rgba(124, 225, 255, 0) 28%),
        radial-gradient(circle at 84% 24%, rgba(179, 194, 255, 0.16), rgba(179, 194, 255, 0) 28%),
        linear-gradient(180deg, #f8fbff 0%, #f0f7ff 100%);
}

.stitch-products-hero-inner {
    text-align: center;
}

.stitch-products-hero-inner p {
    margin-left: auto;
    margin-right: auto;
}

.stitch-products-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.stitch-products-bento-card {
    border-radius: 28px;
    overflow: hidden;
}

.stitch-products-bento-card-large {
    grid-column: span 7;
    min-height: 320px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.stitch-products-bento-card-compact {
    grid-column: span 5;
    padding: 30px;
}

.stitch-products-bento-card-soft {
    grid-column: span 4;
}

.stitch-products-bento-card-accent {
    grid-column: span 8;
    padding: 36px;
    background: linear-gradient(135deg, #0d7e96 0%, #15a9da 100%);
    color: #fff;
}

.stitch-products-bento-card-large .stitch-products-bento-copy {
    padding: 34px 34px 34px 36px;
}

.stitch-products-bento-card-large .stitch-products-bento-art {
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #eef6fb 0%, #dfeef7 100%);
}

.stitch-products-bento-card-large img,
.stitch-products-bento-icon img,
.stitch-product-spotlight-media img {
    width: min(74%, 300px);
    object-fit: contain;
}

.stitch-products-bento-copy span {
    display: inline-flex;
    min-height: 30px;
    padding: 0 12px;
    align-items: center;
    border-radius: 999px;
    background: rgba(13, 126, 150, 0.08);
    color: #0d7d97;
    font-size: 12px;
    font-weight: 400;
}

.stitch-products-bento-card-accent .stitch-products-bento-copy span {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.stitch-products-bento-copy h2,
.stitch-products-bento-card-compact h3,
.stitch-product-card-head h3 {
    margin: 18px 0 0;
    color: #121b30;
    font-size: 34px;
    line-height: 1.14;
}

.stitch-products-bento-card-compact h3 {
    font-size: 22px;
}

.stitch-products-bento-copy p,
.stitch-products-bento-card-compact p {
    margin: 16px 0 0;
    color: #68798f;
    line-height: 1.8;
}

.stitch-products-bento-card-accent .stitch-products-bento-copy h2,
.stitch-products-bento-card-accent .stitch-products-bento-copy p {
    color: #fff;
}

.stitch-products-bento-copy a {
    display: inline-flex;
    margin-top: 22px;
    color: #0b7b99;
    font-weight: 400;
}

.stitch-products-bento-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(202, 243, 252, 0.88), rgba(231, 240, 255, 0.9));
}

.stitch-products-bento-card-compact small {
    display: block;
    margin-top: 22px;
    color: #7b8ca0;
    font-size: 12px;
}

.stitch-products-accent-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.stitch-products-accent-stats div {
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
}

.stitch-products-accent-stats strong {
    display: block;
    font-size: 30px;
}

.stitch-products-accent-stats span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}

.stitch-products-catalog-arrows {
    display: flex;
    gap: 10px;
}

.stitch-products-catalog-arrows span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(187, 205, 218, 0.42);
    color: #5f7084;
}

.stitch-products-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stitch-product-card {
    border-radius: 26px;
    overflow: hidden;
}

.stitch-product-card-media {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 36%, rgba(124, 220, 255, 0.2), rgba(124, 220, 255, 0) 38%),
        linear-gradient(180deg, #edf7ff 0%, #e2eef8 100%);
}

.stitch-product-card-media img {
    width: min(72%, 240px);
    object-fit: contain;
}

.stitch-product-card-body {
    display: flex;
    flex-direction: column;
    min-height: 276px;
    padding: 24px 24px 22px;
}

.stitch-product-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.stitch-product-card-head h3 {
    margin: 0;
    font-size: 24px;
}

.stitch-product-card-head span {
    display: inline-flex;
    min-height: 26px;
    padding: 0 10px;
    align-items: center;
    border-radius: 8px;
    background: rgba(13, 126, 150, 0.08);
    color: #0d7d97;
    font-size: 11px;
    font-weight: 400;
}

.stitch-product-card-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.stitch-product-card-list li {
    position: relative;
    padding-left: 22px;
    color: #627489;
    line-height: 1.7;
}

.stitch-product-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f8aa8, #2db8de);
}

.stitch-product-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(187, 205, 218, 0.28);
}

.stitch-product-card-foot strong {
    color: #0d7d97;
    font-size: 20px;
}

.stitch-product-card-foot a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #edf3f6;
    color: #536477;
    font-size: 18px;
}

.stitch-product-spotlight-media {
    display: grid;
    place-items: center;
    min-height: 470px;
    border-radius: 30px;
    background: linear-gradient(180deg, #06111d 0%, #0e1f30 100%);
    box-shadow: 0 24px 52px rgba(14, 33, 54, 0.18);
}

.stitch-product-spotlight-copy h2 {
    margin-bottom: 28px;
}

.stitch-product-spotlight-list {
    display: grid;
    gap: 20px;
}

.stitch-product-spotlight-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
}

.stitch-product-spotlight-list span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0e7f98, #1ab0da);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.stitch-product-spotlight-list h3 {
    margin: 0;
    color: #122037;
    font-size: 22px;
}

.stitch-product-spotlight-list p {
    margin: 10px 0 0;
    line-height: 1.8;
}

.stitch-products-cta-inner {
    text-align: center;
    background: transparent;
}

.stitch-products-cta-inner h2,
.stitch-products-cta-inner p {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}

.stitch-products-cta-inner p {
    max-width: 38em;
}

@media (max-width: 1240px) {

    .stitch-service-grid,
    .stitch-case-grid,
    .stitch-products-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stitch-home-hero-grid,
    .stitch-trust-layout,
    .stitch-product-spotlight-grid,
    .stitch-solution-layout {
        grid-template-columns: 1fr;
    }

    .stitch-products-bento-card-large,
    .stitch-products-bento-card-compact,
    .stitch-products-bento-card-soft,
    .stitch-products-bento-card-accent {
        grid-column: span 12;
    }

    .stitch-products-bento-card-large {
        grid-template-columns: 1fr;
    }

    .page-intro-board,
    .process-page-layout,
    .news-page-stage,
    .detail-hero-shell,
    .article-head-grid,
    .dual-note-layout {
        grid-template-columns: 1fr;
    }

    .service-card-grid,
    .scenario-grid-pro,
    .timeline-rail,
    .news-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-catalog-grid,
    .support-card-grid,
    .process-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .brand {
        min-width: 0;
        padding: 7px 14px;
    }

    .brand img {
        height: 28px;
    }

    .service-card-grid,
    .product-catalog-grid,
    .scenario-grid-pro,
    .support-card-grid,
    .timeline-rail,
    .news-related-grid,
    .process-flow-grid,
    .detail-hero-metrics {
        grid-template-columns: 1fr;
    }

    .detail-hero-shell {
        gap: 28px;
        padding: 72px 0 78px;
    }

    .detail-hero-visual {
        min-height: 320px;
    }

    .detail-hero-floating-left {
        top: 8%;
        left: 4%;
    }

    .detail-hero-floating-right {
        right: 4%;
        bottom: 6%;
    }

    .news-spotlight {
        grid-template-columns: 1fr;
    }

    .news-list-rows-card {
        padding: 0 20px;
    }
}

@media (max-width: 680px) {

    .stitch-home-hero,
    .stitch-service-section,
    .stitch-solution-section,
    .stitch-case-section,
    .stitch-trust-section,
    .stitch-home-cta,
    .stitch-products-bento,
    .stitch-products-catalog,
    .stitch-product-spotlight,
    .stitch-products-cta {
        padding: 64px 0;
    }

    .stitch-home-copy h1,
    .stitch-products-hero-inner h1 {
        font-size: 36px;
    }

    .stitch-home-screen {
        padding: 20px;
        border-radius: 20px;
    }

    .stitch-home-visual {
        min-height: 0;
    }

    .stitch-service-grid,
    .stitch-case-grid,
    .stitch-products-catalog-grid,
    .stitch-products-accent-stats {
        grid-template-columns: 1fr;
    }

    .stitch-products-bento-card,
    .stitch-home-cta-card,
    .stitch-products-cta-inner,
    .stitch-solution-lead,
    .stitch-solution-mini,
    .stitch-product-card,
    .stitch-product-spotlight-media {
        border-radius: 22px;
    }

    .stitch-home-cta-card,
    .stitch-products-cta-inner {
        padding: 34px 22px;
    }

    .stitch-case-card {
        grid-template-rows: auto 1fr;
    }

    .stitch-case-media {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .stitch-products-bento-card-large .stitch-products-bento-copy,
    .stitch-products-bento-card-compact,
    .stitch-products-bento-card-accent,
    .stitch-product-card-body {
        padding: 22px;
    }

    .inner-banner-page {
        padding: 54px 0 60px;
    }

    .page-intro-copy,
    .page-stat-card,
    .process-lead-card,
    .process-side-card,
    .process-contact-card,
    .delivery-note-card,
    .service-card-pro,
    .support-card-pro,
    .scenario-card-pro,
    .detail-content-card,
    .detail-panel,
    .news-mini-board,
    .article-shell-wide {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .page-intro-copy h2,
    .process-lead-card h2,
    .service-card-pro h2,
    .scenario-card-pro h2,
    .product-catalog-body h2,
    .article-head-copy h1 {
        font-size: 28px;
    }

    .product-tabs-refined {
        justify-content: center;
    }

    .product-tab {
        min-width: calc(50% - 6px);
    }

    .product-catalog-media,
    .news-spotlight-media,
    .article-cover,
    .news-related-media {
        min-height: 220px;
    }

    .detail-hero-copy h1 {
        font-size: clamp(2.3rem, 11vw, 3.4rem);
    }

    .detail-hero-tagline {
        font-size: 17px;
    }

    .detail-hero-floating {
        min-width: 0;
        width: 150px;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .deliverable-item {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .article-head-grid,
    .news-page-stage,
    .page-intro-board,
    .process-page-layout,
    .dual-note-layout {
        gap: 18px;
    }

    .news-list-rows-card {
        padding: 0 14px;
        border-radius: 20px;
    }
}

.site-header {
    background: rgba(27,
            32,
            39);
}

.brand-text strong {
    font-size: 1.08rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.brand-text em {
    font-size: 0.76rem;
    color: #7b8da4;
}

.site-footer {
    padding-top: 36px;
    background:
        linear-gradient(180deg, #393939 0%, #616263 100%);
}

.footer-grid-refined {
    grid-template-columns: minmax(240px, 1.18fr) minmax(280px, 0.82fr) auto;
    gap: 40px;
    padding: 34px 0 30px;
    align-items: start;
}

.footer-brand-block {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-brand-mark {
    display: inline-flex;
    align-items: center;
    max-width: 320px;
}

.footer-brand-mark img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-grid-refined h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 400;
}

.footer-grid-refined h4 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.footer-link-group p {
    margin: 0 0 10px;
}

.footer-qr-only {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-qr-only img {
    display: block;
    width: 148px;
    height: auto;
}

.footer-panel {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(27, 149, 181, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(142, 211, 236, 0.16);
}

.footer-panel span {
    color: rgba(142, 203, 226, 0.72);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-panel strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

.footer-panel-art {
    display: grid;
    place-items: center;
    min-height: 120px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-panel-art img {
    width: min(84%, 140px);
    object-fit: contain;
}

.footer-panel-qr {
    gap: 12px;
}

.footer-panel-label {
    display: inline-flex;
}

.footer-panel-art-qr {
    min-height: 150px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-panel-art-qr img {
    width: min(100%, 150px);
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}

.footer-panel-note {
    margin: 0;
    color: rgba(232, 239, 246, 0.66);
    font-size: 12px;
    line-height: 1.6;
}

.footer-bar {
    padding: 18px 0 24px;
}

.footer-records {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-public-security-record {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-public-security-record img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

.stitch-home-copy h1,
.stitch-products-hero-inner h1 {
    font-weight: 400;
    letter-spacing: -0.03em;
}

.stitch-home-copy h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
}

.stitch-products-hero-inner h1 {
    font-size: clamp(2.8rem, 4.4vw, 4.1rem);
}

.stitch-section-head h2,
.stitch-home-cta-card h2,
.stitch-products-cta-inner h2,
.stitch-trust-copy h2,
.stitch-product-spotlight-copy h2 {
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 400;
}

.stitch-service-card h3,
.stitch-case-card h3,
.stitch-solution-lead-copy h3,
.stitch-solution-mini h3,
.stitch-product-card h3,
.stitch-product-card-head h3 {
    font-size: 20px;
    font-weight: 400;
}

.refined-page-hero,
.refined-section,
.refined-article-page,
.refined-strip-section {
    position: relative;
}

.refined-page-hero {
    padding: 78px 0 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(214, 229, 255, 0.86), rgba(214, 229, 255, 0) 32%),
        radial-gradient(circle at 86% 20%, rgba(218, 244, 255, 0.88), rgba(218, 244, 255, 0) 28%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.refined-page-hero-grid,
.refined-detail-hero-grid,
.refined-process-layout,
.refined-news-stage,
.refined-dual-column,
.refined-detail-layout,
.refined-article-head {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 28px;
    align-items: center;
}

.refined-page-copy h1,
.refined-detail-copy h1,
.refined-article-copy h1 {
    margin: 0;
    color: #0f1828;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.refined-page-copy p,
.refined-detail-copy p,
.refined-article-lead {
    margin: 16px 0 0;
    color: #65768c;
    font-size: 16px;
    line-height: 1.92;
}

.refined-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(231, 243, 255, 0.92);
    color: #3f86aa;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.refined-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9ea2ff, #78d2ff);
}

.refined-page-tags,
.refined-detail-tags,
.refined-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.refined-page-tags span,
.refined-detail-tags span,
.refined-chip-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(190, 206, 220, 0.5);
    color: #64738a;
    font-size: 13px;
}

.refined-page-stage,
.refined-detail-stage {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 30%, rgba(182, 235, 255, 0.42), rgba(182, 235, 255, 0) 34%),
        linear-gradient(180deg, #edf6ff 0%, #e6f3fb 100%);
    border: 1px solid rgba(185, 208, 226, 0.42);
    box-shadow: 0 24px 60px rgba(69, 95, 121, 0.08);
}

.refined-page-stage-soft {
    background:
        radial-gradient(circle at 50% 30%, rgba(210, 222, 255, 0.42), rgba(210, 222, 255, 0) 34%),
        linear-gradient(180deg, #f0f5ff 0%, #edf7fd 100%);
}

.refined-page-stage img,
.refined-detail-stage-frame img {
    width: min(100%, 360px);
    max-height: 280px;
    object-fit: contain;
}

.refined-stage-card,
.refined-detail-float {
    position: absolute;
    display: grid;
    gap: 8px;
    min-width: 164px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(184, 204, 220, 0.42);
    box-shadow: 0 18px 34px rgba(44, 89, 126, 0.1);
}

.refined-stage-card {
    left: 26px;
    top: 24px;
}

.refined-stage-card span,
.refined-detail-float span {
    color: #708299;
    font-size: 12px;
}

.refined-stage-card strong,
.refined-detail-float strong {
    color: #11233a;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

.refined-strip-section {
    padding: 0 0 26px;
}

.refined-strip-section-tight {
    padding-top: 0;
}

.refined-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.refined-strip-card {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(187, 205, 218, 0.38);
    box-shadow: 0 16px 34px rgba(70, 96, 125, 0.08);
}

.refined-strip-card strong {
    display: block;
    color: #1285a6;
    font-size: 22px;
    font-weight: 400;
}

.refined-strip-card span {
    display: block;
    margin-top: 8px;
    color: #6e7f95;
    font-size: 14px;
    line-height: 1.7;
}

.refined-section {
    padding: 72px 0;
}

.refined-section-soft {
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.refined-section-head {
    margin-bottom: 30px;
}

.refined-section-head-split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
}

.refined-section-head-center {
    text-align: center;
}

.refined-section-head-compact {
    margin-bottom: 22px;
}

.refined-section-head h2,
.refined-process-lead h2 {
    margin: 8px 0 0;
    color: #121c2e;
    font-size: clamp(26px, 2.2vw, 34px);
    line-height: 1.24;
    font-weight: 400;
}

.refined-section-head p {
    max-width: 38em;
    margin: 0;
    color: #687a90;
    line-height: 1.85;
}

.refined-service-grid,
.refined-scenario-grid,
.refined-process-grid,
.refined-related-grid,
.refined-related-news-grid,
.refined-note-grid,
.refined-support-grid {
    display: grid;
    gap: 20px;
}

.refined-service-grid,
.refined-scenario-grid,
.refined-related-grid,
.refined-related-news-grid {
    grid-template-columns: repeat(3, 1fr);
}

.refined-process-grid {
    grid-template-columns: repeat(3, 1fr);
}

.refined-note-grid,
.refined-support-grid {
    grid-template-columns: repeat(2, 1fr);
}

.refined-service-card,
.refined-scenario-card,
.refined-panel,
.refined-side-card,
.refined-process-card,
.refined-related-card,
.refined-related-news-card,
.refined-note-card,
.refined-support-card,
.refined-news-feature,
.refined-news-row,
.refined-article-shell {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(186, 204, 220, 0.4);
    box-shadow: 0 18px 42px rgba(72, 98, 127, 0.08);
}

.refined-service-card,
.refined-scenario-card,
.refined-panel,
.refined-side-card,
.refined-process-card,
.refined-note-card,
.refined-support-card {
    padding: 28px;
    border-radius: 24px;
}

.refined-service-top,
.refined-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.refined-service-top span,
.refined-scenario-card>span,
.refined-process-card>span,
.refined-scene-card strong {
    color: #9ab0c4;
    font-size: 12px;
    letter-spacing: 0.16em;
}

.refined-service-icon,
.refined-process-icon,
.refined-support-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(221, 231, 255, 0.84), rgba(223, 246, 255, 0.88));
}

.refined-service-icon img,
.refined-process-icon img,
.refined-support-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.refined-service-card h2,
.refined-scenario-card h2,
.refined-news-feature-copy h2,
.refined-news-row-copy h2,
.refined-panel h2,
.refined-panel h3,
.refined-side-card h3,
.refined-related-card h3,
.refined-related-news-copy h3,
.refined-process-card h3,
.refined-support-card h3 {
    margin: 16px 0 0;
    color: #111a2b;
    font-size: 22px;
    line-height: 1.36;
    font-weight: 400;
}

.refined-service-tagline,
.refined-detail-subtitle {
    color: #3f86aa;
    font-size: 15px;
}

.refined-service-summary,
.refined-scenario-card p,
.refined-panel p,
.refined-side-card p,
.refined-process-card p,
.refined-related-card p,
.refined-related-news-copy p,
.refined-support-card p,
.refined-news-feature-copy p,
.refined-news-row-copy p,
.refined-article-body p {
    color: #66788f;
    line-height: 1.9;
}

.refined-service-foot,
.refined-related-card a,
.refined-scenario-card a,
.refined-news-feature-copy a,
.refined-related-news-copy a,
.refined-article-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f7f9b;
    font-size: 14px;
    font-weight: 400;
}

.refined-service-foot {
    justify-content: space-between;
    margin-top: 24px;
}

.refined-service-foot small {
    color: #8698ab;
    font-size: 12px;
}

.refined-detail-hero {
    padding: 84px 0 34px;
    background:
        radial-gradient(circle at 14% 20%, rgba(216, 224, 255, 0.88), rgba(216, 224, 255, 0) 30%),
        radial-gradient(circle at 84% 18%, rgba(211, 242, 255, 0.88), rgba(211, 242, 255, 0) 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.refined-detail-stage {
    min-height: 420px;
}

.refined-detail-stage-frame {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.46);
}

.refined-detail-float-left {
    top: 24px;
    left: 24px;
}

.refined-detail-float-right {
    right: 24px;
    bottom: 24px;
}

.refined-detail-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.refined-detail-main,
.refined-detail-side,
.refined-process-side,
.refined-news-side {
    display: grid;
    gap: 20px;
}

.refined-panel-soft,
.refined-side-card-accent,
.refined-note-card {
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.refined-side-card-accent span,
.refined-note-card span,
.refined-related-card span,
.refined-related-news-copy span,
.refined-news-feature-copy span,
.refined-news-row-copy span,
.refined-news-category,
.refined-article-date {
    color: #4a8aac;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.refined-side-card-accent strong,
.refined-note-card strong {
    display: block;
    margin-top: 10px;
    color: #122236;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
}

.refined-scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.refined-scene-card {
    padding: 18px;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid rgba(188, 204, 220, 0.38);
}

.refined-scene-card p {
    margin: 10px 0 0;
}

.refined-deliverable-list,
.refined-news-list,
.refined-news-row-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.refined-deliverable-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid rgba(188, 204, 220, 0.38);
}

.refined-deliverable-item span {
    display: grid;
    place-items: center;
    min-height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e3e7ff, #e3f5ff);
    color: #4e88a7;
    font-size: 13px;
}

.refined-deliverable-item p,
.refined-news-list-item h3,
.refined-related-card p,
.refined-related-news-copy p {
    margin: 0;
}

.refined-plain-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.refined-plain-list li {
    position: relative;
    padding-left: 18px;
    color: #65788d;
    line-height: 1.8;
}

.refined-plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #94a2ff, #71cbff);
}

.refined-plain-list-compact {
    gap: 10px;
}

.refined-process-lead {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
    border: 1px solid rgba(186, 204, 220, 0.4);
    box-shadow: 0 18px 42px rgba(72, 98, 127, 0.08);
}

.refined-process-card {
    padding-top: 24px;
}

.refined-process-icon {
    margin: 18px 0 16px;
}

.refined-news-stage {
    align-items: start;
}

.refined-news-feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
    overflow: hidden;
    border-radius: 30px;
}

.refined-news-feature-media,
.refined-news-row-media,
.refined-related-news-media,
.refined-article-cover {
    display: block;
    background: linear-gradient(180deg, #edf6ff 0%, #dfeef9 100%);
}

.refined-news-feature-media {
    min-height: 360px;
}

.refined-news-feature-media img,
.refined-news-row-media img,
.refined-related-news-media img,
.refined-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.refined-news-feature-copy {
    padding: 30px 32px;
}

.refined-news-feature-meta,
.refined-news-row-copy small {
    color: #8aa0b5;
    font-size: 13px;
}

.refined-news-list-item {
    padding: 16px 0;
    border-top: 1px solid rgba(186, 204, 220, 0.4);
}

.refined-news-list-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.refined-news-list-item h3 {
    margin-top: 8px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.refined-news-row-list {
    gap: 18px;
}

.refined-news-row {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 26px;
}

.refined-news-row-media {
    min-height: 210px;
}

.refined-news-row-copy {
    padding: 28px 30px;
}

.refined-article-page {
    padding: 78px 0 38px;
    background:
        radial-gradient(circle at 14% 20%, rgba(220, 229, 255, 0.84), rgba(220, 229, 255, 0) 26%),
        linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.refined-article-shell {
    padding: 30px;
    border-radius: 30px;
}

.refined-article-head {
    align-items: stretch;
}

.refined-article-copy {
    display: grid;
    align-content: start;
}

.refined-article-date {
    margin: 8px 0 0;
}

.refined-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
    color: #8398aa;
    font-size: 13px;
}

.refined-article-cover {
    min-height: 340px;
    overflow: hidden;
    border-radius: 24px;
}

.refined-article-body {
    max-width: 900px;
    margin-top: 30px;
}

.refined-article-quote {
    margin-top: 26px;
    padding: 24px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
    border: 1px solid rgba(186, 204, 220, 0.4);
}

.refined-article-quote strong {
    display: block;
    color: #122236;
    font-size: 18px;
    font-weight: 400;
}

.refined-article-quote p {
    margin: 12px 0 0;
}

.refined-article-back {
    margin-top: 26px;
}

.refined-related-news-card {
    overflow: hidden;
    border-radius: 24px;
}

.refined-related-news-media {
    min-height: 220px;
}

.refined-related-news-copy {
    padding: 24px;
}

.refined-related-news-copy h3 {
    font-size: 20px;
}

.refined-page-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.refined-page-hero-grid-single {
    grid-template-columns: minmax(0, 720px);
    justify-content: flex-start;
}

.refined-page-hero-404 {
    min-height: calc(100vh - 220px);
    display: grid;
    align-items: center;
}

@media (max-width: 1240px) {

    .footer-grid-refined,
    .refined-strip-grid,
    .refined-service-grid,
    .refined-scenario-grid,
    .refined-related-grid,
    .refined-related-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .refined-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {

    .footer-grid-refined,
    .refined-page-hero-grid,
    .refined-detail-hero-grid,
    .refined-process-layout,
    .refined-news-stage,
    .refined-dual-column,
    .refined-detail-layout,
    .refined-article-head,
    .refined-news-feature,
    .refined-news-row,
    .refined-strip-grid,
    .refined-service-grid,
    .refined-scenario-grid,
    .refined-process-grid,
    .refined-related-grid,
    .refined-related-news-grid,
    .refined-note-grid,
    .refined-support-grid,
    .refined-scene-grid {
        grid-template-columns: 1fr;
    }

    .footer-qr-only {
        justify-content: flex-start;
    }

    .refined-page-stage,
    .refined-detail-stage {
        min-height: 300px;
    }

    .refined-detail-float-left {
        top: 18px;
        left: 18px;
    }

    .refined-detail-float-right {
        right: 18px;
        bottom: 18px;
    }

    .refined-article-shell {
        padding: 22px;
    }
}

@media (max-width: 680px) {
    .footer-grid-refined {
        gap: 22px;
        padding: 24px 0;
        justify-items: center;
        text-align: center;
    }

    .footer-brand-block,
    .footer-link-group {
        justify-items: center;
        text-align: center;
    }

    .footer-brand-mark {
        justify-content: center;
    }

    .footer-contact-line {
        justify-content: center;
    }

    .footer-qr-only {
        justify-content: center;
    }

    .footer-qr-only img {
        width: 112px;
    }

    .footer-bar {
        align-items: center;
        text-align: center;
        gap: 8px;
        padding-right: 0;
    }

    .footer-records {
        justify-content: center;
        gap: 10px;
    }

    .refined-page-hero,
    .refined-detail-hero,
    .refined-article-page,
    .refined-section {
        padding: 60px 0;
    }

    .refined-page-copy h1,
    .refined-detail-copy h1,
    .refined-article-copy h1 {
        font-size: 32px;
    }

    .refined-page-stage,
    .refined-detail-stage,
    .refined-process-lead,
    .refined-service-card,
    .refined-scenario-card,
    .refined-panel,
    .refined-side-card,
    .refined-process-card,
    .refined-note-card,
    .refined-support-card,
    .refined-article-shell {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .refined-stage-card,
    .refined-detail-float {
        position: static;
        min-width: 0;
        margin-top: 14px;
    }

    .refined-page-actions {
        flex-direction: column;
    }

    .refined-news-row-copy,
    .refined-news-feature-copy,
    .refined-related-news-copy {
        padding: 22px 20px;
    }

    .refined-news-feature-media,
    .refined-news-row-media,
    .refined-related-news-media,
    .refined-article-cover {
        min-height: 220px;
    }
}

.stitch-home-hero {
    --hero-pad-top: clamp(44px, 4.4vw, 66px);
    --hero-pad-bottom: clamp(58px, 5.8vw, 84px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: var(--hero-pad-top) 0 var(--hero-pad-bottom);
    min-height: max(640px, calc(var(--hero-vh, 100vh) - var(--header-height, 72px)));
    background: #091321;
}

.stitch-home-hero-slides {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.stitch-home-hero-slide {
    position: absolute;
    inset: -2%;
    opacity: 0;
    transform: translate3d(8%, 0, 0) scale(1.06);
    transition:
        opacity 0.95s var(--ease-out),
        transform 1.15s var(--ease-out);
    background:
        linear-gradient(180deg, rgba(5, 11, 19, 0.08), rgba(5, 11, 19, 0.08)),
        var(--hero-slide-image) center center / cover no-repeat;
}

.stitch-home-hero-slide.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.stitch-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 10, 18, 0.88) 0%, rgba(6, 14, 25, 0.76) 30%, rgba(6, 16, 29, 0.44) 58%, rgba(8, 18, 31, 0.78) 100%),
        linear-gradient(180deg, rgba(2, 7, 14, 0.1), rgba(2, 7, 14, 0.3));
    z-index: -2;
}

.stitch-home-hero::after {
    display: none;
}

.stitch-home-hero>.container {
    position: relative;
    z-index: 1;
}

.stitch-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: max(420px, calc(var(--hero-vh, 100vh) - var(--header-height, 72px) - var(--hero-pad-top) - var(--hero-pad-bottom)));
    align-items: center;
}

.stitch-home-copy {
    max-width: min(1020px, 86vw);
    display: grid;
    align-content: center;
    transform: translateY(clamp(26px, 4vh, 54px));
}

.stitch-home-copy-stage {
    display: grid;
    min-height: clamp(182px, 18vw, 238px);
}

.stitch-home-copy-panel {
    grid-area: 1 / 1;
    max-width: 780px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(28px, 0, 0);
    transition:
        opacity 0.55s var(--ease-out),
        transform 0.75s var(--ease-out),
        visibility 0.55s var(--ease-out);
}

.stitch-home-copy-panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.stitch-home-copy-panel h1 {
    margin: 0;
    display: grid;
    gap: 4px;
    color: #ffffff;
    font-size: clamp(34px, 4.1vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.028em;
    font-weight: 400;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.stitch-home-copy-panel h1 span,
.stitch-home-copy-panel h1 em {
    display: block;
    color: #58c9ff;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
}

.stitch-home-copy-panel h1 span {
    color: #ffffff;
    font-size: 75px;
    margin-bottom: 20px;
}

.stitch-home-copy-panel p {
    margin: 12px 0 0;
    max-width: none;
    color: rgba(239, 245, 251, 0.78);
    font-size: 15px;
    line-height: 1.75;
    white-space: nowrap;
}

.stitch-home-hero-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: clamp(44px, 4vw, 54px);
    height: clamp(44px, 4vw, 54px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 226, 244, 0.28);
    border-radius: 999px;
    background: rgba(7, 20, 34, 0.38);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    color: #eef8ff;
    cursor: pointer;
    margin: 0;
    padding: 0;
    transform: translate3d(0, -50%, 0);
    transition:
        background 0.28s var(--ease-out),
        border-color 0.28s var(--ease-out),
        transform 0.28s var(--ease-out),
        box-shadow 0.28s var(--ease-out);
}

.stitch-home-hero-nav:hover {
    background: rgba(20, 72, 112, 0.58);
    border-color: rgba(134, 217, 255, 0.54);
    transform: translate3d(0, -50%, 0) scale(1.04);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.stitch-home-hero-nav:focus-visible {
    outline: 2px solid rgba(134, 217, 255, 0.9);
    outline-offset: 3px;
}

.stitch-home-hero-nav svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.stitch-home-hero-nav-prev {
    left: clamp(12px, 1.4vw, 24px);
}

.stitch-home-hero-nav-next {
    right: clamp(12px, 1.4vw, 24px);
}

.stitch-home-progress {
    position: absolute;
    left: 50%;
    bottom: clamp(14px, 1.8vw, 24px);
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    transform: translateX(-50%);
    justify-content: center;
}

.stitch-home-progress-dot {
    width: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: width 0.32s var(--ease-out);
}

.stitch-home-progress-dot.is-active {
    width: 76px;
}

.stitch-home-progress-track {
    position: relative;
    display: block;
    width: 100%;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(229, 239, 248, 0.22);
}

.stitch-home-progress-fill {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #46befe 0%, #86d9ff 100%);
    transform: scaleX(0);
    transform-origin: left center;
}

@keyframes homeHeroProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.stitch-home-actions {
    gap: 16px;
    margin-top: 18px;
}

.stitch-home-hero .button {
    min-width: 164px;
    min-height: 50px;
    font-weight: 400;
}

.stitch-home-hero .button-primary {
    color: var(--cta-text);
    background: var(--cta-bg);
    border-color: transparent;
    box-shadow: var(--cta-shadow);
}

.stitch-home-hero .button-primary:hover {
    background: var(--cta-bg-hover);
    box-shadow: var(--cta-shadow-hover);
}

.stitch-home-hero .button-outline {
    color: #ffffff;
    background: rgba(8, 16, 28, 0.18);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.stitch-home-hero .button-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 980px) {
    .stitch-home-hero::before {
        background:
            linear-gradient(180deg, rgba(5, 12, 21, 0.9) 0%, rgba(7, 15, 27, 0.76) 48%, rgba(8, 17, 30, 0.48) 100%),
            linear-gradient(180deg, rgba(2, 7, 14, 0.08), rgba(2, 7, 14, 0.22));
    }

    .stitch-home-copy {
        max-width: 100%;
        transform: translateY(20px);
    }

    .stitch-home-hero-nav {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1440px);
    }

    .nav-row {
        min-height: 78px;
    }

    .brand img {
        height: 34px;
    }

    .header-cta {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .stitch-home-hero {
        --hero-pad-top: 40px;
        --hero-pad-bottom: 44px;
    }

    .stitch-home-hero-grid {
        min-height: max(360px, calc(var(--hero-vh, 100vh) - var(--header-height, 72px) - var(--hero-pad-top) - var(--hero-pad-bottom)));
    }

    .stitch-home-copy-stage {
        min-height: clamp(188px, 48vw, 238px);
    }

    .stitch-home-copy-panel h1 {
        display: grid;
        gap: 4px;
        font-size: clamp(28px, 7.8vw, 38px);
        line-height: 1.14;
    }

    .stitch-home-copy-panel h1 span,
    .stitch-home-copy-panel h1 em {
        white-space: normal;
    }

    .stitch-home-copy-panel h1 span {
        font-size: clamp(34px, 15vw, 62px);
        line-height: 0.96;
        margin-bottom: 14px;
        word-break: break-word;
    }

    .stitch-home-copy-panel p {
        font-size: 14px;
        line-height: 1.72;
        white-space: normal;
    }

    .stitch-home-hero-nav {
        top: auto;
        bottom: 58px;
        transform: none;
        width: 40px;
        height: 40px;
    }

    .stitch-home-hero-nav:hover {
        transform: scale(1.04);
    }

    .stitch-home-hero-nav svg {
        width: 20px;
        height: 20px;
    }

    .stitch-home-hero-nav-prev {
        left: 12px;
    }

    .stitch-home-hero-nav-next {
        right: 12px;
    }

    .stitch-home-progress {
        left: 0;
        right: 0;
        bottom: 10px;
        gap: 10px;
        width: 100%;
        margin-top: 0;
        transform: none;
        justify-content: center;
    }

    .stitch-home-progress-dot.is-active {
        width: 58px;
    }

    .stitch-home-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .stitch-home-hero .button {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

}

.stitch-about-hero,
.stitch-about-section {
    position: relative;
}

.stitch-about-hero {
    padding: 76px 0 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(201, 228, 248, 0.72), rgba(201, 228, 248, 0) 28%),
        radial-gradient(circle at 88% 8%, rgba(225, 237, 255, 0.86), rgba(225, 237, 255, 0) 28%),
        linear-gradient(180deg, #f9fcff 0%, #f2f8fc 100%);
}

.stitch-about-hero::before,
.stitch-about-section-slab::before,
.stitch-about-contact-card-grid {
    background-image:
        linear-gradient(rgba(150, 176, 198, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(150, 176, 198, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
}

.stitch-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
}

.stitch-about-hero-grid,
.stitch-about-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
}

.stitch-about-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(130, 180, 214, 0.26);
    background: rgba(255, 255, 255, 0.72);
    color: #1f7fb3;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.stitch-about-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.stitch-about-hero-copy h1 {
    margin: 20px 0 0;
    color: #14202e;
    font-size: clamp(38px, 4.3vw, 54px);
    line-height: 1.14;
    letter-spacing: -0.045em;
    font-weight: 400;
}

.stitch-about-hero-copy h1 em {
    color: #187fb5;
    font-style: normal;
    font-weight: 400;
}

.stitch-about-hero-copy p {
    margin: 22px 0 0;
    color: #627589;
    font-size: 16px;
    line-height: 1.9;
}

.stitch-about-metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.stitch-about-metric {
    display: grid;
    gap: 8px;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(192, 210, 225, 0.82);
    box-shadow: 0 18px 34px rgba(113, 138, 161, 0.08);
}

.stitch-about-metric strong {
    color: #125f90;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
}

.stitch-about-metric span {
    color: #7b8b9a;
    font-size: 13px;
}

.stitch-about-hero-media {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.72fr);
    grid-template-rows: 248px 196px;
    gap: 20px;
}

.stitch-about-media-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #eef5fb;
    border: 1px solid rgba(189, 207, 224, 0.84);
    box-shadow: 0 24px 44px rgba(104, 128, 147, 0.1);
}

.stitch-about-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stitch-about-media-card-main {
    grid-row: span 2;
}

.stitch-about-media-card-main::after,
.stitch-about-media-card-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 24, 32, 0) 42%, rgba(16, 24, 32, 0.2) 100%);
    pointer-events: none;
}

.stitch-about-media-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 26px rgba(68, 97, 121, 0.14);
}

.stitch-about-media-note span,
.stitch-about-media-card-panel span,
.stitch-about-support-copy span,
.stitch-about-contact-card-copy span {
    color: #1e80b4;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.stitch-about-media-note strong {
    color: #172331;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
}

.stitch-about-media-card-panel {
    padding: 26px 24px;
    display: grid;
    align-content: start;
    gap: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 254, 0.98)),
        linear-gradient(135deg, rgba(223, 237, 249, 0.56), rgba(237, 243, 255, 0.46));
}

.stitch-about-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stitch-about-service-tags em {
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(28, 128, 181, 0.08);
    color: #24587a;
    font-size: 13px;
    font-style: normal;
}

.stitch-about-media-card-panel p {
    margin: 0;
    color: #697b8d;
    line-height: 1.85;
}

.stitch-about-section {
    padding: 88px 0;
    background: #ffffff;
}

.stitch-about-section-soft {
    background:
        linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
}

.stitch-about-section-slab {
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 24%, rgba(224, 238, 248, 0.9), rgba(224, 238, 248, 0) 24%),
        linear-gradient(180deg, #f4f9fd 0%, #eff6fb 100%);
}

.stitch-about-section-slab::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.26;
    pointer-events: none;
}

.stitch-about-section-head {
    margin-bottom: 36px;
}

.stitch-about-principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
        "mission vision vision"
        "value value innovation";
    gap: 22px;
}

.stitch-about-principle-card {
    position: relative;
    min-height: 220px;
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(192, 210, 225, 0.84);
    box-shadow: 0 18px 36px rgba(106, 127, 147, 0.08);
}

.stitch-about-principle-card-mission {
    grid-area: mission;
}

.stitch-about-principle-card-vision {
    grid-area: vision;
    min-height: 268px;
    overflow: hidden;
    background: linear-gradient(135deg, #1d84ba 0%, #0f679a 100%);
    border-color: rgba(15, 103, 154, 0.2);
    box-shadow: 0 24px 46px rgba(20, 107, 156, 0.22);
}

.stitch-about-principle-card-vision::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -62px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 22px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.06);
}

.stitch-about-principle-card-value {
    grid-area: value;
}

.stitch-about-principle-card-innovation {
    grid-area: innovation;
}

.stitch-about-principle-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stitch-about-principle-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(233, 246, 255, 0.96), rgba(218, 235, 248, 0.98));
}

.stitch-about-principle-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.stitch-about-principle-head span {
    color: #adc0d2;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
}

.stitch-about-principle-card h3 {
    position: relative;
    z-index: 1;
    margin: 26px 0 12px;
    color: #172333;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 400;
}

.stitch-about-principle-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 40em;
    color: #65798d;
    line-height: 1.9;
}

.stitch-about-principle-card-vision .stitch-about-principle-icon {
    background: rgba(255, 255, 255, 0.14);
}

.stitch-about-principle-card-vision .stitch-about-principle-head span {
    color: rgba(255, 255, 255, 0.54);
}

.stitch-about-principle-card-vision h3,
.stitch-about-principle-card-vision p {
    color: #ffffff;
}

.stitch-about-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.stitch-about-timeline::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: rgba(188, 208, 224, 0.9);
}

.stitch-about-timeline-item {
    position: relative;
}

.stitch-about-timeline-item::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #1f85ba;
    box-shadow: 0 0 0 8px rgba(31, 133, 186, 0.08);
}

.stitch-about-timeline-year {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    margin-left: 20px;
    border-radius: 999px;
    background: linear-gradient(180deg, #218bc2 0%, #146d9f 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0 14px 26px rgba(18, 101, 149, 0.18);
}

.stitch-about-timeline-card {
    margin-top: 22px;
    padding: 24px 24px 26px;
    min-height: 196px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(193, 210, 223, 0.84);
    box-shadow: 0 16px 32px rgba(108, 131, 150, 0.08);
}

.stitch-about-timeline-card strong {
    display: block;
    margin-bottom: 14px;
    color: #bfd7e6;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 400;
}

.stitch-about-timeline-card p {
    margin: 0;
    color: #65778a;
    line-height: 1.9;
}

.stitch-about-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.stitch-about-support-card {
    position: relative;
    min-height: 312px;
    overflow: hidden;
    border-radius: 28px;
    background: #dce7f0;
    box-shadow: 0 18px 40px rgba(101, 126, 146, 0.12);
}

.stitch-about-support-card img,
.stitch-about-contact-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms var(--ease-out);
}

.stitch-about-support-card:hover img,
.stitch-about-contact-card:hover img {
    transform: scale(1.04);
}

.stitch-about-support-overlay,
.stitch-about-contact-card-overlay {
    position: absolute;
    inset: 0;
}

.stitch-about-support-overlay {
    background:
        linear-gradient(180deg, rgba(11, 19, 27, 0.08) 0%, rgba(11, 19, 27, 0.24) 46%, rgba(11, 19, 27, 0.74) 100%);
}

.stitch-about-support-copy {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    align-content: end;
    padding: 26px;
}

.stitch-about-support-copy h3 {
    margin: 12px 0 10px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 400;
}

.stitch-about-support-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.stitch-about-contact-section {
    background:
        radial-gradient(circle at 82% 12%, rgba(220, 236, 250, 0.9), rgba(220, 236, 250, 0) 28%),
        linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.stitch-about-contact-copy {
    padding: 34px 36px 36px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(192, 210, 225, 0.82);
    box-shadow: 0 18px 36px rgba(108, 131, 150, 0.08);
}

.stitch-about-contact-list {
    display: grid;
    gap: 0;
}

.stitch-about-contact-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid rgba(213, 225, 235, 0.84);
}

.stitch-about-contact-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.stitch-about-contact-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(232, 246, 255, 0.98), rgba(220, 235, 247, 0.98));
}

.stitch-about-contact-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.stitch-about-contact-item h3 {
    margin: 0 0 8px;
    color: #182434;
    font-size: 18px;
    font-weight: 400;
}

.stitch-about-contact-item p {
    margin: 0;
    color: #687b8f;
    line-height: 1.85;
}

.stitch-about-contact-card {
    position: relative;
    min-height: 438px;
    overflow: hidden;
    border-radius: 30px;
    background: #dfeaf3;
    box-shadow: 0 28px 52px rgba(108, 131, 150, 0.14);
}

.stitch-about-contact-card-overlay {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(10, 18, 25, 0.46) 100%);
}

.stitch-about-contact-card-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
}

.stitch-about-contact-card-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 24px 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 32px rgba(70, 96, 116, 0.14);
    backdrop-filter: blur(14px);
}

.stitch-about-contact-card-copy strong {
    color: #162232;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 400;
}

.stitch-about-contact-card-copy p {
    margin: 0;
    color: #66788b;
    line-height: 1.8;
}

@media (max-width: 1240px) {
    .stitch-about-principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "mission vision"
            "value value"
            "innovation innovation";
    }

    .stitch-about-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .stitch-about-hero,
    .stitch-about-section {
        padding: 72px 0;
    }

    .stitch-about-hero-grid,
    .stitch-about-contact-grid {
        grid-template-columns: 1fr;
    }

    .stitch-about-hero-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 240px 184px;
    }

    .stitch-about-media-card-main {
        grid-row: span 2;
    }

    .stitch-about-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .stitch-about-timeline::before {
        display: none;
    }

    .stitch-about-timeline-item::before {
        display: none;
    }

    .stitch-about-timeline-year {
        margin-left: 0;
    }
}

@media (max-width: 680px) {
    .stitch-about-hero,
    .stitch-about-section {
        padding: 60px 0;
    }

    .stitch-about-hero-copy h1 {
        font-size: clamp(32px, 8.6vw, 42px);
    }

    .stitch-about-metric-row,
    .stitch-about-hero-media,
    .stitch-about-principle-grid,
    .stitch-about-timeline,
    .stitch-about-support-grid {
        grid-template-columns: 1fr;
    }

    .stitch-about-principle-grid {
        grid-template-areas:
            "mission"
            "vision"
            "value"
            "innovation";
    }

    .stitch-about-hero-media {
        grid-template-rows: 248px 184px 184px;
    }

    .stitch-about-media-card-main {
        grid-row: span 1;
    }

    .stitch-about-media-card,
    .stitch-about-support-card,
    .stitch-about-contact-card,
    .stitch-about-contact-copy,
    .stitch-about-principle-card,
    .stitch-about-timeline-card {
        border-radius: 24px;
    }

    .stitch-about-contact-copy {
        padding: 28px 24px;
    }

    .stitch-about-contact-card {
        min-height: 360px;
    }

    .stitch-about-contact-card-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 20px;
    }

    .stitch-about-contact-card-copy strong {
        font-size: 20px;
    }
}

.company-about-hero-section,
.company-about-history-section,
.company-about-contact-section {
    position: relative;
    padding: 78px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(208, 229, 246, 0.72), rgba(208, 229, 246, 0) 28%),
        linear-gradient(180deg, #f6fbff 0%, #eef6fb 100%);
}

.company-about-surface {
    position: relative;
    padding: 78px 0;
    background:
        linear-gradient(180deg, #eff6fb 0%, #f7fbff 100%);
}

.company-about-hero-grid,
.company-about-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 52px;
    align-items: center;
}

.company-about-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(185, 230, 249, 0.9);
    color: #0d7d9f;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.company-about-hero-copy h1 {
    display: grid;
    gap: 6px;
    margin: 18px 0 0;
    color: #101725;
    font-size: clamp(44px, 5vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.company-about-hero-copy h1 em {
    color: #109dcc;
    font-style: normal;
}

.company-about-hero-copy p {
    margin: 28px 0 0;
    max-width: 34em;
    color: #627489;
    font-size: 16px;
    line-height: 1.95;
}

.company-about-hero-visual {
    display: grid;
}

.company-about-hero-card {
    min-height: 488px;
    padding: 18px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 18% 22%, rgba(22, 194, 226, 0.18), rgba(22, 194, 226, 0) 28%),
        linear-gradient(145deg, #061116 0%, #09222a 68%, #051014 100%);
    box-shadow: 0 28px 56px rgba(9, 23, 34, 0.26);
}

.company-about-window-scene {
    position: relative;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(102, 230, 255, 0.28);
    box-shadow:
        inset 0 0 0 1px rgba(135, 246, 255, 0.08),
        inset 0 -40px 70px rgba(0, 0, 0, 0.28),
        0 0 42px rgba(32, 190, 220, 0.08);
    background:
        linear-gradient(180deg, rgba(159, 240, 255, 0.24), rgba(159, 240, 255, 0.04)),
        linear-gradient(180deg, #dff4fb 0%, #b6dce7 48%, #7fa9b8 100%);
}

.company-about-window-scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(0, 0, 0, 0.18)),
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(6, 18, 22, 0.16) 58%, rgba(6, 18, 22, 0.34) 100%);
    pointer-events: none;
}

.company-about-window-sky {
    position: absolute;
    inset: 0 0 34% 0;
    background:
        radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 24%),
        linear-gradient(180deg, rgba(227, 250, 255, 0.92), rgba(197, 232, 242, 0.9));
}

.company-about-window-city {
    position: absolute;
    inset: 19% 10% 34% 10%;
}

.company-about-window-city .tower {
    position: absolute;
    bottom: 0;
    width: 10%;
    min-width: 34px;
    background: linear-gradient(180deg, rgba(94, 136, 152, 0.7), rgba(54, 91, 104, 0.84));
    box-shadow: inset 0 0 0 1px rgba(232, 249, 255, 0.18);
}

.company-about-window-city .tower::before {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    top: 8%;
    bottom: 8%;
    background:
        repeating-linear-gradient(180deg, rgba(233, 250, 255, 0.54) 0 6px, rgba(233, 250, 255, 0.04) 6px 14px);
}

.tower-1 { left: 4%; height: 34%; }
.tower-2 { left: 21%; height: 58%; }
.tower-3 { left: 41%; height: 74%; }
.tower-4 { left: 60%; height: 52%; }
.tower-5 { left: 78%; height: 66%; }

.company-about-window-grid {
    position: absolute;
    inset: 0;
}

.company-about-window-grid span {
    position: absolute;
    background: rgba(204, 247, 255, 0.5);
}

.company-about-window-grid span:nth-child(1),
.company-about-window-grid span:nth-child(2) {
    top: 0;
    bottom: 0;
    width: 1px;
}

.company-about-window-grid span:nth-child(1) { left: 28%; }
.company-about-window-grid span:nth-child(2) { left: 62%; }

.company-about-window-grid span:nth-child(3),
.company-about-window-grid span:nth-child(4) {
    left: 0;
    right: 0;
    height: 1px;
}

.company-about-window-grid span:nth-child(3) { top: 34%; }
.company-about-window-grid span:nth-child(4) { top: 64%; }

.company-about-window-floor {
    position: absolute;
    inset: 62% 0 0 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(18, 42, 51, 0.08) 20%, rgba(6, 17, 21, 0.34) 100%),
        repeating-linear-gradient(90deg, rgba(222, 246, 252, 0.2) 0 1px, transparent 1px 82px),
        repeating-linear-gradient(180deg, rgba(222, 246, 252, 0.18) 0 1px, transparent 1px 62px);
    transform: perspective(520px) rotateX(68deg);
    transform-origin: top;
}

.company-about-section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 42px;
}

.company-about-section-head h2 {
    margin: 0;
    color: #111a28;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.company-about-section-head p {
    margin: 0;
    color: #6f8091;
    font-size: 15px;
}

.company-about-section-head-center {
    justify-items: center;
    text-align: center;
}

.company-about-section-head-center span {
    width: 62px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0e7f99, #14b1da);
}

.company-about-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.company-about-pillar {
    position: relative;
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 188px;
    padding: 28px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(199, 215, 228, 0.86);
    box-shadow: 0 14px 34px rgba(87, 117, 146, 0.08);
}

.company-about-pillar-head {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 52px;
}

.company-about-pillar-icon {
    display: grid;
    flex: 0 0 52px;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dff6ff, #c8ebfa);
}

.company-about-pillar-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.company-about-pillar-head h3 {
    margin: 0;
    color: #101a28;
    font-size: 22px;
    line-height: 1.3;
    align-self: center;
}

.company-about-pillar-copy p {
    margin: 0;
    color: #627489;
    line-height: 1.9;
}

.company-about-pillar-mission {
    grid-column: span 1;
}

.company-about-pillar-vision {
    grid-column: span 2;
    overflow: hidden;
    background: linear-gradient(135deg, #0c7d97 0%, #0c7891 100%);
    border-color: rgba(8, 108, 129, 0.22);
}

.company-about-pillar-vision::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -42px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 18px solid rgba(145, 233, 255, 0.12);
    box-shadow: inset 0 0 0 16px rgba(145, 233, 255, 0.08);
}

.company-about-pillar-vision .company-about-pillar-head h3,
.company-about-pillar-vision .company-about-pillar-copy p {
    color: #ffffff !important;
}

.company-about-pillar-copy {
    margin-top: -4px;
}

.company-about-pillar-value {
    grid-column: span 2;
}

.company-about-pillar-innovation {
    grid-column: span 1;
}

.company-about-history-section {
    background:
        radial-gradient(circle at 90% 16%, rgba(207, 233, 246, 0.56), rgba(207, 233, 246, 0) 18%),
        linear-gradient(180deg, #f8fcff 0%, #eef6fb 100%);
}

.company-about-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 36px;
}

.company-about-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: rgba(175, 198, 214, 0.8);
}

.company-about-timeline-item {
    position: relative;
}

.company-about-timeline-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: linear-gradient(180deg, #0f7f98, #0b6980);
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 12px 28px rgba(12, 111, 136, 0.18);
}

.company-about-timeline-card {
    margin-top: 18px;
    min-height: 128px;
    padding: 22px 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(206, 219, 230, 0.9);
    box-shadow: 0 12px 28px rgba(97, 118, 138, 0.06);
}

.company-about-timeline-card strong {
    display: block;
    margin-bottom: 12px;
    color: #0f1a27;
    font-size: 16px;
}

.company-about-timeline-card p {
    margin: 0;
    color: #6c7c8d;
    line-height: 1.85;
}

.company-about-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.company-about-cert-item {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.company-about-cert-poster {
    position: relative;
    width: 100%;
    max-width: 180px;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, rgba(54, 197, 232, 0.14), rgba(54, 197, 232, 0) 30%),
        linear-gradient(180deg, #071016 0%, #12222d 100%);
    box-shadow: 0 18px 34px rgba(11, 27, 38, 0.2);
}

.company-about-cert-poster::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(92, 228, 255, 0.24);
}

.company-about-cert-core {
    position: absolute;
    inset: 0;
}

.company-about-cert-poster-stack .company-about-cert-core::before,
.company-about-cert-poster-stack .company-about-cert-core::after,
.company-about-cert-poster-seal .company-about-cert-core::before,
.company-about-cert-poster-seal .company-about-cert-core::after,
.company-about-cert-poster-portal .company-about-cert-core::before,
.company-about-cert-poster-portal .company-about-cert-core::after,
.company-about-cert-poster-shield .company-about-cert-core::before,
.company-about-cert-poster-shield .company-about-cert-core::after {
    content: "";
    position: absolute;
}

.company-about-cert-poster-stack .company-about-cert-core::before {
    left: 50%;
    top: 26%;
    width: 72px;
    height: 92px;
    background: linear-gradient(180deg, #5fd9ff, #1188da);
    transform: translateX(-50%);
    box-shadow:
        -10px 12px 0 -2px rgba(187, 242, 255, 0.24),
        10px 12px 0 -2px rgba(16, 130, 210, 0.22);
}

.company-about-cert-poster-stack .company-about-cert-core::after {
    left: 50%;
    bottom: 24%;
    width: 96px;
    height: 10px;
    border-radius: 999px;
    background: rgba(95, 217, 255, 0.22);
    transform: translateX(-50%);
}

.company-about-cert-poster-seal .company-about-cert-core::before {
    left: 50%;
    top: 24%;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    border: 10px solid rgba(149, 233, 255, 0.72);
    transform: translateX(-50%);
    box-shadow: inset 0 0 0 10px rgba(14, 132, 169, 0.34);
}

.company-about-cert-poster-seal .company-about-cert-core::after {
    left: 50%;
    top: 48%;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(146, 235, 255, 0.78), rgba(20, 121, 160, 0.12));
}

.company-about-cert-poster-portal .company-about-cert-core::before {
    left: 50%;
    top: 20%;
    width: 88px;
    height: 142px;
    border-radius: 6px;
    border: 8px solid rgba(106, 228, 255, 0.78);
    transform: translateX(-50%);
    box-shadow: 0 0 36px rgba(81, 217, 255, 0.18);
}

.company-about-cert-poster-portal .company-about-cert-core::after {
    left: 50%;
    top: 32%;
    width: 54px;
    height: 92px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(130, 236, 255, 0.2), rgba(130, 236, 255, 0));
}

.company-about-cert-poster-shield .company-about-cert-core::before {
    left: 50%;
    top: 24%;
    width: 96px;
    height: 118px;
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 88% 14%, 88% 56%, 50% 100%, 12% 56%, 12% 14%);
    background: linear-gradient(180deg, #93ecff, #138fdb);
}

.company-about-cert-poster-shield .company-about-cert-core::after {
    left: 50%;
    top: 36%;
    width: 42px;
    height: 42px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.34);
    clip-path: polygon(50% 0%, 88% 14%, 88% 56%, 50% 100%, 12% 56%, 12% 14%);
}

.company-about-cert-item h3 {
    margin: 0;
    color: #17202c;
    font-size: 16px;
    text-align: center;
}

.company-about-contact-section {
    background:
        radial-gradient(circle at 18% 18%, rgba(210, 229, 241, 0.72), rgba(210, 229, 241, 0) 24%),
        linear-gradient(180deg, #f8fcff 0%, #eef6fb 100%);
}

.company-about-contact-copy {
    display: grid;
    align-content: start;
}

.company-about-contact-list {
    display: grid;
    gap: 16px;
}

.company-about-contact-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
}

.company-about-contact-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: linear-gradient(135deg, #dff5ff, #cde9f9);
}

.company-about-contact-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.company-about-contact-item h3 {
    margin: 0 0 8px;
    color: #18222f;
    font-size: 15px;
}

.company-about-contact-item p {
    margin: 0;
    color: #68798c;
    line-height: 1.85;
}

.company-about-contact-note {
    margin: 30px 0 0;
    padding: 18px 20px 0;
    border-left: 3px solid #0f89ae;
    color: #667789;
    font-size: 14px;
    line-height: 1.9;
}

.company-about-map-card {
    position: relative;
    min-height: 432px;
    overflow: hidden;
    border-radius: 10px;
    background: #dfe7ee;
    border: 1px solid rgba(213, 224, 236, 0.92);
    box-shadow: 0 26px 54px rgba(9, 23, 34, 0.22);
}

.company-about-map-image,
.company-about-map-overlay {
    position: absolute;
    inset: 0;
}

.company-about-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-about-map-overlay {
    background:
        linear-gradient(180deg, rgba(8, 23, 36, 0.08), rgba(8, 23, 36, 0.18)),
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 34%);
}

.company-about-map-marker {
    position: absolute;
    left: var(--marker-x, 50%);
    top: var(--marker-y, 50%);
    z-index: 2;
    transform: translate(-50%, -100%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.company-about-map-marker-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(180deg, #28d7ff 0%, #1498d8 100%);
    border: 3px solid rgba(255, 255, 255, 0.96);
    box-shadow:
        0 10px 22px rgba(20, 91, 138, 0.28),
        0 0 0 8px rgba(32, 177, 230, 0.12);
}

.company-about-map-marker-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 14px;
    background: linear-gradient(180deg, rgba(20, 152, 216, 0.92), rgba(20, 152, 216, 0));
    transform: translateX(-50%);
}

.company-about-map-marker-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(160, 205, 226, 0.96);
    color: #143a55;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0 16px 28px rgba(47, 93, 122, 0.14);
}

.company-about-map-marker-primary .company-about-map-marker-label {
    background: rgba(18, 156, 205, 0.94);
    border-color: rgba(111, 214, 245, 0.98);
    color: #ffffff;
}

.company-about-map-marker-secondary .company-about-map-marker-dot {
    width: 15px;
    height: 15px;
    background: linear-gradient(180deg, #5ae1ff 0%, #31afd8 100%);
}

.company-about-map-marker-secondary .company-about-map-marker-label {
    background: rgba(244, 251, 255, 0.94);
    color: #31546d;
}

@media (max-width: 1240px) {
    .company-about-pillar-grid,
    .company-about-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-about-pillar-vision,
    .company-about-pillar-value {
        grid-column: span 2;
    }
}

@media (max-width: 980px) {
    .company-about-hero-grid,
    .company-about-contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .company-about-hero-card,
    .company-about-map-card {
        min-height: 360px;
    }

    .company-about-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .company-about-hero-section,
    .company-about-history-section,
    .company-about-contact-section,
    .company-about-surface {
        padding: 58px 0;
    }

    .company-about-hero-copy h1 {
        font-size: 40px;
    }

    .company-about-pillar-grid,
    .company-about-cert-grid,
    .company-about-timeline {
        grid-template-columns: 1fr;
    }

    .company-about-pillar-vision,
    .company-about-pillar-value {
        grid-column: span 1;
    }

    .company-about-pillar {
        gap: 16px;
    }

    .company-about-pillar-head {
        gap: 14px;
    }

    .company-about-pillar-head h3 {
        font-size: 20px;
    }

    .company-about-hero-card {
        min-height: 300px;
        padding: 14px;
    }

    .company-about-map-card {
        min-height: 320px;
    }

    .company-about-timeline::before {
        display: none;
    }
}

.news-catalog-page {
    padding: 34px 0 110px;
    background:
        linear-gradient(180deg, #f8fbfd 0%, #eff5f9 100%);
}

.news-catalog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 24px;
    color: #7b8d9d;
    font-size: 13px;
}

.news-catalog-breadcrumb a,
.news-catalog-breadcrumb span {
    position: relative;
}

.news-catalog-breadcrumb a::after {
    content: ">";
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    color: #b0bec9;
}

.news-catalog-breadcrumb span {
    color: #0d5f89;
    font-weight: 400;
}

.news-catalog-intro {
    padding: 36px 0 52px;
}

.news-catalog-intro h1 {
    margin: 0;
    color: #111a24;
    font-size: clamp(42px, 4.1vw, 56px);
    line-height: 1.14;
    letter-spacing: -0.045em;
    font-weight: 400;
}

.news-catalog-intro p {
    max-width: 760px;
    margin: 20px 0 0;
    color: #52687c;
    font-size: 17px;
    line-height: 1.9;
}

.news-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(241, 247, 251, 0.94);
    border: 1px solid rgba(209, 222, 232, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 24px rgba(122, 144, 161, 0.06);
}

.news-catalog-tabs,
.product-center-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-catalog-tab,
.product-center-filter {
    min-width: 72px;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: transparent;
    color: #405567;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background 200ms var(--ease-out), color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.news-catalog-tab.active,
.product-center-filter.active {
    background: linear-gradient(180deg, #0d7897 0%, #0a647f 100%);
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(13, 120, 151, 0.22);
}

.news-catalog-search,
.product-center-search {
    position: relative;
    width: min(100%, 368px);
    flex: 0 0 368px;
}

.news-catalog-search span,
.product-center-search span {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    border: 2px solid #7890a2;
    border-radius: 50%;
}

.news-catalog-search span::after,
.product-center-search span::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: #7890a2;
    transform: rotate(45deg);
    transform-origin: center;
}

.news-catalog-search input,
.product-center-search input {
    width: 100%;
    height: 56px;
    padding: 0 18px 0 42px;
    border: 1px solid rgba(213, 224, 233, 0.95);
    border-radius: 12px;
    background: #ffffff;
    color: #182432;
    font: inherit;
    outline: none;
    box-shadow: 0 8px 18px rgba(112, 135, 153, 0.06);
}

.news-catalog-search input::placeholder,
.product-center-search input::placeholder {
    color: #90a2b1;
}

.news-catalog-search input:focus,
.product-center-search input:focus {
    border-color: rgba(18, 124, 158, 0.48);
    box-shadow: 0 0 0 4px rgba(18, 124, 158, 0.08);
}

.news-catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
}

.news-catalog-card {
    display: grid;
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(220, 228, 236, 0.96);
    background: transparent;
    transition: border-color 240ms var(--ease-out);
}

.news-catalog-card:hover {
    transform: none;
    border-color: rgba(207, 218, 228, 0.98);
    box-shadow: none;
}

.news-catalog-card-media {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: #dce8f2;
}

.news-catalog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 320ms var(--ease-out);
}

.news-catalog-card:hover .news-catalog-card-media img {
    transform: scale(1.02);
}

.news-catalog-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1;
    min-height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.news-catalog-badge-company {
    background: linear-gradient(180deg, #0e6f8f 0%, #0a5871 100%);
}

.news-catalog-badge-analysis {
    background: linear-gradient(180deg, #9f7611 0%, #7f5a05 100%);
}

.news-catalog-badge-paper {
    background: linear-gradient(180deg, #314dff 0%, #1c2ea9 100%);
}

.news-catalog-card-body {
    min-height: 0;
    padding: 8px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-catalog-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8a9aa8;
}

.news-catalog-date span {
    position: relative;
    width: 14px;
    height: 14px;
    border: 1.5px solid #b4c3cf;
    border-radius: 3px;
}

.news-catalog-date span::before,
.news-catalog-date span::after {
    content: "";
    position: absolute;
    top: -3px;
    width: 2px;
    height: 4px;
    border-radius: 999px;
    background: #b4c3cf;
}

.news-catalog-date span::before {
    left: 3px;
}

.news-catalog-date span::after {
    right: 3px;
}

.news-catalog-date small {
    font-size: 12px;
}

.news-catalog-card h2 {
    margin: 18px 0 14px;
    color: #111a24;
    font-size: clamp(21px, 1.65vw, 28px);
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.news-catalog-card p {
    margin: 0;
    color: #233447;
    font-size: 16px;
    line-height: 1.95;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-catalog-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 22px;
    align-self: flex-start;
    color: #0d6c93;
    font-size: 14px;
    font-weight: 400;
}

.news-catalog-link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(1px);
}

.news-catalog-empty {
    margin: 32px 0 0;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(213, 224, 233, 0.95);
    color: #637789;
    text-align: center;
}

.news-catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.news-catalog-page-btn,
.news-catalog-page-ellipsis {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.news-catalog-page-btn {
    border: 1px solid rgba(208, 220, 230, 0.96);
    background: rgba(255, 255, 255, 0.9);
    color: #405567;
    cursor: pointer;
    transition: background 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.news-catalog-page-btn.active {
    background: linear-gradient(180deg, #0d7897 0%, #0a647f 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 12px 20px rgba(13, 120, 151, 0.2);
}

.news-catalog-page-ellipsis {
    color: #8ea1b0;
}

@media (max-width: 1180px) {
    .news-catalog-card {
        grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
        gap: 24px;
    }

    .news-catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .news-catalog-search {
        width: 100%;
        flex-basis: auto;
    }
}

@media (max-width: 760px) {
    .news-catalog-page {
        padding: 26px 0 80px;
    }

    .news-catalog-intro {
        padding: 28px 0 40px;
    }

    .news-catalog-intro h1 {
        font-size: 38px;
    }

    .news-catalog-intro p {
        font-size: 15px;
    }

    .news-catalog-grid {
        gap: 20px;
    }

    .news-catalog-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 20px;
    }

    .news-catalog-card-media {
        height: auto;
        aspect-ratio: 1.56 / 1;
    }

    .news-catalog-card-body {
        padding-top: 0;
    }

    .news-catalog-card h2 {
        font-size: 20px;
    }

    .news-catalog-tabs {
        gap: 8px;
    }

    .news-catalog-tab {
        min-width: 0;
        padding: 0 16px;
    }

    .news-catalog-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.news-article-page {
    padding: 34px 0 96px;
    background:
        linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

.news-article-shell {
    position: relative;
}

.news-article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #7e8f9f;
    font-size: 13px;
}

.news-article-breadcrumb a,
.news-article-breadcrumb span {
    position: relative;
}

.news-article-breadcrumb a::after {
    content: ">";
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    color: #b3c0ca;
}

.news-article-header {
    padding: 22px 0 18px;
    text-align: center;
}

.news-article-header h1 {
    margin: 0;
    color: #101924;
    font-size: clamp(28px, 3.1vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.news-article-detail-cover {
    max-width: 800px;
    margin: 28px auto 0;
}

.news-article-detail-cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.news-article-meta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 28px;
}

.news-article-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.news-article-avatar {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #7fd8ff 0%, #54bfe8 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.news-article-author-copy {
    display: grid;
    gap: 4px;
}

.news-article-author-copy strong {
    color: #1a2531;
    font-size: 14px;
    font-weight: 400;
}

.news-article-author-copy span {
    color: #8192a1;
    font-size: 13px;
}

.news-article-intro {
    margin: 28px 0 0;
    color: #53687a;
    font-size: 16px;
    line-height: 1.95;
}

.news-article-cover {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(214, 225, 234, 0.98);
    box-shadow: 0 18px 34px rgba(111, 132, 148, 0.1);
}

.news-article-cover img {
    width: 100%;
    aspect-ratio: 1.54 / 1;
    object-fit: cover;
    display: block;
}

.news-article-cover figcaption {
    padding: 14px 20px 18px;
    color: #738596;
    font-size: 12px;
    text-align: center;
}

.news-article-body {
    padding: 38px 0 0;
}

.news-article-section + .news-article-section {
    margin-top: 34px;
}

.news-article-section h2 {
    margin: 0 0 16px;
    color: #111b26;
    font-size: 30px;
    line-height: 1.28;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.news-article-section p,
.news-article-gallery-caption {
    margin: 0;
    color: #556a7d;
    font-size: 15px;
    line-height: 2;
}

.news-article-section p + p {
    margin-top: 12px;
}

.news-article-quote {
    margin: 22px 0 0;
    padding: 18px 22px;
    border-left: 3px solid #0f6f96;
    border-radius: 0 8px 8px 0;
    background: rgba(234, 242, 247, 0.92);
}

.news-article-quote p {
    color: #566b7e;
    font-style: italic;
}

.news-article-quote cite {
    display: block;
    margin-top: 8px;
    color: #75889a;
    font-size: 12px;
    font-style: normal;
    text-align: right;
}

.news-article-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0 14px;
}

.news-article-gallery-item {
    overflow: hidden;
    border-radius: 8px;
    background: #dce7f1;
}

.news-article-gallery-item img {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    object-fit: cover;
    display: block;
}

.news-article-gallery-caption {
    margin-top: 0;
}

.news-article-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.news-article-pager-card {
    min-height: 98px;
    padding: 18px 20px;
    display: grid;
    align-content: center;
    gap: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(214, 225, 234, 0.98);
    box-shadow: 0 12px 24px rgba(111, 132, 148, 0.06);
    transition: border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.news-article-pager-card small {
    color: #8b9aa8;
    font-size: 12px;
}

.news-article-pager-card strong {
    color: #17222d;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

.news-article-pager-card:hover {
    transform: translateY(-2px);
    border-color: rgba(176, 204, 221, 0.98);
}

.news-article-pager-next {
    text-align: right;
}

.news-article-pager-card.is-disabled {
    color: #9aabb8;
    pointer-events: none;
    box-shadow: none;
}

.news-article-pager-card.is-disabled strong,
.news-article-pager-card.is-disabled small {
    color: #9aabb8;
}

.news-article-related {
    margin-top: 52px;
}

.news-article-related-head {
    margin-bottom: 20px;
}

.news-article-related-head h2 {
    margin: 0;
    color: #101924;
    font-size: 28px;
    line-height: 1.24;
    letter-spacing: -0.03em;
}

.news-article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-article-related-card {
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(214, 225, 234, 0.98);
    box-shadow: 0 16px 30px rgba(111, 132, 148, 0.08);
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.news-article-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 38px rgba(111, 132, 148, 0.12);
}

.news-article-related-media {
    display: block;
    overflow: hidden;
    background: #dce7f1;
}

.news-article-related-media img {
    width: 100%;
    aspect-ratio: 1.56 / 1;
    object-fit: cover;
    display: block;
}

.news-article-related-copy {
    padding: 14px 16px 16px;
}

.news-article-related-tag {
    min-height: 24px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
}

.news-article-related-tag-company {
    background: linear-gradient(180deg, #0e6f8f 0%, #0a5871 100%);
}

.news-article-related-tag-analysis {
    background: linear-gradient(180deg, #9f7611 0%, #7f5a05 100%);
}

.news-article-related-tag-paper {
    background: linear-gradient(180deg, #314dff 0%, #1c2ea9 100%);
}

.news-article-related-copy h3 {
    margin: 12px 0 10px;
    color: #121c27;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.news-article-related-copy p {
    margin: 0;
    color: #65798d;
    font-size: 13px;
    line-height: 1.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-article-related-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.news-article-related-foot small {
    color: #94a4b2;
    font-size: 12px;
}

.news-article-related-foot a {
    color: #0d5f89;
    font-size: 13px;
    font-weight: 400;
}

@media (max-width: 980px) {
    .news-article-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-article-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .news-article-page {
        padding: 26px 0 72px;
    }

    .news-article-header h1 {
        font-size: 26px;
    }

    .news-article-section h2 {
        font-size: 24px;
    }

    .news-article-gallery,
    .news-article-pager {
        grid-template-columns: 1fr;
    }

    .news-article-cover,
    .news-article-pager-card,
    .news-article-related-card {
        border-radius: 8px;
    }
}

.service-detail-hero {
    padding: 44px 0 24px;
    background:
        linear-gradient(90deg, rgba(239, 244, 255, 0.9), rgba(226, 245, 255, 0.92) 48%, rgba(234, 244, 255, 0.9));
}

.service-detail-hero-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 330px;
    padding: 36px 0 44px;
    text-align: center;
}

.service-detail-hero-frame,
.service-detail-hero-fact,
.service-detail-reason-card,
.service-detail-industry-card,
.service-detail-case-card,
.service-detail-flow-card,
.service-detail-deliverable-card {
    border: 1px solid rgba(137, 154, 213, 0.16);
    box-shadow: 0 18px 46px rgba(79, 92, 146, 0.08);
}

.service-detail-hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.service-detail-hero-shell::before,
.service-detail-hero-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.service-detail-hero-shell::before {
    left: -60px;
    top: 18px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(190, 214, 255, 0.36), rgba(190, 214, 255, 0));
}

.service-detail-hero-shell::after {
    right: -70px;
    bottom: 0;
    width: 300px;
    height: 300px;
    background:
        radial-gradient(circle, rgba(167, 229, 255, 0.28), rgba(167, 229, 255, 0)),
        linear-gradient(rgba(136, 151, 221, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(136, 151, 221, 0.07) 1px, transparent 1px);
    background-size: auto, 14px 14px, 14px 14px;
}

.service-detail-hero-title-wrap {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin-top: 0;
}

.service-detail-hero-shell h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: #1a233f;
}

.service-detail-lead {
    position: relative;
    z-index: 1;
    margin: 18px auto 0;
    max-width: 860px;
    font-size: 1.04rem;
    line-height: 1.95;
    color: #4a5678;
}

.service-detail-capability-list {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.service-detail-capability-list span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(123, 141, 214, 0.14);
    color: #2f4f85;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.service-detail-capability-list span::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid rgba(39, 114, 198, 0.82);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.96);
}

.service-detail-hero-visual {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 18px;
}

.service-detail-hero-frame {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    padding: 20px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(225, 232, 255, 0.92), transparent 34%),
        linear-gradient(180deg, rgba(242, 246, 255, 0.96), rgba(250, 251, 255, 0.92));
}

.service-detail-hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(137, 151, 219, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(137, 151, 219, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 100%);
}

.service-detail-hero-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    background: rgba(228, 234, 249, 0.9);
}

.service-detail-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-detail-hero-fact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 112px;
    padding: 22px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
}

.service-detail-hero-fact strong {
    font-size: 1.9rem;
    font-weight: 400;
    color: #243153;
}

.service-detail-hero-fact span {
    margin-top: 6px;
    color: #7280a1;
    font-size: 0.9rem;
}

.service-detail-section {
    padding: 48px 0;
}

.service-detail-section-soft {
    background: #ffffff;
}

.service-detail-section-flow {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 248, 255, 0.95));
}

.service-detail-section-deliverable {
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.94), rgba(232, 241, 252, 0.92));
}

.service-detail-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.service-detail-section-head-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-detail-section-head-simple {
    justify-content: center;
    margin-bottom: 40px;
}

.service-detail-section-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    line-height: 1.16;
    font-weight: 400;
    letter-spacing: -0.035em;
    color: #1f2947;
}

.service-detail-section-head p {
    margin: 0;
    max-width: 48rem;
    line-height: 1.82;
    color: #6d7593;
}

.service-detail-reason-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-detail-reason-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 28px 28px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.service-detail-reason-card::before {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 132px;
    height: 132px;
    border-radius: 26px;
    transform: rotate(16deg);
    opacity: 0.74;
}

.service-detail-reason-copy {
    position: relative;
    z-index: 1;
}

.service-detail-reason-copy h3 {
    margin: 0 0 12px;
    font-size: 1.14rem;
    line-height: 1.45;
    font-weight: 400;
    color: #243153;
}

.service-detail-reason-copy p {
    margin: 0;
    line-height: 1.8;
    color: #6d7593;
}

.service-detail-reason-mark {
    position: absolute;
    right: 24px;
    bottom: 16px;
    font-size: 2.7rem;
    line-height: 1;
    font-weight: 400;
    color: rgba(76, 94, 177, 0.18);
}

.service-detail-reason-card-violet {
    background: linear-gradient(180deg, rgba(250, 247, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.service-detail-reason-card-violet::before {
    background: linear-gradient(180deg, rgba(197, 180, 255, 0.36), rgba(236, 230, 255, 0.1));
}

.service-detail-reason-card-sky {
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.service-detail-reason-card-sky::before {
    background: linear-gradient(180deg, rgba(153, 207, 255, 0.34), rgba(227, 243, 255, 0.08));
}

.service-detail-reason-card-mint {
    background: linear-gradient(180deg, rgba(243, 251, 250, 0.98), rgba(255, 255, 255, 0.98));
}

.service-detail-reason-card-mint::before {
    background: linear-gradient(180deg, rgba(146, 218, 202, 0.3), rgba(233, 249, 245, 0.08));
}

.service-detail-reason-card-sand {
    background: linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(255, 255, 255, 0.98));
}

.service-detail-reason-card-sand::before {
    background: linear-gradient(180deg, rgba(247, 204, 154, 0.32), rgba(255, 240, 225, 0.08));
}

.service-detail-industry-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.service-detail-industry-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 128px;
    padding: 20px 18px 18px;
    border-radius: 10px;
    border: 1px solid rgba(240, 244, 250, 0.96);
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    box-shadow: none;
}

.service-detail-industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    color: #1d9bff;
}

.service-detail-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.service-detail-industry-card strong {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #2d3341;
    width: 100%;
}

.service-detail-industry-card-mint {
    background: linear-gradient(135deg, rgba(235, 251, 248, 0.96), rgba(249, 255, 254, 0.96));
}

.service-detail-industry-card-rose {
    background: linear-gradient(135deg, rgba(255, 240, 244, 0.96), rgba(255, 250, 252, 0.96));
}

.service-detail-industry-card-sky {
    background: linear-gradient(135deg, rgba(232, 241, 255, 0.96), rgba(249, 252, 255, 0.96));
}

.service-detail-industry-card-sand {
    background: linear-gradient(135deg, rgba(255, 245, 233, 0.96), rgba(255, 251, 245, 0.96));
}

.service-detail-industry-card-mint .service-detail-industry-icon {
    color: #17bea5;
}

.service-detail-industry-card-rose .service-detail-industry-icon {
    color: #e8626c;
}

.service-detail-industry-card-sky .service-detail-industry-icon {
    color: #2f97ff;
}

.service-detail-industry-card-sand .service-detail-industry-icon {
    color: #f39b47;
}

.service-detail-center-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.service-detail-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 176px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: #243153;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
    box-shadow: 0 14px 26px rgba(36, 49, 83, 0.16);
}

.service-detail-action-button:hover {
    transform: translateY(-2px);
    background: #30406c;
    box-shadow: 0 18px 30px rgba(36, 49, 83, 0.18);
}

.service-detail-action-button-strong {
    min-width: 360px;
    min-height: 46px;
    padding: 0 34px;
    background: var(--cta-bg);
    font-size: 1.1rem;
    font-weight: 400;
    box-shadow: var(--cta-shadow);
}

.service-detail-action-button-strong:hover {
    background: var(--cta-bg-hover);
    box-shadow: var(--cta-shadow-hover);
}

.service-detail-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-detail-case-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
}

.service-detail-case-link {
    min-height: 100%;
    display: block;
}

.service-detail-case-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 210px;
   
}

.service-detail-case-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(139, 153, 214, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 153, 214, 0.06) 1px, transparent 1px);
    background-size: 18px 18px;
}

.service-detail-case-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-case-body {
    padding: 22px 22px 24px;
}

.service-detail-case-body h3 {
    margin: 0 0 10px;
    font-size: 1.06rem;
    line-height: 1.5;
    font-weight: 400;
    color: #243153;
}

.service-detail-case-body p {
    margin: 0;
    line-height: 1.8;
    color: #6d7593;
}

.service-detail-case-foot {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.service-detail-case-foot small {
    color: #8a95aa;
    font-size: 12px;
}

.service-detail-case-foot strong {
    color: #1a56d0;
    font-size: 13px;
    font-weight: 400;
}

.service-detail-case-empty {
    margin-top: 18px;
    padding: 20px 24px;
    border-radius: 20px;
    border: 1px dashed rgba(140, 164, 214, 0.7);
    background: rgba(246, 250, 255, 0.92);
    color: #6d7f99;
    font-size: 14px;
}

.service-detail-flow-stage {
    position: relative;
    margin-top: 18px;
}

.service-detail-flow-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 360px;
    pointer-events: none;
    overflow: visible;
}

.service-detail-flow-wave path {
    fill: none;
    stroke: rgba(202, 218, 255, 0.96);
    stroke-width: 3;
    stroke-linecap: round;
}

.service-detail-flow-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0;
    min-height: 360px;
    padding: 0;
}

.service-detail-flow-step {
    --flow-dot-bottom: 42px;
    --flow-card-offset: 30px;
    position: relative;
    min-height: 360px;
}

.service-detail-flow-step:nth-child(1) {
    --flow-dot-bottom: 42px;
}

.service-detail-flow-step:nth-child(2) {
    --flow-dot-bottom: 102px;
}

.service-detail-flow-step:nth-child(3) {
    --flow-dot-bottom: 42px;
}

.service-detail-flow-step:nth-child(4) {
    --flow-dot-bottom: 104px;
}

.service-detail-flow-step:nth-child(5) {
    --flow-dot-bottom: 50px;
}

.service-detail-flow-step:nth-child(6) {
    --flow-dot-bottom: 116px;
}

.service-detail-flow-step:nth-child(7) {
    --flow-dot-bottom: 56px;
}

.service-detail-flow-step:nth-child(8) {
    --flow-dot-bottom: 122px;
}

.service-detail-flow-index {
    display: block;
    margin-bottom: 8px;
    color: #1c2231;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.service-detail-flow-dot {
    position: absolute;
    left: 50%;
    bottom: var(--flow-dot-bottom);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2e9dff;
    border: 3px solid #ffffff;
    transform: translateX(-50%);
    box-shadow:
        0 0 0 6px rgba(115, 182, 255, 0.18),
        0 8px 18px rgba(77, 145, 231, 0.22);
}

.service-detail-flow-card {
    position: absolute;
    left: 8%;
    bottom: calc(var(--flow-dot-bottom) + var(--flow-card-offset));
    width: min(100%, 152px);
    min-height: 122px;
    padding: 26px 16px 18px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(196, 229, 255, 0.78), rgba(252, 241, 248, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.9);
    transform: translateX(-50%);
    text-align: center;
    box-shadow:
        0 18px 36px rgba(115, 135, 198, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-detail-flow-card::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    background:
        linear-gradient(135deg, rgba(244, 249, 255, 0.98), rgba(253, 245, 249, 0.98));
    transform: translateX(-50%) rotate(45deg);
}

.service-detail-flow-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(-1 * var(--flow-card-offset) + 10px);
    width: 2px;
    height: calc(var(--flow-card-offset) - 14px);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(214, 223, 252, 0.92), rgba(214, 223, 252, 0));
    transform: translateX(-50%);
    pointer-events: none;
}

.service-detail-flow-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 400;
    color: #232a38;
}

.service-detail-flow-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.65;
    color: #4c566c;
}

.service-detail-deliverable-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-detail-deliverable-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 182px;
    padding: 24px 18px;
    border-radius: 10px;
    border: 1px solid rgba(234, 241, 248, 0.96);
    background: rgba(255, 255, 255, 0.98);
    text-align: center;
    box-shadow: 0 10px 24px rgba(86, 112, 171, 0.05);
}

.service-detail-deliverable-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(242, 247, 255, 0.14));
    pointer-events: none;
}

.service-detail-deliverable-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: #2a95ff;
}

.service-detail-svg-deliverable {
    width: 100%;
    height: 100%;
}

.service-detail-deliverable-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #2a2f3c;
    width: 100%;
}

@media (max-width: 1280px) {
    .service-detail-case-grid,
    .service-detail-deliverable-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-industry-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-detail-flow-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: auto;
        gap: 22px 18px;
        padding: 0;
    }

    .service-detail-flow-wave {
        display: none;
    }

    .service-detail-flow-step {
        min-height: auto;
        padding-top: 0;
    }

    .service-detail-flow-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        min-height: 150px;
        transform: none;
        padding: 24px 18px 18px;
    }

    .service-detail-flow-card::before {
        display: none;
    }

    .service-detail-flow-card::after {
        display: none;
    }

    .service-detail-flow-dot {
        position: relative;
        display: block;
        left: auto;
        bottom: auto;
        margin: 0 auto 14px;
        transform: none;
    }
}

@media (max-width: 960px) {
    .service-detail-hero {
        padding-top: 28px;
    }

    .service-detail-hero-shell {
        min-height: 280px;
        padding: 26px 0 34px;
    }

    .service-detail-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail-section-head-center {
        align-items: flex-start;
        text-align: left;
    }

    .service-detail-hero-frame,
    .service-detail-case-card,
    .service-detail-deliverable-card,
    .service-detail-flow-card,
    .service-detail-reason-card {
        border-radius: 24px;
    }

    .service-detail-industry-grid,
    .service-detail-case-grid,
    .service-detail-deliverable-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-action-button-strong {
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .service-detail-reason-grid,
    .service-detail-industry-grid,
    .service-detail-case-grid,
    .service-detail-deliverable-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-hero-shell {
        min-height: 240px;
        padding: 20px 0 28px;
    }

    .service-detail-hero-shell h1 {
        font-size: clamp(2.1rem, 11vw, 3.1rem);
    }

    .service-detail-lead {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .service-detail-section {
        padding: 36px 0;
    }

    .service-detail-section-head {
        margin-bottom: 22px;
    }

    .service-detail-action-button {
        width: 100%;
    }

    .service-detail-flow-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-detail-flow-card {
        min-height: 0;
        padding: 22px 18px 16px;
    }
}

.product-center-page {
    background: #ffffff;
}

.product-center-hero {
    padding: 74px 0 58px;
    background:
        radial-gradient(circle at 12% 14%, rgba(201, 217, 255, 0.84), rgba(201, 217, 255, 0) 32%),
        radial-gradient(circle at 88% 16%, rgba(196, 239, 255, 0.86), rgba(196, 239, 255, 0) 34%),
        linear-gradient(180deg, #f5f9ff 0%, #edf8ff 100%);
    border-bottom: 1px solid rgba(211, 224, 236, 0.92);
}

.product-center-hero-inner {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-center-hero h1 {
    margin: 0;
    color: #0f1726;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.12;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.product-center-hero h1 em {
    color: #1954ff;
    font-style: normal;
}

.product-center-hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: #506577;
    font-size: 16px;
    line-height: 1.95;
}

.product-center-catalog {
    padding: 20px 0 94px;
}

.product-center-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(241, 247, 251, 0.94);
    border: 1px solid rgba(209, 222, 232, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 24px rgba(122, 144, 161, 0.06);
}

.product-center-filter {
    color: #405567;
}

.product-center-filter:hover,
.news-catalog-tab:hover {
    color: #0b6178;
}

.product-center-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
}

.product-center-card,
.product-center-cta-card {
    min-height: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(214, 225, 235, 0.98);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(111, 132, 148, 0.08);
}

.product-center-card {
    display: flex;
    flex-direction: column;
    transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.product-center-card:hover {
    transform: translateY(-4px);
    border-color: rgba(187, 205, 218, 0.98);
    box-shadow: 0 26px 42px rgba(111, 132, 148, 0.12);
}

.product-center-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(180deg, #edf7ff 0%, #e5f1f8 100%);
}

.product-center-media img {
    width: 100%;
    aspect-ratio: 1.48 / 1;
    object-fit: cover;
    display: block;
    transition: transform 320ms var(--ease-out);
}

.product-center-card:hover .product-center-media img {
    transform: scale(1.035);
}

.product-center-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    min-height: 24px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    background: rgba(7, 42, 62, 0.94);
    color: #ffffff;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
}

.product-center-card-body {
    min-height: 244px;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
}

.product-center-card-body h2 {
    margin: 0;
    color: #111c29;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.product-center-card-body p {
    margin: 12px 0 0;
    color: #5e7486;
    font-size: 14px;
    line-height: 1.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-center-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.product-center-tags span {
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    background: #f2f6f8;
    color: #607486;
    font-size: 12px;
}

.product-center-foot {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.product-center-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #095f80;
    font-size: 15px;
    font-weight: 400;
}

.product-center-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.product-center-cta-card {
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #eef9ff 0%, #e9f5ff 100%);
}

.product-center-cta-icon {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 26px rgba(126, 151, 171, 0.16);
}

.product-center-cta-icon::before,
.product-center-cta-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #0c6880;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.product-center-cta-icon::before {
    width: 20px;
    height: 2px;
}

.product-center-cta-icon::after {
    width: 2px;
    height: 20px;
}

.product-center-cta-card h2 {
    margin: 26px 0 0;
    color: #102033;
    font-size: 28px;
    line-height: 1.26;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.product-center-cta-card p {
    max-width: 20em;
    margin: 14px 0 30px;
    color: #5c7183;
    font-size: 14px;
    line-height: 1.95;
}

.product-center-button {
    min-height: 52px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--cta-radius);
    font-size: 15px;
    font-weight: 400;
    transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out);
}

.product-center-button:hover {
    transform: translateY(-1px);
}

.product-center-button-primary {
    background: var(--cta-bg);
    color: var(--cta-text);
    box-shadow: var(--cta-shadow);
}

.product-center-button-secondary {
    border-color: rgba(24, 90, 113, 0.38);
    background: rgba(255, 255, 255, 0.72);
    color: #0a617b;
}

.product-center-empty {
    margin: 28px 0 0;
    color: #6f8395;
    font-size: 14px;
    text-align: center;
}

.product-center-bottom-cta {
    padding: 92px 0 104px;
    background: linear-gradient(180deg, #dff4ff 0%, #daf1ff 100%);
}

.product-center-bottom-cta-inner {
    text-align: center;
}

.product-center-bottom-cta-inner h2 {
    margin: 0;
    color: #101b28;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.product-center-bottom-cta-inner p {
    max-width: 700px;
    margin: 22px auto 0;
    color: #567083;
    font-size: 15px;
    line-height: 1.95;
}

.product-center-bottom-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.product-article-page {
    background: linear-gradient(180deg, #f7fbfe 0%, #eef5f9 100%);
}

.product-article-header {
    padding: 8px 0 18px;
}

.product-article-cover img {
    aspect-ratio: 1.62 / 1;
}

.product-article-capability-grid,
.product-article-scene-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.product-article-capability,
.product-article-scene,
.product-article-delivery-item {
    border-radius: 10px;
    border: 1px solid rgba(214, 225, 234, 0.98);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(111, 132, 148, 0.05);
}

.product-article-capability,
.product-article-scene {
    padding: 18px;
}

.product-article-capability span {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(180deg, #0d6f8f 0%, #0a5c75 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
}

.product-article-capability strong {
    display: block;
    margin-top: 14px;
    color: #122033;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.product-article-scene strong {
    display: block;
    color: #0c6880;
    font-size: 13px;
    font-weight: 400;
}

.product-article-scene p {
    margin: 10px 0 0;
    color: #5a7083;
    font-size: 14px;
    line-height: 1.85;
}

.product-article-delivery-list {
    display: grid;
    gap: 12px;
}

.product-article-delivery-item {
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}

.product-article-delivery-index {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #0d6f8f 0%, #0a5c75 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
}

.product-article-delivery-item p {
    margin: 0;
    color: #556a7d;
    font-size: 14px;
    line-height: 1.9;
}

.product-article-cta-bar {
    margin-top: 42px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 12px;
    border: 1px solid rgba(208, 223, 234, 0.98);
    background: linear-gradient(180deg, #edf8ff 0%, #e7f5ff 100%);
}

.product-article-cta-bar strong {
    color: #101e31;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
}

.product-article-cta-bar p {
    margin: 10px 0 0;
    color: #5b7183;
    font-size: 14px;
    line-height: 1.85;
}

.product-attachment-panel {
    margin-top: 28px;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 12px;
    border: 1px solid rgba(208, 223, 234, 0.98);
    background: #f8fcff;
}

.product-attachment-copy strong {
    display: block;
    color: #101e31;
    font-size: 18px;
    line-height: 1.4;
}

.product-attachment-copy p {
    margin: 8px 0 0;
    color: #5b7183;
    font-size: 14px;
    line-height: 1.8;
}

.product-article-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-article-related-tag {
    background: linear-gradient(180deg, #0d6f8f 0%, #0a5c75 100%);
}

.solution-case-page {
    background: linear-gradient(180deg, #f6fbff 0%, #edf6fb 100%);
}

.solution-case-header {
    padding-top: 20px;
}

.solution-case-meta-row {
    margin-top: 22px;
}

.solution-case-cover img {
    aspect-ratio: 1.72 / 1;
}

.solution-case-summary,
.solution-case-cta {
    border-radius: 20px;
}

.solution-case-meta-capsules {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.solution-case-meta-capsules span {
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #35546d;
    font-size: 13px;
    font-weight: 400;
    border: 1px solid rgba(196, 215, 229, 0.94);
}

.solution-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.solution-case-panel {
    padding: 24px 24px 22px;
    border-radius: 18px;
    border: 1px solid rgba(214, 225, 234, 0.98);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 28px rgba(111, 132, 148, 0.06);
}

.solution-case-panel h2 {
    margin: 0 0 16px;
    color: #101d2e;
    font-size: 22px;
    line-height: 1.35;
}

.solution-case-tags {
    margin-top: 0;
}

.solution-case-list {
    margin: 0;
    padding-left: 18px;
    color: #55697a;
}

.solution-case-list li {
    line-height: 1.9;
}

.solution-case-list li + li {
    margin-top: 8px;
}

.solution-case-list-result li::marker {
    color: #0f6f96;
}

.product-article-related-card .news-article-related-copy p {
    -webkit-line-clamp: 2;
}

@media (max-width: 1240px) {
    .product-center-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .product-center-toolbar,
    .product-article-cta-bar,
    .product-attachment-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-center-search {
        width: 100%;
        flex-basis: auto;
    }

    .product-article-meta,
    .product-article-capability-grid,
    .product-article-scene-grid,
    .solution-case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .product-center-hero {
        padding: 58px 0 42px;
    }

    .product-center-hero-inner {
        min-height: 0;
    }

    .product-center-grid {
        grid-template-columns: 1fr;
    }

    .product-center-card,
    .product-center-cta-card,
    .product-article-cta-bar,
    .product-attachment-panel,
    .solution-case-panel {
        border-radius: 10px;
    }

    .product-center-card-body,
    .product-center-cta-card,
    .product-article-cta-bar,
    .product-attachment-panel,
    .solution-case-panel {
        padding: 22px;
    }

    .solution-case-meta-capsules {
        justify-content: flex-start;
    }

    .product-center-cta-card h2 {
        font-size: 24px;
    }

    .product-center-bottom-cta {
        padding: 72px 0 80px;
    }

    .product-article-delivery-item {
        grid-template-columns: 1fr;
    }

    .product-article-delivery-index {
        width: 38px;
        height: 38px;
    }
}

.news-catalog-page {
    padding-top: 0;
}

.news-catalog-page .product-center-hero {
    margin-bottom: 34px;
}

.news-catalog-hero-inner {
    min-height: 270px;
}

.news-catalog-body {
    position: relative;
}

.company-about-hero-aligned {
    border-bottom: 1px solid rgba(211, 224, 236, 0.92);
}

.company-about-hero-aligned-inner {
    min-height: 320px;
}

@media (max-width: 760px) {
    .news-catalog-page .product-center-hero {
        margin-bottom: 26px;
    }

    .news-catalog-hero-inner,
    .company-about-hero-aligned-inner {
        min-height: 0;
    }

}

/* Motion polish */

.site-nav > a,
.nav-item-head > a,
.nav-item-trigger,
.nav-item-toggle,
.header-cta,
.news-catalog-tab,
.product-center-filter,
.news-catalog-page-btn,
.banner-arrow,
.service-detail-action-button,
.service-detail-action-button-strong,
.product-center-button,
.stitch-section-head a,
.product-center-link,
.news-catalog-link,
.news-article-related-foot a,
.refined-service-foot a,
.refined-support-card a,
.news-article-related-copy h3 a,
.product-article-related-card h3 a {
    transition:
        background-color 220ms var(--ease-out),
        border-color 220ms var(--ease-out),
        color 220ms var(--ease-out),
        opacity 220ms var(--ease-out),
        box-shadow 220ms var(--ease-out);
}

.button:active,
.header-cta:active,
.product-center-button:active,
.service-detail-action-button:active,
.service-detail-action-button-strong:active,
.news-catalog-tab:active,
.product-center-filter:active,
.news-catalog-page-btn:active,
.banner-arrow:active {
    opacity: 0.88;
}

@media (hover: hover) {
    .button:hover,
    .side-contact a:hover,
    .banner-panel-item:hover,
    .solution-rail-item:hover,
    .home-product-mini:hover,
    .home-product-main:hover,
    .platform-card:hover,
    .culture-card:hover,
    .sustainability-card:hover,
    .certificate-card:hover,
    .office-card:hover,
    .product-feature-card:hover,
    .product-card:hover,
    .news-home-item:hover,
    .news-line-item:hover,
    .stack-card:hover,
    .capability-board-item:hover,
    .product-tab:hover,
    .product-row:hover,
    .mini-related-card:hover,
    .news-home-timeline-item:hover,
    .case-menu-item:hover,
    .case-card:hover,
    .process-card:hover,
    .service-card-pro:hover,
    .product-catalog-card:hover,
    .scenario-card-pro:hover,
    .support-card-pro:hover,
    .news-related-card:hover,
    .process-flow-card:hover,
    .news-catalog-card:hover,
    .news-article-pager-card:hover,
    .news-article-related-card:hover,
    .service-detail-action-button:hover,
    .product-center-card:hover,
    .product-center-button:hover,
    .banner-arrow:hover {
        transform: none;
    }

    .solution-strip-item:hover {
        flex: 1;
        transform: none;
        box-shadow: var(--shadow);
    }

    .case-menu-item.active,
    .case-menu-item:hover {
        transform: none;
    }

    .stitch-service-card,
    .stitch-solution-lead,
    .stitch-solution-mini,
    .stitch-case-card,
    .stitch-home-cta-card,
    .refined-strip-card,
    .refined-service-card,
    .refined-note-card,
    .refined-support-card,
    .refined-process-card,
    .news-catalog-card,
    .news-article-pager-card,
    .news-article-related-card,
    .company-about-pillar,
    .company-about-cert-item,
    .company-about-contact-item,
    .product-center-card,
    .product-center-cta-card,
    .product-article-meta-card,
    .product-article-capability,
    .product-article-scene,
    .product-article-delivery-item,
    .product-article-cta-bar,
    .service-detail-reason-card,
    .service-detail-industry-card,
    .service-detail-case-card,
    .service-detail-flow-card,
    .service-detail-deliverable-card {
        transition:
            border-color 240ms var(--ease-out),
            background-color 240ms var(--ease-out),
            box-shadow 240ms var(--ease-out);
    }

    .stitch-service-card:hover,
    .stitch-solution-lead:hover,
    .stitch-solution-mini:hover,
    .stitch-case-card:hover,
    .stitch-home-cta-card:hover,
    .refined-strip-card:hover,
    .refined-service-card:hover,
    .refined-note-card:hover,
    .refined-support-card:hover,
    .refined-process-card:hover,
    .news-catalog-card:hover,
    .news-article-pager-card:hover,
    .news-article-related-card:hover,
    .company-about-pillar:hover,
    .company-about-cert-item:hover,
    .company-about-contact-item:hover,
    .product-center-card:hover,
    .product-center-cta-card:hover,
    .product-article-meta-card:hover,
    .product-article-capability:hover,
    .product-article-scene:hover,
    .product-article-delivery-item:hover,
    .product-article-cta-bar:hover,
    .service-detail-reason-card:hover,
    .service-detail-industry-card:hover,
    .service-detail-case-card:hover,
    .service-detail-flow-card:hover,
    .service-detail-deliverable-card:hover {
        box-shadow: 0 12px 24px rgba(95, 122, 146, 0.06);
    }

    .news-catalog-card:hover,
    .product-center-card:hover,
    .news-article-pager-card:hover,
    .news-article-related-card:hover,
    .case-card:hover,
    .process-card:hover,
    .service-card-pro:hover,
    .product-catalog-card:hover,
    .scenario-card-pro:hover,
    .support-card-pro:hover,
    .news-related-card:hover,
    .process-flow-card:hover {
        border-color: rgba(187, 205, 218, 0.9);
    }

    .news-catalog-card:hover .news-catalog-card-media img,
    .product-center-card:hover .product-center-media img,
    .stitch-about-support-card:hover img,
    .stitch-about-contact-card:hover img {
        transform: none;
        filter: none;
    }

    .stitch-section-head a:hover,
    .product-center-link:hover,
    .news-catalog-link:hover,
    .news-article-related-foot a:hover,
    .refined-service-foot a:hover,
    .refined-support-card a:hover,
    .news-article-related-copy h3 a:hover,
    .product-article-related-card h3 a:hover {
        color: #0b6f96;
    }
}

.article-markdown {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 2;
}

.article-markdown > :first-child {
    margin-top: 0;
}

.article-markdown > :last-child {
    margin-bottom: 0;
}

.article-markdown h1,
.article-markdown h2,
.article-markdown h3,
.article-markdown h4 {
    margin: 28px 0 12px;
    color: #0d6c93;
    letter-spacing: 0;
    line-height: 1.45;
    font-weight: 600;
}

.article-markdown h1 {
    font-size: 28px;
}

.article-markdown h2 {
    font-size: 22px;
}

.article-markdown h3 {
    font-size: 19px;
}

.article-markdown h4 {
    font-size: 17px;
}

.article-markdown p,
.article-markdown ul,
.article-markdown ol,
.article-markdown blockquote,
.article-markdown table,
.article-markdown pre {
    margin: 0 0 18px;
}

.article-markdown p {
    text-indent: 2em;
}

.article-markdown ul,
.article-markdown ol {
    padding-left: 2.8em;
    margin-left: 0;
}

.article-markdown li {
    font-size: inherit;
    line-height: inherit;
}

.article-markdown li + li {
    margin-top: 8px;
}

.article-markdown a {
    color: #0d6c93;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-markdown strong {
    color: #16212c;
    font-weight: 400;
}

.article-markdown blockquote {
    padding: 18px 22px;
    border-left: 3px solid #0f6f96;
    border-radius: 0 8px 8px 0;
    background: rgba(234, 242, 247, 0.92);
    color: #566b7e;
}

.article-markdown code {
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(227, 235, 244, 0.92);
    color: #234765;
    font-size: 0.92em;
}

.article-markdown pre {
    padding: 18px 20px;
    overflow-x: auto;
    border-radius: 12px;
    background: #0f1720;
    color: #e7eef8;
}

.article-markdown pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.article-markdown img {
    width: 70%;
    max-width: 100%;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 1px solid rgba(214, 225, 234, 0.98);
}

.article-markdown hr {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid rgba(214, 225, 234, 0.98);
}

.solution-case-page .article-markdown ul {
    margin-bottom: 20px;
}

.solution-case-page .article-markdown li + li {
    margin-top: 8px;
}

.article-markdown table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(214, 225, 234, 0.98);
}

.article-markdown th,
.article-markdown td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(214, 225, 234, 0.98);
    text-align: left;
}

.article-markdown th {
    background: rgba(241, 246, 251, 0.98);
    color: #182430;
}

@media (max-width: 760px) {
    .article-markdown img {
        width: 100%;
    }
}

