:root {
    --ink: #103b5a;
    --navy: #164c70;
    --blue: #0879c9;
    --aqua: #35cdd3;
    --mist: #e9f7fa;
    --paper: #fbfeff;
    --text: #18384f;
    --muted: #5c7486;
    --line: #d5e6ec;
    --header-h: 88px;
    --max: 1240px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    color-scheme: light
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font: 16px/1.65 "Microsoft YaHei", "PingFang SC", sans-serif
}

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

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

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 12px;
    padding: 9px 13px;
    background: #fff;
    color: var(--ink);
    transform: translateY(-180%)
}

.skip-link:focus {
    transform: translateY(0)
}

:focus-visible {
    outline: 3px solid #f5b642;
    outline-offset: 3px
}

.shell {
    width: min(var(--max), calc(100% - 48px));
    margin: auto
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--ink);
    transition: background-color .22s ease, color .22s ease, box-shadow .22s ease
}

.site-header.is-solid,
.site-header:hover,
.site-header:focus-within {
    background: #fffffff0;
    color: var(--ink);
    box-shadow: 0 2px 18px #103b5a18
}

.site-header.is-solid .nav-link,
.site-header:hover .nav-link,
.site-header:focus-within .nav-link {
    color: var(--text)
}

.home-page .site-header:not(.is-solid):not(:hover):not(:focus-within) {
    color: #fff
}

.nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    white-space: nowrap
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 0
}

.brand small {
    display: block;
    color: inherit;
    opacity: .68;
    font-size: 9px;
    letter-spacing: .08em
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-link,
.menu-trigger {
    border: 0;
    background: transparent;
    color: inherit;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 13px;
    font-size: 14px;
    cursor: pointer
}

.nav-link:hover,
.menu-trigger:hover {
    color: var(--aqua) !important
}

.menu-trigger svg {
    width: 14px;
    height: 14px;
    margin-left: 5px;
    transition: transform .18s ease
}

.menu-wrap {
    position: relative
}

.menu-wrap:focus-within svg,
.menu-wrap:hover svg {
    transform: rotate(180deg)
}

.submenu {
    position: absolute;
    top: 44px;
    left: 0;
    display: none;
    width: 220px;
    padding: 8px;
    background: #fff;
    color: var(--text);
    box-shadow: 0 16px 35px #103b5a26
}

.menu-wrap:hover .submenu,
.menu-wrap:focus-within .submenu,
.submenu.is-open {
    display: block
}

.submenu a {
    display: block;
    padding: 10px 12px;
    font-size: 14px
}

.submenu a:hover {
    background: var(--mist);
    color: var(--blue)
}

.submenu .submenu-overview {
    margin-bottom: 4px;
    color: #0f6c8e;
    border-bottom: 1px solid var(--line);
    font-weight: 800
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease
}

.nav-cta,
.button.primary {
    background: var(--aqua);
    color: var(--ink)
}

.nav-cta:hover,
.button.primary:hover {
    transform: translateY(-2px);
    background: #8aebed
}

.button.outline {
    border-color: currentColor;
    color: inherit
}

.button.outline:hover {
    background: #fff;
    color: var(--ink)
}

.menu-toggle {
    display: none;
    min-width: 44px;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: inherit;
    position: relative;
    font-size: 0
}

@media(max-width:1180px) {
    .menu-toggle {
        border: 1px solid currentColor;
        background-image: none;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .08em
    }

    .menu-toggle::before,
    .menu-toggle::after {
        display: none !important
    }
}

.menu-toggle::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 12px;
    width: 20px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor
}

.site-header.is-open .menu-toggle::before {
    top: 21px;
    box-shadow: none;
    transform: rotate(45deg)
}

.site-header.is-open .menu-toggle::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 12px;
    width: 20px;
    height: 2px;
    background: currentColor;
    transform: rotate(-45deg)
}

.hero {
    position: relative;
    min-height: 100svh;
    color: #fff;
    background: #14354a;
    overflow: hidden
}

.hero::after {
    display: none
}

.hero-media {
    position: absolute;
    inset: 0
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding: 130px 0 72px
}

.hero-content > div {
    width: 100%;
    min-width: 0;
    max-width: 100%
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .14em;
    color: var(--aqua);
    font-weight: 800
}

.hero h1 {
    max-width: 710px;
    margin: 18px 0;
    font: 600 clamp(48px, 6vw, 88px)/1.06 Georgia, "Songti SC", serif;
    letter-spacing: -.055em;
    text-shadow: 0 3px 20px #031525b3
}

.hero p {
    width: min(590px, 100%);
    max-width: 590px;
    color: #dceef2;
    font-size: 18px;
    overflow-wrap: anywhere
}

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

.scroll-cue {
    position: absolute;
    z-index: 1;
    bottom: 25px;
    left: 50%;
    min-height: 44px;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: .08em;
    transform: translateX(-50%);
    transition: color .2s ease, background-color .2s ease
}

.scroll-cue:hover {
    background: #ffffff1f;
    color: #fff
}

.product-stage {
    position: relative;
    min-height: calc(100svh - var(--header-h));
    scroll-margin-top: var(--header-h);
    color: #fff;
    overflow: hidden;
    background: #14354a
}

.media-layer {
    position: absolute;
    inset: 0
}

.media-layer img,
.media-layer video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover
}

.media-layer img {
    opacity: 1;
    filter: none
}

.media-layer video {
    opacity: 1;
    filter: none
}

.media-layer::after {
    display: none
}

.stage-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: calc(100svh - var(--header-h));
    align-items: center;
    padding: 110px 0 66px
}

.product-index {
    color: #08768f;
    font: 13px/1 Georgia, serif;
    letter-spacing: .16em
}

.stage-content h2 {
    max-width: 660px;
    margin: 17px 0;
    font: 600 clamp(42px, 5vw, 72px)/1.1 Georgia, "Songti SC", serif;
    letter-spacing: -.055em;
    text-shadow: 0 3px 20px #031525b3
}

.stage-content p {
    max-width: 485px;
    color: #dceef2;
    font-size: 17px
}

.stage-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 24px 0
}

.stage-meta span {
    padding: 5px 9px;
    border: 1px solid #ffffff8a;
    color: #f0fbfc;
    font-size: 12px
}

.section {
    padding: 105px 0
}

.section.dark {
    color: var(--ink);
    background: #eaf8fb
}

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

.section-head h2 {
    margin: 9px 0 0;
    font: 600 clamp(34px, 4vw, 54px)/1.15 Georgia, "Songti SC", serif;
    letter-spacing: -.045em
}

.section-head p {
    max-width: 430px;
    margin: 0;
    color: var(--muted)
}

.section.dark .section-head p {
    color: var(--muted)
}

.link-arrow {
    font-weight: 800;
    color: var(--blue);
    font-size: 14px
}

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

.solution-card,
.update-card {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--line)
}

.solution-card h3,
.update-card h3 {
    margin: 22px 0 8px;
    font-size: 21px
}

.solution-card p,
.update-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.card-index {
    color: var(--blue);
    font: 22px Georgia, serif
}

.update-card time {
    color: #3a86b5;
    font-size: 12px;
    font-weight: 800
}

.partner-section {
    padding: 96px 0;
    background: #fff
}

.partner-grid {
    display: flex;
    width: max-content;
    align-items: center;
    padding: 14px 0;
    margin: 0;
    list-style: none;
    animation: partner-marquee 30s linear infinite;
    will-change: transform
}

.partner-grid li {
    display: grid;
    flex: 0 0 clamp(170px, 18vw, 240px);
    min-height: 92px;
    place-items: center;
    padding: 12px 28px
}

.partner-grid img {
    display: block;
    width: auto;
    max-width: 152px;
    max-height: 68px;
    object-fit: contain
}

.partner-marquee {
    overflow: hidden
}

@keyframes partner-marquee {
    to {
        transform: translateX(var(--partner-loop-distance, 0px))
    }
}

.about-panel {
    padding: 32px;
    border: 1px solid #c9e2e8;
    background: #fff;
    box-shadow: 0 14px 30px #0b506012
}

.about-panel h3 {
    font: 29px/1.25 Georgia, "Songti SC", serif;
    margin: 0 0 15px
}

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

.footer {
    padding: 56px 0 20px;
    background: #06111f;
    color: #b5c7d1;
    font-size: 13px
}

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

.footer h3 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 14px
}

.footer a {
    display: block;
    width: fit-content;
    margin: 7px 0;
    transition: color .18s ease
}

.footer a:hover {
    color: var(--aqua)
}

.footer .brand {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    color: #fff
}

.footer .brand img {
    width: 58px;
    height: 58px
}

.footer-intro {
    max-width: 330px;
    margin: 15px 0 0;
    color: #91a9b7
}

.footer-details {
    max-width: 350px;
    margin: 16px 0 0;
    color: #a7bdc8;
    font-style: normal;
    line-height: 1.7
}

.footer-details p {
    margin: 4px 0
}

.footer-details a {
    display: inline;
    margin: 0;
    color: #d7e6ed
}

.footer-details strong {
    color: #fff;
    font-weight: 600
}

.footer-contact {
    display: block;
    max-width: 316px;
    margin-top: 20px !important;
    padding-top: 15px;
    border-top: 1px solid #ffffff20;
    color: #d7e6ed
}

.footer-contact span {
    display: block;
    color: #89b7c7;
    font-size: 11px;
    letter-spacing: .08em
}

.footer-contact strong {
    display: block;
    margin-top: 3px;
    color: #fff;
    font-size: 14px
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 42px;
    padding-top: 17px;
    border-top: 1px solid #ffffff20;
    color: #7892a0;
    font-size: 12px
}

.footer-bottom a {
    margin: 0;
    color: #b5c7d1
}

.footer-registration {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px
}

.footer .footer-registration-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    white-space: nowrap
}

.footer-registration-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px
}

.page-hero {
    padding: 190px 0 88px;
    color: var(--ink);
    background: linear-gradient(120deg, #e9f9fb, #d9f2f7 52%, #f9feff)
}

.page-hero h1 {
    margin: 15px 0;
    font: 600 clamp(45px, 5vw, 74px)/1.1 Georgia, "Songti SC", serif;
    letter-spacing: -.05em
}

.page-hero p {
    width: min(640px, 100%);
    max-width: 640px;
    color: var(--muted);
    font-size: 18px;
    overflow-wrap: anywhere
}

.catalog-back {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-bottom: 22px;
    color: #0b6f93;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 800;
    transition: color .18s ease, transform .18s ease
}

.catalog-back::before {
    content: "←";
    margin-right: 8px;
    font-size: 18px;
    line-height: 1
}

.catalog-back:hover {
    color: var(--ink);
    transform: translateX(-3px)
}

.catalog-back[hidden],
.product-catalog[hidden] {
    display: none !important
}

.product-catalog {
    padding: 32px 0 96px;
    background: var(--paper)
}

.product-filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0 32px;
    border-top: 1px solid var(--line)
}

.product-filterbar button {
    min-height: 42px;
    padding: 0 14px;
    color: #426276;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    transition: color .18s ease, border-color .18s ease, background-color .18s ease
}

.product-filterbar button:hover,
.product-filterbar button.is-active {
    color: var(--ink);
    border-color: var(--aqua);
    background: #dcf7f7
}

.product-filterbar span {
    margin-left: 6px;
    color: #0f6c8e;
    font-size: 12px
}

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

.product-catalog-card {
    display: flex;
    min-height: 288px;
    flex-direction: column;
    border: 1px solid var(--line);
    background: #fff;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease
}

.product-catalog-card:hover {
    border-color: #86cdd9;
    box-shadow: 0 16px 34px #103b5a12;
    transform: translateY(-4px)
}

.product-catalog-card[hidden] {
    display: none
}

.product-card-summary {
    display: flex;
    min-height: 0;
    flex: 1;
    gap: 20px;
    padding: 28px 26px 20px
}

.product-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    color: #0b7897;
    border: 1px solid #bbdfE7;
    background: #effbfd
}

.product-icon svg {
    width: 31px;
    height: 31px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5
}

.catalog-card-body {
    min-width: 0
}

.catalog-card-body h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.3
}

.catalog-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75
}

.product-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    margin: 0 26px;
    color: var(--ink);
    border-top: 1px solid var(--line);
    font-size: 14px;
    font-weight: 800
}

.product-card-action span {
    color: #0f6c8e;
    font-size: 20px;
    transition: transform .18s ease
}

.product-catalog-card:hover .product-card-action span {
    transform: translateX(4px)
}

.product-detail {
    padding: 76px 0 96px;
    background: var(--paper)
}

.product-detail[hidden] {
    display: none !important
}

.product-overview {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
    padding-bottom: 78px
}

.product-overview-media {
    width: 100%;
    aspect-ratio: 16/10;
    background: #d9f0f5
}

.product-overview-media img,
.product-overview-media video,
.product-overview-media .product-cover-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-overview h2,
.product-section h2,
.governance-band h2,
.product-cta h2 {
    margin: 10px 0 16px;
    font: 600 clamp(32px, 3.5vw, 50px)/1.18 Georgia, "Songti SC", serif;
    letter-spacing: -.03em
}

.product-overview p {
    max-width: 580px;
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 17px
}

.product-resource-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px
}

.product-resource-actions .button {
    min-height: 42px;
    padding: 0 15px;
    font-size: 14px
}

.button.secondary {
    background: var(--ink);
    color: #fff
}

.button.secondary:hover {
    background: #173c59;
    transform: translateY(-2px)
}

.product-section {
    padding: 74px 0;
    border-top: 1px solid var(--line)
}

.product-section-tint {
    margin: 0 calc((100vw - min(var(--max), calc(100vw - 48px))) / -2);
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
    background: var(--mist)
}

.product-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
    align-items: end;
    gap: 36px;
    margin-bottom: 34px
}

.product-section-head h2 {
    margin-bottom: 0
}

.product-section-head p {
    max-width: 420px;
    margin: 0;
    color: var(--muted)
}

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

.capability-card,
.scenario-grid article {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--line);
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease
}

.capability-card:hover,
.scenario-grid article:hover {
    border-color: #8dcddd;
    box-shadow: 0 14px 30px #102b3c12;
    transform: translateY(-3px)
}

.capability-card span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 3px 9px;
    color: #0f6c8e;
    background: #e6f7f8;
    font-size: 12px;
    font-weight: 800
}

.capability-card h3,
.scenario-grid h3 {
    margin: 22px 0 9px;
    font-size: 21px
}

.capability-card p,
.scenario-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.workflow-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: workflow
}

.workflow-list li {
    position: relative;
    min-height: 178px;
    padding: 54px 24px 20px;
    border-top: 1px solid #9abac5;
    counter-increment: workflow
}

.workflow-list li::before {
    content: counter(workflow, decimal-leading-zero);
    position: absolute;
    top: 14px;
    left: 24px;
    color: #0f6c8e;
    font: 18px Georgia, serif
}

.workflow-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 9px;
    right: -5px;
    width: 10px;
    height: 10px;
    border: solid #0f6c8e;
    border-width: 0 1px 1px 0;
    transform: rotate(-45deg)
}

.workflow-list h3 {
    margin: 0 0 9px;
    font-size: 19px
}

.workflow-list p {
    margin: 0;
    color: #516f7f;
    font-size: 14px
}

.governance-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
    gap: 54px;
    margin: 74px 0 0;
    padding: 52px;
    color: var(--ink);
    border: 1px solid #c9e5eb;
    background: #e4f6f8
}

.governance-band .eyebrow {
    color: #08768f
}

.governance-band h2 {
    max-width: 590px
}

.governance-band p {
    max-width: 590px;
    margin: 0;
    color: var(--muted)
}

.governance-band ul {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none
}

.governance-band li {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 18px;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid #bcdbe3
}

.governance-band li:first-child {
    padding-top: 0
}

.governance-band li:last-child {
    padding-bottom: 0;
    border-bottom: 0
}

.governance-band strong {
    color: #08768f
}

.governance-band span {
    color: #4f7182;
    font-size: 14px
}

.product-cta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    padding: 78px 0 0
}

.product-cta h2 {
    margin-bottom: 8px
}

.product-cta p {
    max-width: 600px;
    margin: 0;
    color: var(--muted)
}

.product-cta .button {
    flex: 0 0 auto
}

.manual-detail {
    padding: 76px 0 96px;
    background: var(--paper)
}

.manual-detail[hidden] {
    display: none !important
}

.manual-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
    gap: 48px;
    align-items: end;
    padding-bottom: 58px
}

.manual-intro h2,
.manual-section h2,
.manual-cta h2 {
    margin: 10px 0 0;
    font: 600 clamp(32px, 3.5vw, 48px)/1.18 Georgia, "Songti SC", serif;
    letter-spacing: -.03em
}

.manual-intro p {
    max-width: 470px;
    margin: 0;
    color: var(--muted)
}

.manual-section {
    padding: 52px 0;
    border-top: 1px solid var(--line)
}

.manual-section h2 {
    margin-bottom: 28px;
    font-size: clamp(27px, 3vw, 38px)
}

.manual-checklist {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none
}

.manual-checklist li {
    position: relative;
    min-height: 132px;
    padding: 24px 24px 24px 50px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    font-size: 14px
}

.manual-checklist li::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 24px;
    width: 12px;
    height: 12px;
    border: 2px solid #0f6c8e;
    border-radius: 50%
}

.manual-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: manual-step
}

.manual-steps li {
    min-height: 168px;
    padding: 26px;
    background: var(--mist);
    counter-increment: manual-step
}

.manual-steps li::before {
    content: counter(manual-step, decimal-leading-zero);
    display: block;
    margin-bottom: 24px;
    color: #0f6c8e;
    font: 18px Georgia, serif
}

.manual-steps strong,
.manual-steps span {
    display: block
}

.manual-steps strong {
    margin-bottom: 8px;
    font-size: 18px
}

.manual-steps span {
    color: var(--muted);
    font-size: 14px
}

.manual-note {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding: 42px;
    border: 1px solid #c9e5eb;
    background: #e4f6f8;
    color: var(--ink)
}

.manual-note h2 {
    margin: 0
}

.manual-note p {
    max-width: 680px;
    margin: 0;
    color: var(--muted)
}

.manual-cta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    padding-top: 72px
}

.manual-cta h2 {
    margin-bottom: 8px
}

.manual-cta p {
    max-width: 600px;
    margin: 0;
    color: var(--muted)
}

.contact-request-notice {
    margin: 0 0 20px;
    padding: 12px 14px;
    border-left: 3px solid #0f6c8e;
    background: #e8f5f7;
    color: #184b62;
    font-size: 14px
}

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

.article-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 22px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line)
}

.article-item time {
    color: var(--blue);
    font-weight: 800
}

.article-item h2 {
    margin: 0 0 8px;
    font-size: 22px
}

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

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px
}

.contact-form {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line)
}

.field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px
}

.contact-form .field[hidden] {
    display: none !important
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.6
}

.consent-field input {
    width: auto;
    min-height: auto;
    margin-top: 4px;
    padding: 0
}

.privacy-notice {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #c8d6df;
    background: #fff
}

.field textarea {
    min-height: 120px;
    resize: vertical
}

.form-status {
    min-height: 24px;
    margin: 12px 0 0;
    color: #0a735f;
    font-size: 14px
}

.error {
    color: #b42318
}

.mobile-only {
    display: none
}

@media(max-width:1180px) {
    .nav {
        gap: 0
    }

    .nav-menu,
    .nav-cta {
        display: none
    }

    .nav .brand,
    .nav .brand span {
        min-width: 0
    }

    .nav .brand span {
        overflow: hidden;
        text-overflow: ellipsis
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }
}

@media(max-width:900px) {
    .nav-menu {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .site-header.is-open {
        background: #fff;
        color: var(--ink);
        box-shadow: 0 2px 18px #103b5a18
    }

    .site-header.is-open .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        display: grid;
        width: 100%;
        padding: 14px 24px;
        background: #fff;
        color: var(--ink);
        box-shadow: 0 14px 30px #103b5a1c
    }

    .site-header.is-open .submenu {
        position: static;
        width: auto;
        box-shadow: none
    }

    .site-header.is-open .menu-wrap:hover .submenu {
        display: block
    }

    .site-header.is-open .nav-link,
    .site-header.is-open .menu-trigger {
        color: var(--text)
    }

    .hero h1 {
        font-size: 58px
    }

    .solution-grid,
    .update-grid {
        grid-template-columns: 1fr
    }

    .manual-intro,
    .manual-note {
        grid-template-columns: 1fr
    }

    .product-overview,
    .contact-layout {
        grid-template-columns: 1fr
    }

    .product-section-head,
    .governance-band {
        grid-template-columns: 1fr
    }

    .product-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .workflow-list {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

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

}

@media(max-width:560px) {
    .shell {
        width: min(100% - 32px, var(--max))
    }

    .brand {
        font-size: 14px
    }

    .brand img {
        width: 44px;
        height: 44px
    }

    .nav-cta {
        display: none
    }

    .hero h1 {
        font-size: 46px
    }

    .hero p {
        width: calc(100vw - 56px);
        max-width: 334px;
        font-size: 15px;
        overflow-wrap: anywhere;
        word-break: break-all
    }

    .page-hero p {
        width: calc(100vw - 56px);
        max-width: 334px;
        font-size: 15px;
        overflow-wrap: anywhere;
        word-break: break-all
    }

    .stage-content h2 {
        font-size: 43px
    }

    .section {
        padding: 72px 0
    }

    .section-head {
        display: block
    }

    .section-head p {
        margin-top: 15px
    }

    .product-stage,
    .stage-content {
        min-height: 78svh
    }

    .stage-content {
        align-items: end;
        padding-bottom: 55px
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 12px
    }

    .footer-grid > :first-child {
        grid-column: 1 / -1
    }

    .footer-grid > div:not(:first-child) {
        min-width: 0
    }

    .footer-grid > div:not(:first-child) a {
        width: auto;
        font-size: 12px;
        overflow-wrap: anywhere
    }

    .footer h3 {
        font-size: 13px
    }

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

    .article-item {
        grid-template-columns: 1fr
    }

    .page-hero {
        padding-top: 150px
    }

    .product-detail {
        padding: 58px 0 72px
    }

    .product-catalog {
        padding: 24px 0 72px
    }

    .product-filterbar {
        padding-bottom: 24px
    }

    .product-filterbar button {
        flex: 1 1 calc(50% - 4px);
        padding: 0 10px
    }

    .product-catalog-grid {
        grid-template-columns: 1fr
    }

    .product-catalog-card {
        min-height: 0
    }

    .product-card-summary {
        padding: 24px 20px 16px
    }

    .product-card-action {
        margin: 0 20px
    }

    .product-overview {
        padding-bottom: 56px
    }

    .product-section {
        padding: 56px 0
    }

    .product-section-tint {
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px;
        padding-left: 16px
    }

    .capability-grid,
    .scenario-grid,
    .workflow-list {
        grid-template-columns: 1fr
    }

    .capability-card,
    .scenario-grid article {
        min-height: 0
    }

    .workflow-list li {
        min-height: 0;
        padding: 48px 18px 22px
    }

    .workflow-list li::before {
        left: 18px
    }

    .workflow-list li:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -5px;
        left: 23px;
        transform: rotate(45deg)
    }

    .governance-band {
        gap: 30px;
        margin-top: 56px;
        padding: 32px 24px
    }

    .governance-band li {
        grid-template-columns: 1fr;
        gap: 3px
    }

    .product-cta {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 56px
    }

    .partner-section {
        padding: 72px 0
    }

    .manual-detail {
        padding: 58px 0 72px
    }

    .manual-intro {
        gap: 20px;
        padding-bottom: 44px
    }

    .manual-section {
        padding: 44px 0
    }

    .manual-checklist,
    .manual-steps {
        grid-template-columns: 1fr
    }

    .manual-checklist li,
    .manual-steps li {
        min-height: 0
    }

    .manual-note {
        gap: 18px;
        padding: 28px 24px
    }

    .manual-cta {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 52px
    }

    .product-resource-actions {
        display: grid;
        width: min(100%, 280px)
    }

    .product-resource-actions .button {
        width: 100%
    }

    .mobile-only {
        display: block
    }
}

@media(max-width:360px) {
    .brand {
        gap: 8px;
        font-size: 12px
    }

    .brand img {
        width: 36px;
        height: 36px
    }

    .brand small {
        display: none
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .site-header,
    .nav-link,
    .menu-trigger,
    .nav-cta,
    .button,
    .media-layer img {
        transition: none !important;
        animation: none !important
    }

    .media-layer video {
        transition: none !important;
        animation: none !important
    }
}

body {
    overflow-x: hidden
}

@media(max-width:900px) {
    .menu-toggle {
        display: block !important;
        margin-left: auto !important
    }
}

@media(max-width:560px) {
    .shell {
        width: calc(100% - 32px) !important
    }

    .brand {
        max-width: calc(100vw - 96px)
    }

    .brand span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis
    }

}

.product-filter-label {
    min-height: 42px;
    padding: 10px 14px;
    margin: 0;
    color: var(--ink);
    border: 1px solid var(--aqua);
    background: #dcf7f7;
    font-size: 14px;
    font-weight: 800
}

.product-filter-label span {
    margin-left: 6px;
    color: #0f6c8e;
    font-size: 12px
}

.product-api-status {
    min-height: 26px;
    margin: 0 0 22px;
    color: var(--muted)
}

.product-api-status.is-error {
    padding: 13px 15px;
    color: #8c2b20;
    border-left: 3px solid #c85b4a;
    background: #fff4f1
}

.product-card-cover {
    display: block;
    object-fit: cover;
    background: #d9f0f5
}

.product-cover-fallback {
    display: grid;
    place-items: center;
    padding: 5px;
    color: #0f6c8e;
    background: #effbfd;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center
}

.product-overview-media .product-cover-fallback {
    padding: 24px;
    color: #14354a;
    font-size: 15px
}

.product-media-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    margin: 0;
    color: #fff;
    background: #14354a;
    font-weight: 700;
    text-align: center
}

.product-cms-content {
    max-width: 860px;
    padding: 46px 0 0;
    margin: 0 auto;
    border-top: 1px solid var(--line)
}

.product-cms-content h2,
.product-cms-content h3,
.product-cms-content h4 {
    margin: 44px 0 14px;
    color: var(--ink);
    font-family: Georgia, "Songti SC", serif;
    line-height: 1.3
}

.product-cms-content h2 {
    font-size: clamp(29px, 3vw, 42px)
}

.product-cms-content h3 {
    font-size: clamp(23px, 2.4vw, 32px)
}

.product-cms-content p,
.product-cms-content li,
.product-cms-content blockquote {
    color: var(--muted);
    font-size: 17px
}

.product-cms-content p,
.product-cms-content ul,
.product-cms-content ol,
.product-cms-content blockquote,
.product-cms-content figure {
    margin: 0 0 22px
}

.product-cms-section {
    margin: 0 0 46px
}

.product-cms-section > :last-child {
    margin-bottom: 0
}

.product-cms-section figure {
    margin: 0
}

.product-cms-section img,
.product-cms-section video {
    display: block;
    width: min(100%, 960px);
    height: auto;
    margin: 0 auto;
    background: #0b1220;
    object-fit: contain
}

.product-cms-section video {
    aspect-ratio: 16 / 9
}

.product-cms-section audio {
    display: block;
    width: min(100%, 720px);
    margin: 22px auto 0
}

.product-cms-section figcaption,
.product-cms-section-description {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7
}

.product-cms-content ul,
.product-cms-content ol {
    padding-left: 24px
}

.product-cms-content li + li {
    margin-top: 8px
}

.product-cms-content blockquote {
    padding: 18px 22px;
    border-left: 3px solid var(--aqua);
    background: var(--mist)
}

.product-cms-content a {
    color: #0b6f93;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px
}

.product-cms-content img {
    display: block;
    width: 100%;
    height: auto
}

@media(max-width:560px) {
    .product-cms-content {
        padding-top: 34px
    }

    .product-cms-content p,
    .product-cms-content li,
    .product-cms-content blockquote {
        font-size: 16px
    }
}
