:root {
    --website-bg: #0b0d0c;
    --website-surface: #111412;
    --website-surface-strong: #171b18;
    --website-text: #f4f7f4;
    --website-muted: #9aa49c;
    --website-line: rgba(255, 255, 255, .12);
    --website-accent: #55e68a;
    --website-accent-alt: #69d7e5;
    --website-max-width: 1200px;
    --website-header-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--website-header-height) + 20px);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--website-bg);
    color: var(--website-text);
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    pointer-events: none;
}

body::after {
    position: fixed;
    top: -260px;
    right: -220px;
    z-index: -1;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: rgba(85, 230, 138, .09);
    filter: blur(100px);
    content: "";
    pointer-events: none;
}

[v-cloak] {
    display: none;
}

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--website-accent-alt);
    outline-offset: 4px;
}

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

.website-noscript {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(85, 230, 138, .3);
    background: #151b17;
    color: var(--website-text);
    text-align: center;
}

.website-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    height: var(--website-header-height);
    border-bottom: 1px solid transparent;
    transition: background .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}

.website-header.is-scrolled {
    border-color: var(--website-line);
    background: rgba(11, 13, 12, .88);
    backdrop-filter: blur(18px);
}

.website-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.website-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.website-brand__logo {
    display: inline-flex;
    overflow: hidden;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(85, 230, 138, .48);
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(85, 230, 138, .2), rgba(105, 215, 229, .08));
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-weight: 800;
}

.website-brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.website-brand__name {
    overflow: hidden;
    max-width: 240px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.website-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.website-nav > a {
    position: relative;
    color: #bdc5bf;
    font-size: 14px;
    transition: color .18s ease;
}

.website-nav > a:not(.website-nav__action)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--website-accent);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .18s ease, transform .18s ease;
}

.website-nav > a:hover {
    color: var(--website-text);
}

.website-nav > a.is-active {
    color: var(--website-accent);
}

.website-nav > a:not(.website-nav__action):hover::after,
.website-nav > a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.website-nav__action {
    padding: 9px 16px;
    border: 1px solid var(--website-accent);
    border-radius: 4px;
    color: var(--website-accent) !important;
}

.website-nav__action:hover {
    background: var(--website-accent);
    color: #07100a !important;
}

.website-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--website-line);
    border-radius: 4px;
    background: var(--website-surface);
    cursor: pointer;
}

.website-menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: var(--website-text);
    transition: transform .18s ease;
}

.website-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    padding: calc(var(--website-header-height) + 104px) 0 96px;
    border-bottom: 1px solid var(--website-line);
}

.website-hero::before {
    position: absolute;
    top: 23%;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(85, 230, 138, .28), transparent);
    content: "";
}

.website-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    align-items: center;
    gap: 80px;
}

.website-hero__grid.is-single {
    grid-template-columns: minmax(0, 800px);
}

.website-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
}

.website-section-label::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.website-hero h1 {
    max-width: 760px;
    margin: 24px 0 26px;
    font-size: 64px;
    font-weight: 650;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.website-hero__content > p {
    max-width: 640px;
    margin: 0;
    color: var(--website-muted);
    font-size: 18px;
    line-height: 1.9;
    white-space: pre-line;
}

.website-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.website-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.website-button:hover {
    transform: translateY(-2px);
}

.website-button--primary {
    background: var(--website-accent);
    color: #07100a;
}

.website-button--primary:hover {
    background: #75efa1;
}

.website-button--ghost {
    border-color: var(--website-line);
    background: rgba(255, 255, 255, .02);
    color: var(--website-text);
}

.website-button--ghost:hover {
    border-color: rgba(85, 230, 138, .48);
}

.website-button--dark {
    border-color: rgba(7, 16, 10, .3);
    background: #0b1910;
    color: var(--website-accent);
}

.website-button--dark:hover {
    background: #102417;
}

.website-hero__visual {
    position: relative;
}

.website-hero__visual::before {
    position: absolute;
    inset: -32px;
    border: 1px solid rgba(85, 230, 138, .08);
    content: "";
    transform: rotate(3deg);
}

.website-terminal {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(85, 230, 138, .24);
    border-radius: 6px;
    background: rgba(17, 20, 18, .92);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.website-terminal__head {
    display: flex;
    height: 46px;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-bottom: 1px solid var(--website-line);
}

.website-terminal__head > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4a514c;
}

.website-terminal__head > span:first-child {
    background: var(--website-accent);
}

.website-terminal__head em {
    margin-left: auto;
    color: #68716a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    font-style: normal;
}

.website-terminal__body {
    padding: 22px;
}

.website-terminal__body > div {
    display: grid;
    grid-template-columns: 38px 104px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 68px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.website-terminal__body > div:last-child {
    border-bottom: 0;
}

.website-terminal__body i,
.website-terminal__body strong {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-style: normal;
}

.website-terminal__body i {
    color: #606862;
    font-size: 11px;
}

.website-terminal__body strong {
    color: var(--website-accent);
    font-size: 12px;
    letter-spacing: .08em;
}

.website-terminal__body span {
    color: var(--website-muted);
    font-size: 13px;
}

.website-section {
    padding: 112px 0;
    border-bottom: 1px solid var(--website-line);
}

.website-section--surface {
    background: rgba(255, 255, 255, .018);
}

.website-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: end;
    gap: 48px;
    margin-bottom: 52px;
}

.website-section__head h2,
.website-about h2,
.website-contact h2 {
    margin: 16px 0 0;
    font-size: 46px;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.website-section__head > p {
    margin: 0;
    color: var(--website-muted);
    line-height: 1.9;
}

.website-section__summary > p {
    margin: 0;
    color: var(--website-muted);
    line-height: 1.9;
}

.website-section__summary > a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--website-accent);
    font-size: 14px;
    font-weight: 700;
}

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

.website-service-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 28px;
    border: 1px solid var(--website-line);
    border-radius: 6px;
    background: var(--website-surface);
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.website-service-card:hover {
    border-color: rgba(85, 230, 138, .42);
    background: var(--website-surface-strong);
    transform: translateY(-4px);
}

.website-service-card__number {
    margin-bottom: 54px;
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
}

.website-service-card__image {
    width: 100%;
    height: 120px;
    margin: -24px 0 24px;
    border-radius: 4px;
    object-fit: cover;
    filter: saturate(.7) brightness(.8);
}

.website-card-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--website-accent-alt);
    font-size: 12px;
    letter-spacing: .08em;
}

.website-service-card h3,
.website-case-card h3,
.website-team-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.35;
}

.website-service-card h2 {
    margin: 0;
    font-size: 23px;
    line-height: 1.35;
}

.website-service-card p,
.website-team-card p {
    margin: 16px 0 0;
    color: var(--website-muted);
    white-space: pre-line;
}

.website-case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.website-case-card {
    overflow: hidden;
    border: 1px solid var(--website-line);
    border-radius: 6px;
    background: var(--website-surface);
}

.website-case-card.is-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
}

.website-case-card__media {
    display: flex;
    min-height: 260px;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(85, 230, 138, .16), transparent 54%),
        repeating-linear-gradient(0deg, transparent 0 23px, rgba(255, 255, 255, .025) 24px),
        #151916;
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    letter-spacing: .14em;
}

.website-case-card.is-featured .website-case-card__media {
    min-height: 100%;
}

.website-case-card__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    filter: saturate(.72) brightness(.75);
    transition: filter .25s ease, transform .3s ease;
}

.website-case-card:hover .website-case-card__media img {
    filter: saturate(.9) brightness(.86);
    transform: scale(1.015);
}

.website-case-card__content {
    padding: 30px;
}

.website-case-card__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: .08em;
}

.website-case-card__content > p {
    color: var(--website-muted);
    white-space: pre-line;
}

.website-case-card dl {
    margin: 24px 0 0;
}

.website-case-card dl > div {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.website-case-card dt {
    color: var(--website-accent-alt);
    font-size: 12px;
}

.website-case-card dd {
    margin: 0;
    color: var(--website-muted);
    font-size: 14px;
    white-space: pre-line;
}

.website-case-card__content > a {
    display: inline-flex;
    gap: 8px;
    margin-top: 24px;
    color: var(--website-accent);
    font-weight: 700;
}

.website-case-card--summary .website-case-card__media {
    min-height: 220px;
}

.website-case-card--summary .website-case-card__media img {
    min-height: 220px;
}

.website-case-card--summary .website-case-card__content {
    display: flex;
    min-height: 290px;
    flex-direction: column;
}

.website-case-card--summary .website-case-card__content > a {
    margin-top: auto;
    padding-top: 24px;
}

.website-technology-groups {
    display: grid;
    gap: 18px;
}

.website-technology-group {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid var(--website-line);
}

.website-technology-group h3 {
    margin: 0;
    font-size: 18px;
}

.website-technology-group h2 {
    margin: 0;
    font-size: 20px;
}

.website-technology-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.website-technology-directory-list .website-technology-group {
    grid-template-columns: 1fr;
}

.website-technology-directory-list .website-technology-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.website-technology-item {
    display: flex;
    min-height: 112px;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 5px;
    background: rgba(255, 255, 255, .018);
    color: inherit;
    text-decoration: none;
    transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.website-technology-item:hover,
.website-technology-item:focus-visible {
    border-color: rgba(85, 230, 138, .48);
    background: rgba(85, 230, 138, .055);
    transform: translateY(-2px);
}

.website-technology-item.is-highlighted {
    border-color: rgba(85, 230, 138, .32);
    background: rgba(85, 230, 138, .045);
}

.website-technology-item__icon {
    display: grid;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(85, 230, 138, .16);
    border-radius: 10px;
    background: rgba(11, 15, 13, .72);
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.website-technology-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.website-technology-item__content {
    min-width: 0;
}

.website-technology-item__content em {
    display: block;
    margin-top: 7px;
    color: var(--website-accent);
    font-size: 11px;
    font-style: normal;
    letter-spacing: .03em;
}

.website-technology-item__badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 5px;
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 9px;
    letter-spacing: .08em;
}

.website-technology-item strong,
.website-technology-item span {
    display: block;
}

.website-technology-item .website-technology-item__icon {
    display: grid;
}

.website-technology-item .website-technology-item__badge {
    display: inline-flex;
}

.website-technology-item strong {
    font-size: 15px;
}

.website-technology-item span {
    margin-top: 3px;
    color: var(--website-muted);
    font-size: 12px;
}

.website-section--about {
    background:
        linear-gradient(115deg, rgba(85, 230, 138, .06), transparent 42%),
        var(--website-surface);
}

.website-about {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: 80px;
    align-items: start;
}

.website-about > p {
    margin: 0;
    color: #c4cbc6;
    font-size: 20px;
    line-height: 2;
    white-space: pre-line;
}

.website-about__summary > p {
    margin: 0;
    color: #c4cbc6;
    font-size: 20px;
    line-height: 2;
    white-space: pre-line;
}

.website-about__summary > a {
    display: inline-flex;
    margin-top: 24px;
    color: var(--website-accent);
    font-weight: 700;
}

.website-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.website-team-card {
    padding: 18px;
    border: 1px solid var(--website-line);
    border-radius: 6px;
    background: var(--website-surface);
}

.website-team-card__avatar {
    display: flex;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 4px;
    background:
        linear-gradient(145deg, rgba(85, 230, 138, .16), rgba(105, 215, 229, .04)),
        var(--website-surface-strong);
    color: var(--website-accent);
    font-size: 52px;
    font-weight: 700;
}

.website-team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72);
}

.website-team-card > span {
    display: block;
    margin-bottom: 8px;
    color: var(--website-accent);
    font-size: 12px;
    letter-spacing: .06em;
}

.website-section--contact {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--website-accent), #49d99e);
    color: #07100a;
}

.website-contact {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: 72px;
}

.website-contact .website-section-label {
    color: #12351f;
}

.website-contact__intro > p {
    max-width: 540px;
    color: #1a4427;
    font-size: 18px;
    line-height: 1.85;
    white-space: pre-line;
}

.website-contact__details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px;
    align-items: center;
    column-gap: 28px;
    padding: 22px 26px;
    border: 1px solid rgba(7, 16, 10, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 18px 50px rgba(7, 16, 10, .08);
}

.website-contact__summary {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 24px;
}

.website-contact__summary p {
    max-width: 500px;
    margin: 0;
    color: #1a4427;
    font-size: 17px;
}

.website-contact__details > a,
.website-contact__details > div {
    display: grid;
    grid-column: 1;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(7, 16, 10, .18);
}

.website-contact__details > div:last-of-type {
    border-bottom: 0;
}

.website-contact__details span {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: .08em;
}

.website-contact__details strong {
    overflow-wrap: anywhere;
}

.website-contact__qrcode {
    grid-row: 1 / span 3;
    grid-column: 2;
    width: 112px;
    height: 112px;
    justify-self: end;
    margin: 0;
    border: 6px solid rgba(255, 255, 255, .9);
    border-radius: 4px;
    object-fit: cover;
}

.website-footer {
    padding: 34px 0;
    background: #080a09;
}

.website-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #747d76;
    font-size: 13px;
}

.website-footer__inner > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.website-footer strong {
    color: var(--website-text);
}

.website-footer a:hover {
    color: var(--website-accent);
}

.website-state {
    min-height: calc(100vh - 96px);
    padding-top: 190px;
}

.website-state--error h1 {
    margin: 20px 0 10px;
    font-size: 42px;
}

.website-state--error p {
    margin: 0 0 28px;
    color: var(--website-muted);
}

.website-loading__eyebrow,
.website-loading__title,
.website-loading__text {
    border-radius: 4px;
    background: linear-gradient(90deg, #141815 0%, #202621 50%, #141815 100%);
    background-size: 220% 100%;
    animation: website-loading 1.6s ease infinite;
}

.website-loading__eyebrow {
    width: 180px;
    height: 14px;
    margin-bottom: 30px;
}

.website-loading__title {
    width: min(720px, 88%);
    height: 66px;
    margin-bottom: 12px;
}

.website-loading__title--short {
    width: min(480px, 66%);
}

.website-loading__text {
    width: min(580px, 76%);
    height: 18px;
    margin-top: 34px;
}

.website-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.website-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes website-loading {
    from { background-position: 100% 0; }
    to { background-position: -100% 0; }
}

@media (max-width: 1199px) {
    .website-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
        gap: 44px;
    }

    .website-hero h1 {
        font-size: 52px;
    }

    .website-service-grid,
    .website-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .website-case-card.is-featured {
        display: block;
    }

    .website-technology-directory-list .website-technology-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .website-hero {
        padding-top: calc(var(--website-header-height) + 70px);
    }

    .website-hero__grid,
    .website-about,
    .website-contact,
    .website-location-layout.has-map {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .website-location-layout.has-map {
        gap: 0;
    }

    .website-location-map {
        border-top: 1px solid var(--website-line);
        border-left: 0;
    }

    .website-contact {
        gap: 38px;
    }

    .website-hero__visual {
        max-width: 620px;
    }

    .website-section__head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .website-technology-group {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {
    :root {
        --website-header-height: 64px;
    }

    .website-container {
        width: min(calc(100% - 32px), var(--website-max-width));
    }

    .website-brand__name {
        max-width: 180px;
    }

    .website-menu-button {
        display: block;
    }

    .website-nav {
        position: absolute;
        top: calc(var(--website-header-height) - 1px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        gap: 0;
        padding: 12px 16px 18px;
        border-bottom: 1px solid var(--website-line);
        background: rgba(11, 13, 12, .97);
        backdrop-filter: blur(18px);
    }

    .website-nav.is-open {
        display: grid;
    }

    .website-nav > a {
        min-height: 46px;
        padding: 11px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .website-nav__action {
        margin-top: 10px;
        text-align: center;
    }

    .website-hero {
        min-height: auto;
        padding: calc(var(--website-header-height) + 60px) 0 72px;
    }

    .website-hero h1 {
        margin-top: 20px;
        font-size: 38px;
    }

    .website-hero__content > p,
    .website-contact__intro > p {
        font-size: 16px;
    }

    .website-terminal__body {
        padding: 14px;
    }

    .website-terminal__body > div {
        grid-template-columns: 28px 86px minmax(0, 1fr);
        gap: 8px;
    }

    .website-section {
        padding: 76px 0;
    }

    .website-section__head h2,
    .website-about h2,
    .website-contact h2 {
        font-size: 36px;
    }

    .website-service-grid,
    .website-case-grid,
    .website-technology-list,
    .website-team-grid {
        grid-template-columns: 1fr;
    }

    .website-technology-directory-list .website-technology-list {
        grid-template-columns: 1fr;
    }

    .website-technology-item {
        min-height: 104px;
        padding: 14px;
    }

    .website-technology-item__icon,
    .website-technology-item img {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .website-case-card.is-featured {
        grid-column: auto;
    }

    .website-about > p {
        font-size: 17px;
    }

    .website-section--contact {
        padding: 64px 0;
    }

    .website-contact__details {
        grid-template-columns: 1fr;
        padding: 18px 20px 22px;
    }

    .website-contact__details > a,
    .website-contact__details > div {
        grid-column: 1;
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .website-contact__qrcode {
        grid-row: auto;
        grid-column: 1;
        justify-self: start;
        margin-top: 20px;
    }

    .website-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .website-button {
        width: 100%;
    }

    .website-state {
        padding-top: 140px;
    }
}

.website-subnav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #bdc5bf;
    font-size: 14px;
}

.website-subnav a {
    transition: color .18s ease;
}

.website-subnav a:hover,
.website-subnav a.is-active {
    color: var(--website-accent);
}

.website-page-hero,
.website-case-detail-hero {
    padding: calc(var(--website-header-height) + 92px) 0 78px;
    border-bottom: 1px solid var(--website-line);
    background:
        radial-gradient(circle at 76% 22%, rgba(85, 230, 138, .1), transparent 32%),
        rgba(255, 255, 255, .012);
}

.website-page-hero h1,
.website-case-detail-hero h1 {
    max-width: 880px;
    margin: 20px 0 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.website-page-hero p,
.website-case-detail-hero > .website-container > p {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--website-muted);
    font-size: 18px;
    line-height: 1.9;
    white-space: pre-line;
}

.website-directory-body {
    min-height: 480px;
    padding: 76px 0 104px;
}

.website-location-section {
    padding: 104px 0;
    border-top: 1px solid var(--website-line);
    border-bottom: 1px solid var(--website-line);
    background: rgba(255, 255, 255, .018);
}

.website-location-layout {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--website-line);
    border-radius: 8px;
    background: var(--website-surface);
}

.website-location-layout.has-map {
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
}

.website-location-card {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.website-location-card h2 {
    margin: 16px 0 18px;
    font-size: 46px;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.website-location-card__description {
    max-width: 520px;
    margin: 0 0 32px;
    color: var(--website-muted);
    line-height: 1.9;
    white-space: pre-line;
}

.website-location-card address {
    max-width: 560px;
    padding-top: 26px;
    border-top: 1px solid var(--website-line);
    color: var(--website-text);
    font-size: 20px;
    font-style: normal;
    line-height: 1.8;
}

.website-location-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.website-location-card__status {
    min-height: 24px;
    margin-top: 14px;
    color: var(--website-accent);
    font-size: 13px;
}

.website-location-map {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-left: 1px solid var(--website-line);
    background: #0d110f;
    box-shadow: inset 0 0 0 1px rgba(85, 230, 138, .05);
}

.website-location-map::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(11, 13, 12, .14), transparent 18%),
        linear-gradient(0deg, rgba(11, 13, 12, .08), transparent 24%),
        radial-gradient(circle at center, transparent 68%, rgba(5, 8, 6, .06) 100%);
    content: "";
    pointer-events: none;
}

.website-location-map__canvas.tdt-container {
    position: absolute;
    inset: 0;
    background: #0d110f;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

.website-location-map__canvas .tdt-tile-pane {
    filter: grayscale(.18) sepia(.14) hue-rotate(78deg) saturate(.72) brightness(.9) contrast(1.04);
}

.website-location-map__canvas .tdt-control-zoom {
    overflow: hidden;
    margin: 18px 0 0 18px;
    border: 1px solid rgba(85, 230, 138, .28);
    border-radius: 5px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .34);
}

.website-location-map__canvas .tdt-control-zoom a {
    width: 34px;
    height: 34px;
    border: 0;
    background: rgba(11, 15, 13, .92);
    color: var(--website-text);
    font-size: 20px;
    line-height: 34px;
    transition: background .18s ease, color .18s ease;
}

.website-location-map__canvas .tdt-control-zoom a + a {
    border-top: 1px solid var(--website-line);
}

.website-location-map__canvas .tdt-control-zoom a:hover {
    background: #18221c;
    color: var(--website-accent);
}

.website-location-map__canvas .tdt-control-scale {
    margin: 0 0 20px 18px;
    color: rgba(244, 247, 244, .9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .8);
}

.website-location-map__canvas .tdt-control-scale-line,
.website-location-map__canvas .tdt-control-scale-linebottom {
    border-color: rgba(244, 247, 244, .78);
}

.website-location-map__canvas .tdt-control-copyright {
    margin: 0 12px 10px 0;
    padding: 3px 7px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 3px;
    background: rgba(8, 11, 9, .72);
    color: rgba(244, 247, 244, .72);
    backdrop-filter: blur(8px);
}

.website-location-map__canvas .tdt-control-copyright a {
    color: rgba(85, 230, 138, .76);
}

.website-location-map__state {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(85, 230, 138, .08), rgba(105, 215, 229, .03)), #111412;
    color: var(--website-muted);
    text-align: center;
}

.website-location-map__state:not(.is-error) span {
    animation: website-map-pulse 1.5s ease-in-out infinite;
}

.website-dialog-open {
    overflow: hidden;
}

.website-navigation-dialog {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(3, 5, 4, .78);
    backdrop-filter: blur(12px);
}

.website-navigation-dialog__panel {
    width: min(100%, 560px);
    padding: 34px;
    border: 1px solid rgba(85, 230, 138, .32);
    border-radius: 8px;
    background: #101411;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

.website-navigation-dialog__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.website-navigation-dialog__head h2 {
    margin: 12px 0 0;
    font-size: 32px;
    line-height: 1.2;
}

.website-navigation-dialog__head > button {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--website-line);
    border-radius: 50%;
    background: transparent;
    color: var(--website-text);
    cursor: pointer;
}

.website-navigation-dialog__panel > p {
    margin: 24px 0;
    color: var(--website-muted);
    line-height: 1.8;
}

.website-navigation-dialog__options {
    display: grid;
    border-top: 1px solid var(--website-line);
}

.website-navigation-dialog__options > a,
.website-navigation-dialog__options > button {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 4px;
    border: 0;
    border-bottom: 1px solid var(--website-line);
    background: transparent;
    color: var(--website-text);
    text-align: left;
    cursor: pointer;
    transition: color .18s ease, padding .18s ease;
}

.website-navigation-dialog__options > a:hover,
.website-navigation-dialog__options > button:hover {
    padding-right: 10px;
    color: var(--website-accent);
}

.website-navigation-dialog__options span {
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: .08em;
}

.website-navigation-dialog__status {
    display: block;
    min-height: 22px;
    margin-top: 14px;
    color: var(--website-accent);
    font-size: 13px;
}

@keyframes website-map-pulse {
    0%, 100% { opacity: .52; }
    50% { opacity: 1; }
}

.website-cooperation-section {
    padding: 96px 0;
    border-bottom: 1px solid var(--website-line);
}

.website-process-layout {
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(440px, 1.22fr);
    align-items: start;
    gap: 72px;
}

.website-process-scene {
    position: sticky;
    top: calc(var(--website-header-height) + 32px);
    overflow: hidden;
    height: 560px;
    border: 1px solid rgba(85, 230, 138, .2);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 46%, rgba(85, 230, 138, .13), transparent 34%),
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
        rgba(13, 17, 15, .72);
    background-size: auto, 36px 36px, 36px 36px, auto;
    box-shadow: inset 0 0 70px rgba(0, 0, 0, .28);
    cursor: grab;
    touch-action: pan-y;
}

.website-process-scene.is-dragging {
    cursor: grabbing;
}

.website-process-scene::before {
    position: absolute;
    top: 48%;
    left: 50%;
    width: 70%;
    height: 38%;
    border: 1px solid rgba(85, 230, 138, .2);
    border-radius: 4px;
    background:
        linear-gradient(rgba(85, 230, 138, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(85, 230, 138, .08) 1px, transparent 1px);
    background-size: 32px 32px;
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%) perspective(480px) rotateX(58deg);
}

.website-process-scene.is-ready::before {
    opacity: .12;
}

.website-process-scene canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.website-process-scene__node-label {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 24px;
    place-items: center;
    border: 1px solid rgba(105, 215, 229, .36);
    border-radius: 3px;
    background: rgba(11, 15, 13, .86);
    color: #9fb8b6;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: .04em;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.website-process-scene__node-label.is-active {
    border-color: rgba(85, 230, 138, .9);
    background: rgba(23, 58, 35, .92);
    color: var(--website-accent);
    box-shadow: 0 0 24px rgba(85, 230, 138, .3);
}

.website-process-scene__caption {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    z-index: 3;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--website-line);
    pointer-events: none;
}

.website-process-scene__caption span {
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: .12em;
}

.website-process-scene__caption strong {
    color: #cbd3cd;
    font-size: 13px;
    font-weight: 500;
}

.website-process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.website-process-list li {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 24px;
    padding: 0 0 44px;
}

.website-process-list li:not(:last-child)::before {
    position: absolute;
    top: 42px;
    bottom: 0;
    left: 21px;
    width: 1px;
    background: linear-gradient(var(--website-accent), rgba(85, 230, 138, .08));
    content: "";
}

.website-process-list li > span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(85, 230, 138, .46);
    border-radius: 50%;
    background: var(--website-bg);
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.website-process-list li.is-scene-active > span {
    border-color: var(--website-accent);
    background: rgba(85, 230, 138, .12);
    box-shadow: 0 0 24px rgba(85, 230, 138, .18);
}

.website-process-list li.is-scene-active h3 {
    color: var(--website-accent);
}

.website-process-list h3,
.website-principle-grid h3 {
    margin: 1px 0 10px;
    font-size: 22px;
    line-height: 1.4;
    transition: color .22s ease;
}

.website-process-list p,
.website-principle-grid p {
    max-width: 760px;
    margin: 0;
    color: var(--website-muted);
    line-height: 1.9;
    white-space: pre-line;
}

.website-principle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--website-line);
    border-left: 1px solid var(--website-line);
}

.website-principle-grid article {
    min-height: 220px;
    padding: 32px;
    border-right: 1px solid var(--website-line);
    border-bottom: 1px solid var(--website-line);
}

.website-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: 80px;
    align-items: start;
}

.website-faq-layout > div:first-child h2 {
    margin: 16px 0 18px;
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.website-faq-layout > div:first-child p {
    margin: 0;
    color: var(--website-muted);
    line-height: 1.9;
    white-space: pre-line;
}

.website-faq-list {
    border-top: 1px solid var(--website-line);
}

.website-faq-list article {
    border-bottom: 1px solid var(--website-line);
}

.website-faq-list button {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: var(--website-text);
    cursor: pointer;
    text-align: left;
}

.website-faq-list button span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.website-faq-list button i {
    position: relative;
    width: 18px;
    height: 18px;
}

.website-faq-list button i::before,
.website-faq-list button i::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 1px;
    background: var(--website-accent);
    content: "";
    transition: transform .18s ease;
}

.website-faq-list button i::after {
    transform: rotate(90deg);
}

.website-faq-list article.is-open button i::after {
    transform: rotate(0);
}

.website-faq-answer {
    padding: 0 52px 26px 0;
}

.website-faq-answer p {
    margin: 0;
    color: var(--website-muted);
    line-height: 1.9;
    white-space: pre-line;
}

.website-about-overview {
    padding: calc(var(--website-header-height) + clamp(50px, 5vw, 84px)) 0 clamp(68px, 7vw, 108px);
    border-bottom: 1px solid var(--website-line);
    background:
        radial-gradient(circle at 82% 20%, rgba(85, 230, 138, .11), transparent 32%),
        rgba(255, 255, 255, .008);
}

.website-about-overview__inner {
    display: grid;
    width: min(1440px, calc(100% - 64px));
    grid-template-columns: 1fr;
    gap: clamp(54px, 6vw, 96px);
    align-items: center;
    margin: 0 auto;
}

.website-about-overview__inner.has-image {
    grid-template-columns: minmax(420px, .76fr) minmax(560px, 1.24fr);
}

.website-about-overview__content {
    max-width: 570px;
}

.website-about-overview__content h1 {
    margin: 24px 0 0;
    font-size: clamp(52px, 5.2vw, 76px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.website-about-overview__intro {
    margin: 24px 0 0;
    color: var(--website-muted);
    font-size: 18px;
    line-height: 1.85;
}

.website-about-overview__description {
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid var(--website-line);
}

.website-about-overview__description > span {
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: .12em;
}

.website-about-overview__description p {
    margin: 18px 0 0;
    color: #c4cbc6;
    font-size: 16px;
    line-height: 1.95;
    white-space: pre-line;
}

.website-about-overview__image {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: transparent;
    -webkit-mask-image: radial-gradient(ellipse 74% 74% at center, #000 0%, #000 54%, rgba(0, 0, 0, .96) 62%, rgba(0, 0, 0, .7) 73%, rgba(0, 0, 0, .3) 84%, transparent 94%);
    mask-image: radial-gradient(ellipse 74% 74% at center, #000 0%, #000 54%, rgba(0, 0, 0, .96) 62%, rgba(0, 0, 0, .7) 73%, rgba(0, 0, 0, .3) 84%, transparent 94%);
}

.website-about-overview__image::after {
    content: none;
}

.website-about-overview__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.website-case-center {
    min-height: 560px;
    padding: 58px 0 96px;
}

.website-case-filters {
    display: grid;
    gap: 24px;
    margin-bottom: 42px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--website-line);
}

.website-case-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.website-case-filter-row button,
.website-case-filter-tools button,
.website-public-pagination button,
.website-case-center__state button {
    border: 1px solid var(--website-line);
    border-radius: 4px;
    background: var(--website-surface);
    color: #c4cbc6;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.website-case-filter-row button {
    padding: 8px 15px;
    font-size: 13px;
}

.website-case-filter-row button:hover,
.website-case-filter-row button.is-active {
    border-color: rgba(85, 230, 138, .5);
    background: rgba(85, 230, 138, .1);
    color: var(--website-accent);
}

.website-case-filter-tools {
    display: grid;
    grid-template-columns: 180px minmax(240px, 1fr) 92px;
    gap: 10px;
    max-width: 720px;
}

.website-case-filter-tools select,
.website-case-filter-tools input {
    min-width: 0;
    height: 44px;
    padding: 0 13px;
    border: 1px solid var(--website-line);
    border-radius: 4px;
    outline: 0;
    background: var(--website-surface);
    color: var(--website-text);
    font: inherit;
}

.website-case-filter-tools select:focus,
.website-case-filter-tools input:focus {
    border-color: rgba(85, 230, 138, .58);
}

.website-case-filter-tools button,
.website-case-center__state button {
    padding: 0 18px;
    color: var(--website-accent);
}

.website-case-filter-tools button:hover,
.website-case-center__state button:hover,
.website-public-pagination button:not(:disabled):hover {
    border-color: rgba(85, 230, 138, .5);
}

.website-case-center__state {
    display: grid;
    min-height: 220px;
    place-items: center;
    align-content: center;
    gap: 18px;
    border: 1px dashed var(--website-line);
    color: var(--website-muted);
    text-align: center;
}

.website-case-center__state p {
    margin: 0;
}

.website-case-center__state button {
    min-height: 42px;
}

.website-case-center__state--error {
    color: #e7b2ae;
}

.website-case-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.website-case-list-card {
    display: flex;
    overflow: hidden;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--website-line);
    border-radius: 6px;
    background: var(--website-surface);
    transition: border-color .2s ease, transform .2s ease;
}

.website-case-list-card:hover {
    border-color: rgba(85, 230, 138, .42);
    transform: translateY(-4px);
}

.website-case-list-card__media {
    display: flex;
    overflow: hidden;
    min-height: 210px;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(85, 230, 138, .16), transparent 54%),
        repeating-linear-gradient(0deg, transparent 0 23px, rgba(255, 255, 255, .025) 24px),
        #151916;
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    letter-spacing: .12em;
}

.website-case-list-card__media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: saturate(.72) brightness(.78);
    transition: filter .25s ease, transform .3s ease;
}

.website-case-list-card:hover .website-case-list-card__media img {
    filter: saturate(.9) brightness(.88);
    transform: scale(1.02);
}

.website-case-list-card__content {
    display: flex;
    min-height: 292px;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.website-case-list-card__content h2,
.website-case-list-card__content h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.4;
}

.website-case-list-card__content h2 a:hover,
.website-case-list-card__content h3 a:hover {
    color: var(--website-accent);
}

.website-case-list-card__content > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 16px 0 0;
    color: var(--website-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.website-case-list-card__foot {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    color: #7f8a82;
    font-size: 13px;
}

.website-case-list-card__foot a {
    flex: 0 0 auto;
    color: var(--website-accent);
    font-weight: 700;
}

.website-public-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 44px;
    color: var(--website-muted);
    font-size: 13px;
}

.website-public-pagination button {
    min-width: 86px;
    padding: 9px 14px;
}

.website-public-pagination button:disabled {
    cursor: not-allowed;
    opacity: .42;
}

.website-case-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    color: #7f8a82;
    font-size: 13px;
}

.website-case-detail__breadcrumb a:hover {
    color: var(--website-accent);
}

.website-case-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.website-case-detail__meta span {
    padding: 5px 10px;
    border: 1px solid rgba(85, 230, 138, .28);
    border-radius: 3px;
    background: rgba(85, 230, 138, .06);
    color: var(--website-accent);
    font-size: 12px;
}

.website-case-detail-body {
    padding: 64px 0 100px;
}

.website-case-detail__cover {
    overflow: hidden;
    margin-bottom: 64px;
    border: 1px solid var(--website-line);
    border-radius: 6px;
    background: var(--website-surface);
}

.website-case-detail__cover img {
    display: block;
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}

.website-case-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 80px;
    align-items: start;
}

.website-case-detail__content {
    display: grid;
    gap: 54px;
    min-width: 0;
}

.website-case-detail__content article {
    padding-bottom: 54px;
    border-bottom: 1px solid var(--website-line);
}

.website-case-detail__content article > span,
.website-case-detail__aside span {
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    letter-spacing: .08em;
}

.website-case-detail__content h2 {
    margin: 13px 0 18px;
    font-size: 32px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.website-case-detail__content p {
    margin: 0;
    color: #b4bdb6;
    font-size: 17px;
    line-height: 2;
    white-space: pre-line;
}

.website-case-detail__aside {
    position: sticky;
    top: calc(var(--website-header-height) + 28px);
    padding: 24px;
    border: 1px solid var(--website-line);
    border-radius: 6px;
    background: var(--website-surface);
}

.website-case-detail__aside ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.website-case-detail__aside li {
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 3px;
    color: #c4cbc6;
    font-size: 12px;
}

.website-case-detail__aside > a {
    display: block;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--website-line);
    color: var(--website-accent);
    font-weight: 700;
}

.website-case-gallery {
    margin-top: 76px;
}

.website-case-gallery h2 {
    margin: 0 0 28px;
    font-size: 32px;
}

.website-case-gallery > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.website-case-gallery img {
    display: block;
    width: 100%;
    border: 1px solid var(--website-line);
    border-radius: 5px;
    background: var(--website-surface);
}

.website-related-cases {
    padding: 90px 0 100px;
    border-top: 1px solid var(--website-line);
    background: rgba(255, 255, 255, .018);
}

@media (max-width: 900px) {
    .website-case-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .website-location-layout.has-map {
        grid-template-columns: 1fr;
    }

    .website-location-map {
        border-top: 1px solid var(--website-line);
        border-left: 0;
    }

    .website-case-detail__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .website-case-detail__aside {
        position: static;
    }

    .website-about-overview__inner.has-image {
        grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
        gap: 46px;
    }

    .website-faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .website-process-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .website-process-scene {
        position: relative;
        top: auto;
        height: 460px;
    }
}

@media (max-width: 767px) {
    .website-subnav {
        gap: 14px;
        font-size: 13px;
    }

    .website-page-hero,
    .website-case-detail-hero {
        padding: calc(var(--website-header-height) + 54px) 0 54px;
    }

    .website-page-hero h1,
    .website-case-detail-hero h1 {
        font-size: 40px;
    }

    .website-page-hero p,
    .website-case-detail-hero > .website-container > p {
        font-size: 16px;
    }

    .website-case-center,
    .website-case-detail-body,
    .website-related-cases,
    .website-directory-body,
    .website-cooperation-section,
    .website-location-section {
        padding-top: 48px;
        padding-bottom: 70px;
    }

    .website-location-card {
        min-height: auto;
        padding: 32px 24px;
    }

    .website-location-card h2 {
        font-size: 36px;
    }

    .website-location-card address {
        font-size: 18px;
    }

    .website-location-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .website-location-map {
        min-height: 280px;
    }

    .website-navigation-dialog {
        align-items: end;
        padding: 0;
    }

    .website-navigation-dialog__panel {
        width: 100%;
        max-height: min(88vh, 680px);
        overflow-y: auto;
        padding: 28px 24px calc(24px + env(safe-area-inset-bottom));
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 14px 14px 0 0;
    }

    .website-principle-grid {
        grid-template-columns: 1fr;
    }

    .website-principle-grid article {
        min-height: auto;
        padding: 26px 22px;
    }

    .website-process-scene {
        height: 340px;
    }

    .website-process-scene__caption {
        right: 18px;
        bottom: 16px;
        left: 18px;
    }

    .website-process-scene__node-label {
        width: 32px;
        height: 22px;
        font-size: 9px;
    }

    .website-process-list li {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        padding-bottom: 36px;
    }

    .website-process-list li:not(:last-child)::before {
        left: 19px;
    }

    .website-process-list li > span {
        width: 40px;
        height: 40px;
    }

    .website-faq-layout > div:first-child h2 {
        font-size: 36px;
    }

    .website-faq-list button {
        gap: 14px;
        padding: 21px 0;
    }

    .website-faq-list button span {
        font-size: 16px;
    }

    .website-faq-answer {
        padding-right: 0;
    }

    .website-case-filter-tools {
        grid-template-columns: 1fr;
    }

    .website-case-filter-tools button {
        min-height: 44px;
    }

    .website-case-list-grid,
    .website-case-gallery > div {
        grid-template-columns: 1fr;
    }

    .website-case-list-card__content {
        min-height: 260px;
    }

    .website-case-detail__cover {
        margin-bottom: 46px;
    }

    .website-case-detail__content h2,
    .website-case-gallery h2 {
        font-size: 27px;
    }

    .website-about-overview {
        padding: calc(var(--website-header-height) + 52px) 0 70px;
    }

    .website-about-overview__inner,
    .website-about-overview__inner.has-image {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .website-about-overview__content h1 {
        font-size: 40px;
    }

    .website-about-overview__intro {
        font-size: 16px;
    }

    .website-about-overview__description {
        margin-top: 34px;
        padding-top: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .website-reveal {
        opacity: 1;
        transform: none;
    }
}

.website-solution-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.website-solution-list-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--website-line);
    border-radius: 6px;
    background: var(--website-surface);
    transition: border-color .2s ease, transform .2s ease;
}

.website-solution-list-card:hover {
    border-color: rgba(85, 230, 138, .42);
    transform: translateY(-4px);
}

.website-solution-list-card__media {
    display: grid;
    min-height: 210px;
    overflow: hidden;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(105, 215, 229, .16), transparent 56%),
        repeating-linear-gradient(0deg, transparent 0 23px, rgba(255, 255, 255, .025) 24px),
        #151916;
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    letter-spacing: .12em;
}

.website-solution-list-card__media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: saturate(.72) brightness(.78);
    transition: filter .25s ease, transform .3s ease;
}

.website-solution-list-card:hover .website-solution-list-card__media img {
    filter: saturate(.9) brightness(.88);
    transform: scale(1.02);
}

.website-solution-list-card__content {
    display: flex;
    min-height: 262px;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.website-solution-list-card__content h2 {
    margin: 11px 0 0;
    font-size: 21px;
    line-height: 1.4;
}

.website-solution-list-card__content h2 a:hover,
.website-solution-list-card__content > a:hover {
    color: var(--website-accent);
}

.website-solution-list-card__content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 16px 0 0;
    color: var(--website-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.website-solution-list-card__content > a {
    margin-top: auto;
    padding-top: 24px;
    color: var(--website-accent);
    font-size: 13px;
    font-weight: 700;
}

.website-solution-hero {
    padding: calc(var(--website-header-height) + 88px) 0 70px;
    border-bottom: 1px solid var(--website-line);
    background: rgba(255, 255, 255, .012);
}

.website-solution-hero h1 {
    max-width: 900px;
    margin: 18px 0 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.1;
}

.website-solution-hero h1,
.website-case-detail-hero h1 {
    overflow-wrap: anywhere;
    word-break: break-word;
    letter-spacing: 0;
}

.website-solution-hero p {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--website-muted);
    font-size: 18px;
    line-height: 1.9;
    white-space: pre-line;
}

.website-solution-stage,
.website-case-solution-stage {
    padding: 58px 0 64px;
    border-bottom: 1px solid var(--website-line);
    background: rgba(255, 255, 255, .012);
}

.website-solution-scene {
    position: relative;
    min-height: min(62vh, 620px);
    overflow: hidden;
    border: 1px solid rgba(85, 230, 138, .24);
    border-radius: 6px;
    background:
        linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px),
        #101713;
    background-size: 34px 34px;
    box-shadow: inset 0 0 72px rgba(0, 0, 0, .34);
    touch-action: none;
}

.website-solution-scene > canvas {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.website-solution-scene__fallback {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .68;
    transition: opacity .24s ease;
}

.website-solution-scene.is-three-ready .website-solution-scene__fallback {
    opacity: .11;
}

.website-solution-scene__caption {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 22px;
    left: 24px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    pointer-events: none;
}

.website-solution-scene__caption span {
    display: block;
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: .12em;
}

.website-solution-scene__caption strong {
    display: block;
    margin-top: 7px;
    color: var(--website-text);
    font-size: 18px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.website-solution-scene__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.website-solution-scene__controls button,
.website-case-solution-tabs button,
.website-case-list-card__foot button {
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--website-line);
    border-radius: 4px;
    background: var(--website-surface);
    color: #c4cbc6;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.website-solution-scene__controls button:hover,
.website-solution-scene__controls button:focus-visible,
.website-case-solution-tabs button:hover,
.website-case-solution-tabs button:focus-visible,
.website-case-solution-tabs button.is-active,
.website-case-list-card__foot button:hover,
.website-case-list-card__foot button:focus-visible {
    border-color: rgba(85, 230, 138, .52);
    background: rgba(85, 230, 138, .08);
    color: var(--website-accent);
}

.website-solution-body {
    padding: 78px 0 102px;
}

.website-solution-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.website-solution-detail-grid article,
.website-solution-description {
    padding: 28px;
    border: 1px solid var(--website-line);
    border-radius: 6px;
    background: var(--website-surface);
}

.website-solution-detail-grid span,
.website-solution-description > span {
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: .1em;
}

.website-solution-detail-grid h2,
.website-solution-description h2,
.website-solution-workflow h2,
.website-solution-links h2 {
    margin: 12px 0 0;
    font-size: 28px;
}

.website-solution-detail-grid p,
.website-solution-description p {
    margin: 16px 0 0;
    color: var(--website-muted);
    line-height: 1.9;
    white-space: pre-line;
}

.website-solution-description {
    margin-top: 18px;
}

.website-solution-workflow,
.website-solution-links {
    margin-top: 72px;
}

.website-solution-workflow ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.website-solution-workflow button {
    display: grid;
    width: 100%;
    min-height: 76px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--website-line);
    border-radius: 5px;
    background: var(--website-surface);
    color: var(--website-text);
    cursor: pointer;
    text-align: left;
}

.website-solution-workflow button:hover,
.website-solution-workflow button:focus-visible,
.website-solution-workflow button.is-active {
    border-color: rgba(85, 230, 138, .5);
    background: rgba(85, 230, 138, .07);
}

.website-solution-workflow button i,
.website-case-solution-workflow i {
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    font-style: normal;
}

.website-solution-workflow button span {
    color: #c4cbc6;
    line-height: 1.5;
}

.website-solution-links > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.website-solution-links > div span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 3px;
    color: #c4cbc6;
    font-size: 13px;
}

.website-case-solution-stage__head {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    margin-bottom: 26px;
}

.website-case-solution-stage__head > div {
    min-width: 0;
}

.website-case-solution-stage__head h2 {
    margin: 12px 0 0;
    font-size: 32px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.website-case-solution-stage__head p {
    max-width: 730px;
    margin: 14px 0 0;
    color: var(--website-muted);
    line-height: 1.8;
    white-space: pre-line;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.website-case-solution-stage__head > a {
    flex: 0 0 auto;
    color: var(--website-accent);
    font-size: 13px;
    font-weight: 700;
}

.website-case-solution-stage__scene {
    min-height: min(54vh, 520px);
}

.website-case-solution-stage--detail {
    padding-top: 66px;
}

.website-case-solution-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.website-case-solution-tabs button {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.website-case-list-card.is-selected {
    border-color: rgba(85, 230, 138, .55);
}

.website-case-list-card__foot > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.website-case-list-card__foot button {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--website-accent);
}

.website-case-solution-workflow {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.website-case-solution-workflow li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: #c4cbc6;
    line-height: 1.7;
}

.website-case-detail__boundary {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--website-line);
}

.website-case-detail__boundary p {
    margin: 13px 0 0;
    color: var(--website-muted);
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-line;
}

.website-technology-assurance {
    padding-top: 68px;
}

.website-technology-section + .website-technology-section {
    margin-top: 84px;
    padding-top: 84px;
    border-top: 1px solid var(--website-line);
}

.website-technology-section .website-section__head {
    margin-bottom: 20px;
}

.website-technology-section .website-section__head > p {
    max-width: 520px;
    margin: 0;
    color: var(--website-muted);
    line-height: 1.8;
}

.website-technology-item--static {
    cursor: default;
}

.website-technology-item--static:hover {
    transform: none;
}

.website-technology-item__content small {
    display: block;
    margin-top: 9px;
    color: #aab5ae;
    font-size: 12px;
    line-height: 1.7;
    white-space: pre-line;
}

.website-technology-home-assurance {
    display: grid;
    gap: 14px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--website-line);
}

.website-technology-home-assurance > span {
    color: var(--website-accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: .1em;
}

.website-technology-home-assurance > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.website-technology-home-assurance strong {
    margin-right: 8px;
    color: #d5ddd7;
    font-size: 14px;
}

.website-technology-home-assurance > div > span {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 3px;
    color: #aab5ae;
    font-size: 12px;
}

@media (max-width: 900px) {
    .website-solution-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .website-case-solution-stage__head {
        align-items: start;
        flex-direction: column;
    }

    .website-solution-detail-grid,
    .website-solution-workflow ol {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .website-solution-list-grid {
        grid-template-columns: 1fr;
    }

    .website-solution-hero {
        padding: calc(var(--website-header-height) + 54px) 0 54px;
    }

    .website-solution-hero h1 {
        font-size: 40px;
    }

    .website-solution-hero p,
    .website-case-solution-stage__head p {
        font-size: 16px;
    }

    .website-solution-stage,
    .website-case-solution-stage {
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .website-solution-scene,
    .website-case-solution-stage__scene {
        min-height: min(56vh, 400px);
    }

    .website-solution-scene__caption {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .website-solution-scene__controls {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .website-solution-scene__controls button {
        min-width: 0;
        padding-right: 7px;
        padding-left: 7px;
    }

    .website-solution-body {
        padding-top: 54px;
        padding-bottom: 72px;
    }

    .website-solution-detail-grid article,
    .website-solution-description {
        padding: 22px;
    }

    .website-solution-detail-grid h2,
    .website-solution-description h2,
    .website-solution-workflow h2,
    .website-solution-links h2,
    .website-case-solution-stage__head h2 {
        font-size: 26px;
    }

    .website-solution-workflow,
    .website-solution-links {
        margin-top: 54px;
    }

    .website-technology-section + .website-technology-section {
        margin-top: 62px;
        padding-top: 62px;
    }
}
