:root {
    --color-ink: #14211b;
    --color-muted: #627066;
    --color-surface: #ffffff;
    --color-surface-alt: #f6f4ee;
    --color-line: #d9ded5;
    --color-primary: #1e6a42;
    --color-primary-dark: #102c22;
    --color-accent: #b9822b;
    --color-accent-soft: #efe0bd;
    --color-paper: #f5f0e5;
    --color-paper-warm: #efe5d2;
    --font-sans: Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
    --font-cjk-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    --font-cjk-display: "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
    --paper-texture: url("../img/paper-texture.svg");
    --paper-fiber:
        var(--paper-texture),
        repeating-linear-gradient(0deg, rgba(82, 69, 47, 0.038) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 7px),
        radial-gradient(circle at 18% 26%, rgba(255, 250, 236, 0.64) 0 1px, transparent 1px 8px),
        radial-gradient(circle at 72% 48%, rgba(106, 86, 58, 0.15) 0 1px, transparent 1px 9px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(224, 214, 190, 0.56));
    --paper-section:
        var(--paper-fiber),
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.58), transparent 32%),
        linear-gradient(135deg, #f8f3e8 0%, #eee6d7 100%);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background-color: var(--color-paper);
    background-image: var(--paper-section);
    background-attachment: fixed;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

a {
    color: inherit;
    text-decoration-color: rgba(31, 111, 67, 0.35);
    text-underline-offset: 0.18em;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 700;
}

[data-language="zh"] body {
    font-family: var(--font-cjk-sans);
}

[data-language="zh"] h1,
[data-language="zh"] h2,
[data-language="zh"] h3 {
    font-family: var(--font-cjk-display);
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    isolation: isolate;
    background: rgba(247, 243, 234, 0.92);
    border-bottom: 1px solid rgba(20, 33, 27, 0.11);
    box-shadow: 0 12px 36px rgba(16, 44, 34, 0.07);
    backdrop-filter: blur(20px);
    transition:
        background-color 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.is-scrolled .site-header {
    background: rgba(247, 243, 234, 0.97);
    border-bottom-color: rgba(20, 33, 27, 0.16);
    box-shadow: 0 14px 42px rgba(16, 44, 34, 0.12);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--paper-fiber);
    opacity: 0.72;
    mix-blend-mode: multiply;
}

.site-header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 26px;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--color-primary-dark);
    text-decoration: none;
}

.site-header__logo img {
    display: block;
    width: auto;
    height: 60px;
    max-width: min(320px, 30vw);
    object-fit: contain;
}

.site-header__menu,
.site-footer__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-header__menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    font-size: 0.94rem;
    font-weight: 820;
    color: var(--color-ink);
    text-decoration: none;
}

.site-header__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--color-primary);
    transition: transform 180ms ease;
}

.site-header__menu a:hover::after,
.site-header__menu a:focus-visible::after {
    transform: scaleX(1);
}

.site-header__menu > li {
    position: relative;
}

.site-header__menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -18px;
    min-width: 240px;
    display: none;
    padding: 12px;
    margin: 0;
    list-style: none;
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    background-color: rgba(247, 243, 234, 0.98);
    background-image: var(--paper-fiber);
    box-shadow: 0 22px 54px rgba(20, 33, 27, 0.12);
    backdrop-filter: blur(16px);
}

.site-header__menu li:hover > .sub-menu,
.site-header__menu li:focus-within > .sub-menu {
    display: block;
}

.site-header__menu .sub-menu a {
    display: block;
    padding: 9px 10px;
}

.site-header__nav {
    order: 2;
}

.site-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.82);
}

.site-header__toggle span[aria-hidden="true"] {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: var(--color-ink);
}

.site-header__tools {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    order: 3;
}

.site-header__lang {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 3px;
    border: 1px solid rgba(20, 33, 27, 0.13);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.72);
}

.site-header__lang a,
.site-header__lang button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 32px;
    padding: 0 10px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
}

.site-header__cta {
    min-height: 48px;
    padding-inline: 22px;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(30, 106, 66, 0.18);
}

.site-header__lang a[aria-current="true"],
.site-header__lang button[aria-current="true"] {
    background: var(--color-primary-dark);
    color: #ffffff;
}

.hero {
    padding: 92px 0;
    background: linear-gradient(135deg, #eef6ea 0%, #ffffff 54%, #fff5df 100%);
}

.hero__inner {
    max-width: 760px;
}

.hero h1,
.entry h1,
.archive-header h1 {
    margin: 0 0 18px;
    font-size: clamp(2.25rem, 6vw, 4.8rem);
    line-height: 1;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button,
.floating-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 750;
    text-decoration: none;
}

.button--secondary {
    background: transparent;
    color: var(--color-primary-dark);
}

.button:hover,
.floating-contact__button:hover {
    transform: translateY(-1px);
}

.has-scroll-effects [data-scroll-reveal] {
    opacity: 0;
    transform: translate3d(0, 46px, 0);
    transition:
        opacity 980ms cubic-bezier(0.19, 1, 0.22, 1),
        transform 980ms cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: var(--scroll-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.has-scroll-effects [data-scroll-reveal="fade-down"] {
    transform: translate3d(0, -48px, 0);
}

.has-scroll-effects [data-scroll-reveal="fade-left"] {
    transform: translate3d(46px, 0, 0);
}

.has-scroll-effects [data-scroll-reveal="zoom-out"] {
    transform: scale(1.075);
}

.has-scroll-effects [data-scroll-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

[data-scroll-speed] {
    --scroll-y: 0px;
    transform: translate3d(0, var(--scroll-y), 0);
    will-change: transform;
}

.preview-hero__video[data-scroll-speed],
.tsx-hero__media--background img[data-scroll-speed],
.tsx-hero__media--background video[data-scroll-speed] {
    transform: translate3d(0, var(--scroll-y), 0) scale(1.07);
    transform-origin: center;
}

.preview-product-card__media img[data-scroll-speed],
.preview-service-card__media img[data-scroll-speed],
.preview-latest-card__media img[data-scroll-speed],
.preview-media-feature__image img[data-scroll-speed],
.tsx-card__media img[data-scroll-speed] {
    transform: translate3d(0, var(--scroll-y), 0) scale(1.04);
    transform-origin: center;
}

.section {
    padding: 72px 0;
}

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

.card {
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-surface);
}

.card h2,
.section-heading h2 {
    margin-top: 0;
    line-height: 1.2;
}

.tsx-hero,
.tsx-proof,
.tsx-card-grid,
.tsx-tabs,
.tsx-accordion,
.tsx-cta-band {
    overflow-wrap: anywhere;
}

.tsx-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background-color: var(--color-paper);
    background:
        var(--paper-fiber),
        linear-gradient(115deg, rgba(246, 244, 238, 0.98), rgba(255, 255, 255, 0.9) 54%),
        linear-gradient(135deg, #eff3e8, var(--color-paper-warm));
}

.tsx-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 48px;
    align-items: center;
}

.tsx-hero__copy {
    max-width: 760px;
}

.tsx-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5.1vw, 4.9rem);
    line-height: 0.98;
}

.tsx-hero__text {
    max-width: 680px;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.tsx-hero__media {
    overflow: hidden;
    border: 1px solid rgba(19, 69, 43, 0.16);
    border-radius: 8px;
    background: var(--color-surface-alt);
    box-shadow: 0 24px 70px rgba(23, 33, 29, 0.14);
}

.tsx-hero__media img,
.tsx-hero__media video {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tsx-hero--home {
    min-height: calc(100svh - 88px);
    display: flex;
    align-items: center;
    isolation: isolate;
    padding: 0;
    background: #111914;
    color: #ffffff;
}

.tsx-hero--home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        var(--paper-texture),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 5px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 8px);
    opacity: 0.34;
    mix-blend-mode: overlay;
}

.tsx-hero--home::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(3, 8, 6, 0.12) 0%, rgba(3, 8, 6, 0.2) 50%, rgba(3, 8, 6, 0.52) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.1));
}

.tsx-hero--home .tsx-hero__grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 720px);
    align-items: center;
    justify-content: start;
    width: calc(100% - 76px);
    margin-left: 38px;
    margin-right: auto;
    min-height: calc(100svh - 88px);
    text-align: left;
}

.tsx-hero--home .tsx-hero__copy {
    position: relative;
    max-width: 720px;
    margin-left: 0;
}

.tsx-hero--home h1 {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(248, 244, 232, 0.78);
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5.5vw, 5.4rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.tsx-hero--home .eyebrow {
    color: #177247;
    font-weight: 900;
}

.tsx-hero--home .tsx-hero__text {
    color: rgba(248, 244, 232, 0.64);
    max-width: 620px;
    font-size: clamp(1.04rem, 1.28vw, 1.18rem);
    line-height: 1.82;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.tsx-hero--home .button-row,
.preview-hero .button-row {
    justify-content: flex-start;
}

.tsx-hero--home .button--secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.tsx-hero--home .tsx-hero__media--background {
    position: absolute;
    inset: 0;
    z-index: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.tsx-hero--home .tsx-hero__media--background img,
.tsx-hero--home .tsx-hero__media--background video {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    filter: saturate(0.96) contrast(1.06) brightness(0.76);
}

.tsx-proof,
.preview-proof {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 118px) 0 clamp(70px, 7vw, 104px);
    background-color: var(--color-paper);
    background-image: var(--paper-fiber);
    color: var(--color-primary-dark);
}

.tsx-proof::before,
.preview-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.68), transparent 28%),
        radial-gradient(circle at 82% 28%, rgba(185, 130, 43, 0.08), transparent 32%);
}

.tsx-proof__intro,
.preview-proof__intro {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: start;
    margin-bottom: clamp(52px, 6vw, 82px);
}

.tsx-proof__heading h2,
.preview-proof__heading h2 {
    max-width: 560px;
    margin: 0;
    color: #313a34;
    font-size: clamp(1.55rem, 2.15vw, 2.25rem);
    line-height: 1.16;
    letter-spacing: 0;
}

.tsx-proof__copy,
.preview-proof__copy {
    max-width: 540px;
    color: #5c665f;
    font-size: clamp(0.98rem, 1.12vw, 1.08rem);
    line-height: 1.92;
}

.tsx-proof__copy p,
.preview-proof__copy p {
    margin: 0;
}

.tsx-proof__copy p + p,
.preview-proof__copy p + p {
    margin-top: 18px;
}

.tsx-proof__metrics,
.preview-proof__metrics {
    position: relative;
    z-index: 2;
    width: min(100% - 56px, 1060px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-inline: auto;
}

.tsx-proof-metric,
.preview-proof-metric {
    display: flex;
    min-height: 176px;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(18px, 2.8vw, 38px);
    text-align: center;
    border-left: 1px solid rgba(20, 33, 27, 0.14);
}

.tsx-proof-metric:first-child,
.preview-proof-metric:first-child {
    border-left: 0;
}

.tsx-proof-metric strong,
.tsx-proof-metric > span,
.preview-proof-metric strong,
.preview-proof-metric > span {
    display: block;
}

.tsx-proof-metric strong span,
.preview-proof-metric strong span {
    display: inline;
}

.tsx-proof-metric__icon,
.preview-proof-metric__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    color: rgba(20, 33, 27, 0.48);
}

.tsx-proof-metric__icon svg,
.preview-proof-metric__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tsx-proof-metric strong,
.preview-proof-metric strong {
    font-family: var(--font-sans);
    color: #565b55;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    font-weight: 760;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    white-space: nowrap;
}

[data-language="zh"] .tsx-proof-metric strong,
[data-language="zh"] .preview-proof-metric strong {
    font-family: var(--font-cjk-sans);
}

.tsx-proof-metric > span:not(.tsx-proof-metric__icon),
.preview-proof-metric > span:not(.preview-proof-metric__icon) {
    margin-top: 14px;
    color: #5f6862;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tsx-card-grid__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.tsx-card {
    position: relative;
    min-width: 0;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(19, 69, 43, 0.16);
    border-radius: 8px;
    background: var(--color-surface);
    box-shadow: 0 16px 42px rgba(23, 33, 29, 0.07);
}

.tsx-card__media {
    overflow: hidden;
    margin: -24px -24px 18px;
    border-radius: 8px 8px 0 0;
    background: var(--color-surface-alt);
}

.tsx-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tsx-home-card-motion .tsx-card__media img {
    transition: transform 360ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .tsx-home-card-motion .tsx-card__media:hover img {
        transform: translate3d(0, var(--scroll-y, 0px), 0) scale(1.055);
    }
}

.tsx-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.tsx-card:has(.tsx-card__media)::before {
    display: none;
}

.tsx-card h3 {
    margin: 18px 0 10px;
    font-size: 1.35rem;
    line-height: 1.18;
}

.tsx-card__meta {
    margin: 0;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tsx-card__text {
    color: var(--color-muted);
}

.tsx-card a {
    margin-top: auto;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.tsx-tabs__grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 22px 34px;
}

.tsx-tabs .section-heading {
    grid-column: 1 / -1;
    max-width: 760px;
    margin-bottom: 0;
}

.tsx-tabs__list {
    display: grid;
    align-self: start;
    gap: 10px;
}

.tsx-tabs__list button,
.tsx-accordion__item button {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--color-ink);
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.tsx-tabs__list button {
    min-height: 58px;
    padding: 0 18px;
}

.tsx-tabs__list button[aria-selected="true"] {
    border-color: var(--color-primary);
    background: var(--color-primary-dark);
    color: #ffffff;
}

.tsx-tabs__panels {
    min-width: 0;
}

.tsx-tabs__panel {
    min-height: 300px;
    padding: 34px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(31, 111, 67, 0.08), transparent 46%),
        #ffffff;
}

.tsx-tabs__panel h3 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.tsx-tabs__text {
    max-width: 720px;
    color: var(--color-muted);
}

.tsx-tabs__panel .button--secondary {
    margin-top: 16px;
}

.tsx-accordion {
    border-top: 1px solid var(--color-line);
}

.tsx-accordion__item {
    border-bottom: 1px solid var(--color-line);
}

.tsx-accordion__item button {
    position: relative;
    padding: 22px 44px 22px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.tsx-accordion__item button::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 18px;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.tsx-accordion__item button[aria-expanded="true"]::after {
    content: "-";
}

.tsx-accordion__panel {
    max-width: 720px;
    padding: 0 40px 22px 0;
    color: var(--color-muted);
}

.tsx-cta-band {
    background:
        linear-gradient(120deg, rgba(19, 38, 31, 0.96), rgba(31, 111, 67, 0.9)),
        var(--color-primary-dark);
    color: #ffffff;
}

.tsx-cta-band .eyebrow {
    color: #f0c56a;
}

.tsx-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.tsx-cta-band__copy {
    max-width: 760px;
}

.tsx-cta-band h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
}

.tsx-cta-band__text {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
}

.tsx-cta-band .button--secondary {
    border-color: rgba(255, 255, 255, 0.62);
    color: #ffffff;
}

.content-layout {
    max-width: 840px;
}

.entry__content {
    color: var(--color-muted);
}

.tsx-doc-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(540px, 68svh, 720px);
    padding: 76px 0 56px;
    display: flex;
    align-items: flex-start;
    background-color: #efe8da;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(236, 226, 204, 0.18)),
        var(--paper-section);
}

.tsx-doc-hero::before,
.tsx-doc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 48%),
        repeating-linear-gradient(90deg, rgba(18, 50, 39, 0.05) 0 1px, transparent 1px min(9.2vw, 138px)),
        repeating-linear-gradient(0deg, rgba(82, 69, 47, 0.025) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.tsx-doc-hero::after {
    content: "";
    position: absolute;
    left: max(20px, calc((100vw - var(--container)) / 2));
    bottom: 48px;
    width: min(260px, 24vw);
    height: 1px;
    background: rgba(18, 50, 39, 0.28);
}

.tsx-doc-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.68fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: start;
}

.tsx-doc-hero--no-media {
    min-height: auto;
    padding: clamp(86px, 12vw, 138px) 0 clamp(62px, 8vw, 92px);
}

.tsx-doc-hero--no-media .tsx-doc-hero__grid {
    grid-template-columns: minmax(0, 900px);
    justify-content: center;
    text-align: center;
}

.tsx-doc-hero--no-media .tsx-doc-hero__copy {
    margin-inline: auto;
}

.tsx-doc-hero--no-media::after {
    left: 50%;
    bottom: 38px;
    width: min(260px, 42vw);
    transform: translateX(-50%);
}

.tsx-doc-hero--no-media h1 {
    margin-inline: auto;
}

.tsx-doc-hero--no-media .tsx-doc-hero__lead {
    margin-inline: auto;
    padding-left: 0;
    border-left: 0;
}

.tsx-doc-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(2.65rem, 3.65vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: 0;
}

[data-language="zh"] .tsx-doc-hero h1 {
    max-width: 720px;
    font-size: clamp(2.5rem, 3.35vw, 3.8rem);
    line-height: 1.16;
}

.tsx-doc-hero__lead {
    max-width: 720px;
    margin-top: 28px;
    padding-left: clamp(18px, 3vw, 34px);
    border-left: 1px solid rgba(18, 50, 39, 0.24);
    color: rgba(17, 47, 37, 0.72);
    font-size: clamp(1.18rem, 1.42vw, 1.46rem);
    line-height: 1.82;
}

.tsx-doc-hero__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 50, 39, 0.16);
    border-radius: 2px;
    background: #dccfb8;
    box-shadow: 0 34px 88px rgba(20, 33, 27, 0.18);
}

.tsx-doc-hero__media::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

.tsx-doc-hero__media img,
.tsx-doc-hero__media video {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4.75;
    object-fit: cover;
    transform: translateY(var(--scroll-y, 0));
}

.tsx-doc-hero--our-team .tsx-doc-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
    align-items: center;
}

.tsx-doc-hero--our-team .tsx-doc-hero__media {
    background: transparent;
}

.tsx-doc-hero--our-team .tsx-doc-hero__media img {
    aspect-ratio: 1800 / 2445;
    object-fit: contain;
}

.tsx-factory-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(18px, 2.1vw, 28px) 0 clamp(58px, 7vw, 92px);
    background-color: #efe8da;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(236, 226, 204, 0.2)),
        var(--paper-section);
}

.tsx-factory-hero__media-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 1.55vw, 24px);
    width: min(calc(100% - clamp(54px, 8vw, 128px)), 1220px);
    margin: 0 auto;
    background: #fff;
}

.tsx-factory-hero__media {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 2.15 / 1;
    background: #fff;
}

.tsx-factory-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tsx-factory-hero__media--left img {
    object-position: center 52%;
}

.tsx-factory-hero__media--right img {
    object-position: center 58%;
}

.tsx-factory-hero__copy {
    max-width: 1120px;
    padding-top: clamp(38px, 5.5vw, 64px);
    text-align: center;
}

.tsx-factory-hero__copy h1 {
    max-width: min(920px, 100%);
    margin: 0 auto;
    color: var(--color-ink);
    font-size: clamp(2.5rem, 4.1vw, 4.65rem);
    line-height: 1.12;
    white-space: normal;
    text-wrap: balance;
}

.tsx-factory-hero__copy p {
    max-width: 1120px;
    margin: clamp(28px, 3.5vw, 42px) auto 0;
    color: var(--color-muted);
    font-size: clamp(1.05rem, 1.25vw, 1.3rem);
    line-height: 1.85;
}

.tsx-brand-story-hero-zh {
    position: relative;
    overflow: hidden;
    min-height: clamp(620px, 56.25vw, 720px);
    padding: clamp(29px, 2.334vw, 29.87px) 0 clamp(42px, 5vw, 64px);
    display: flex;
    align-items: flex-start;
    background-color: #efe8da;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(236, 226, 204, 0.18)),
        var(--paper-section);
}

.tsx-brand-story-hero-zh::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 48%),
        repeating-linear-gradient(90deg, rgba(18, 50, 39, 0.05) 0 1px, transparent 1px min(9.2vw, 138px)),
        repeating-linear-gradient(0deg, rgba(82, 69, 47, 0.025) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.tsx-brand-story-hero-zh .container {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
}

.tsx-brand-story-hero-zh__header {
    max-width: 1280px;
    height: clamp(78px, 6.302vw, 80.67px);
    margin: 0 auto clamp(76px, 6.25vw, 80px);
    text-align: center;
}

.tsx-brand-story-hero-zh h1 {
    display: inline-block;
    margin: 0;
    color: #000;
    font-family: var(--font-cjk-sans);
    font-size: clamp(3.35rem, 4.56vw, 3.65rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0;
    white-space: nowrap;
    transform: translateY(8px);
}

html[data-language="en"] .tsx-brand-story-hero-zh__header {
    height: auto;
    min-height: clamp(78px, 6.302vw, 80.67px);
}

html[data-language="en"] .tsx-brand-story-hero-zh h1 {
    max-width: min(100%, 1240px);
    font-size: clamp(2.35rem, 3.35vw, 3rem);
    line-height: 1.12;
    white-space: normal;
    transform: none;
}

.tsx-brand-story-hero-zh__grid {
    display: grid;
    grid-template-columns: 3.65fr 56.83fr 0.6fr 36.02fr 2.9fr;
    gap: 0;
    align-items: start;
}

.tsx-brand-story-hero-zh__media {
    grid-column: 2;
    margin: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.tsx-brand-story-hero-zh__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.48 / 1;
    object-fit: cover;
}

.tsx-brand-story-hero-zh__copy {
    grid-column: 4;
    color: #000;
    font-family: var(--font-cjk-sans);
    font-size: clamp(2rem, 2.74vw, 2.18rem);
    font-weight: 400;
    line-height: 1.44;
    padding: clamp(5px, 0.47vw, 6px) clamp(28px, 2.66vw, 34px) 0 clamp(8px, 0.78vw, 10px);
}

.tsx-brand-story-hero-zh__copy p {
    margin: 0;
}

.tsx-brand-story-hero-zh__copy p + p {
    margin-top: 1.05em;
}

.tsx-doc-hero--brand-story {
    display: none;
}

html[data-language="en"] .tsx-brand-story-hero-zh {
    display: flex;
}

html[data-language="en"] .tsx-doc-hero--brand-story {
    display: none;
}

.tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__grid {
    grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.08fr);
    align-items: center;
}

.tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__media {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__media::before {
    content: none;
}

.tsx-doc-hero--smart-beverage-machine .tsx-smart-image--hero img {
    aspect-ratio: auto;
    object-fit: contain;
    transform: none;
}

.tsx-smart-image {
    display: block;
    width: 100%;
}

.tsx-smart-image__asset {
    display: block;
    width: 100%;
    height: auto;
}

.tsx-smart-image .tsx-smart-image__asset--en {
    display: none;
}

html[data-language="en"] .tsx-smart-image .tsx-smart-image__asset--zh {
    display: none;
}

html[data-language="en"] .tsx-smart-image .tsx-smart-image__asset--en {
    display: block;
}

.tsx-doc-section {
    position: relative;
    overflow: hidden;
    background-color: #f8f3e8;
    background-image: var(--paper-fiber);
}

.tsx-doc-section:nth-of-type(2n + 1) {
    background-color: #eee5d4;
}

.tsx-doc-section::after {
    content: "";
    position: absolute;
    left: max(20px, calc((100vw - var(--container)) / 2));
    right: max(20px, calc((100vw - var(--container)) / 2));
    top: 0;
    height: 1px;
    background: rgba(18, 50, 39, 0.16);
}

.tsx-doc-section > .container,
.tsx-doc-cta > .container {
    position: relative;
    z-index: 1;
}

.tsx-doc-section .section-heading {
    max-width: 960px;
    margin: 0 auto 42px;
    text-align: center;
}

.tsx-doc-section .section-heading h2 {
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-ink);
    font-size: clamp(2.15rem, 4vw, 4.6rem);
    line-height: 1;
}

[data-language="zh"] .tsx-doc-section .section-heading h2 {
    font-size: clamp(2.05rem, 3.55vw, 4.05rem);
    line-height: 1.12;
}

.tsx-doc-prose {
    display: grid;
    gap: 18px;
    max-width: 860px;
    margin-inline: auto;
    color: var(--color-muted);
    font-size: 1.04rem;
    line-height: 1.82;
}

.tsx-page-brand-story.tsx-section-where-it-started {
    min-height: clamp(620px, 56.25vw, 720px);
    padding: clamp(96px, 8.83vw, 113px) 0 clamp(64px, 7vw, 86px);
}

.tsx-page-brand-story.tsx-section-where-it-started > .container {
    width: min(100%, 1280px);
}

.tsx-page-brand-story.tsx-section-where-it-started .section-heading {
    margin-bottom: clamp(76px, 6.25vw, 80px);
}

.tsx-page-brand-story.tsx-section-where-it-started .section-heading h2 {
    font-family: var(--font-cjk-display);
    font-size: clamp(3.8rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
}

.tsx-page-brand-story.tsx-section-where-it-started .tsx-doc-prose {
    width: min(calc(100% - 170px), 1110px);
    max-width: none;
    gap: clamp(60px, 5.47vw, 70px);
    color: var(--color-muted);
    font-size: clamp(1.25rem, 1.75vw, 1.4rem);
    line-height: 1.74;
}

.tsx-page-brand-story.tsx-section-where-it-started .tsx-doc-prose p {
    margin: 0;
}

.tsx-brand-story-mission-zh {
    position: relative;
    overflow: hidden;
    min-height: clamp(620px, 56.25vw, 720px);
    padding: clamp(42px, 3.36vw, 43px) 0 clamp(60px, 5vw, 64px);
    background-color: #f8f3e8;
    background-image: var(--paper-fiber);
}

.tsx-brand-story-mission-zh::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 48%),
        repeating-linear-gradient(90deg, rgba(18, 50, 39, 0.05) 0 1px, transparent 1px min(9.2vw, 138px)),
        repeating-linear-gradient(0deg, rgba(82, 69, 47, 0.025) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.tsx-brand-story-mission-zh > .container {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
}

.tsx-brand-story-mission-zh .section-heading {
    max-width: 1280px;
    margin: 0 auto clamp(76px, 6.25vw, 80px);
    text-align: center;
}

.tsx-brand-story-mission-zh .section-heading h2 {
    margin: 0 auto;
    color: var(--color-ink);
    font-family: var(--font-cjk-display);
    font-size: clamp(3.35rem, 4.58vw, 3.68rem);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.tsx-brand-story-mission-zh__grid {
    display: grid;
    grid-template-columns: 61.4fr 534.87fr 56.2fr 545fr 82.53fr;
    gap: 0;
    align-items: start;
}

.tsx-brand-story-mission-zh__card {
    min-width: 0;
}

.tsx-brand-story-mission-zh__card:first-child {
    grid-column: 2;
}

.tsx-brand-story-mission-zh__card:last-child {
    grid-column: 4;
}

.tsx-brand-story-mission-zh__card h3 {
    margin: 0 0 clamp(28px, 3vw, 38px);
    color: var(--color-ink);
    font-family: var(--font-cjk-display);
    font-size: clamp(1.85rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
    letter-spacing: 0;
}

.tsx-brand-story-mission-zh__card figure {
    margin: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.34);
}

.tsx-brand-story-mission-zh__card img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.tsx-brand-story-mission-zh__card:first-child img {
    aspect-ratio: 1.287 / 1;
}

.tsx-brand-story-mission-zh__card:last-child img {
    aspect-ratio: 1.312 / 1;
}

.tsx-page-brand-story.tsx-section-what-drives-us {
    display: none;
}

.tsx-brand-story-mission-copy-zh {
    position: relative;
    overflow: hidden;
    min-height: clamp(620px, 56.25vw, 720px);
    padding: clamp(78px, 7.1vw, 91px) 0 clamp(60px, 5vw, 64px);
    background-color: #eee5d4;
    background-image: var(--paper-fiber);
}

.tsx-brand-story-mission-copy-zh::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 48%),
        repeating-linear-gradient(90deg, rgba(18, 50, 39, 0.05) 0 1px, transparent 1px min(9.2vw, 138px)),
        repeating-linear-gradient(0deg, rgba(82, 69, 47, 0.025) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.tsx-brand-story-mission-copy-zh > .container {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
}

.tsx-brand-story-mission-copy-zh__grid {
    display: grid;
    grid-template-columns: 24fr 596fr 40fr 596fr 24fr;
    gap: 0;
    align-items: stretch;
}

.tsx-brand-story-mission-copy-zh__column {
    display: grid;
    align-content: start;
    gap: clamp(24px, 2.58vw, 33px);
    height: 100%;
    box-sizing: border-box;
    padding: clamp(24px, 2.35vw, 30px) clamp(26px, 2.6vw, 33px);
    border: 1px solid rgba(20, 70, 48, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 251, 241, 0.34)),
        rgba(251, 247, 238, 0.42);
    box-shadow: 0 18px 40px rgba(24, 48, 36, 0.08);
    color: rgba(20, 33, 27, 0.84);
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.36rem, 1.85vw, 1.5rem);
    font-weight: 520;
    line-height: 1.36;
}

.tsx-brand-story-mission-copy-zh__column:first-child {
    grid-column: 2;
}

.tsx-brand-story-mission-copy-zh__column:last-child {
    grid-column: 4;
}

.tsx-brand-story-mission-copy-zh__column p {
    margin: 0;
}

html[data-language="en"] .tsx-brand-story-mission-zh {
    display: block;
}

html[data-language="en"] .tsx-brand-story-mission-copy-zh {
    display: block;
}

html[data-language="en"] .tsx-page-brand-story.tsx-section-what-drives-us {
    display: none;
}

.tsx-brand-story-group-zh {
    position: relative;
    overflow: hidden;
    min-height: clamp(620px, 56.25vw, 720px);
    padding: clamp(58px, 4.99vw, 64px) 0 clamp(36px, 3.5vw, 45px);
    background-color: #f8f3e8;
    background-image: var(--paper-fiber);
}

.tsx-brand-story-group-zh::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 48%),
        repeating-linear-gradient(90deg, rgba(18, 50, 39, 0.05) 0 1px, transparent 1px min(9.2vw, 138px)),
        repeating-linear-gradient(0deg, rgba(82, 69, 47, 0.025) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.tsx-brand-story-group-zh > .container {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
}

.tsx-brand-story-group-zh__header {
    width: min(calc(100% - 96px), 1060px);
    margin: 0 auto;
    padding: clamp(24px, 2.65vw, 34px) clamp(32px, 4.1vw, 52px);
    border: 1px solid rgba(20, 70, 48, 0.11);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 251, 241, 0.28)),
        rgba(251, 247, 238, 0.36);
    box-shadow: 0 18px 40px rgba(24, 48, 36, 0.07);
    text-align: center;
}

.tsx-brand-story-group-zh__header h2 {
    margin: 0 auto;
    color: var(--color-ink);
    font-family: var(--font-cjk-display);
    font-size: clamp(3.35rem, 4.58vw, 3.68rem);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.tsx-brand-story-group-zh__meta,
.tsx-brand-story-group-zh__subhead {
    margin: 0;
    color: rgba(20, 33, 27, 0.78);
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.08rem, 1.48vw, 1.2rem);
    font-weight: 600;
    line-height: 1.45;
}

.tsx-brand-story-group-zh__meta {
    margin-top: clamp(56px, 5vw, 64px);
}

.tsx-brand-story-group-zh__subhead {
    margin-top: clamp(18px, 2.3vw, 29px);
}

.tsx-brand-story-group-zh__rows {
    display: grid;
    gap: clamp(24px, 2.8vw, 36px);
    width: min(calc(100% - 96px), 1100px);
    margin-top: clamp(76px, 6.25vw, 80px);
    margin-left: auto;
    margin-right: auto;
}

.tsx-brand-story-group-zh__row {
    display: grid;
    grid-template-columns: minmax(220px, 286px) minmax(0, 1fr);
    gap: clamp(18px, 2.1vw, 28px);
    align-items: baseline;
    padding: clamp(16px, 1.78vw, 23px) clamp(20px, 2.35vw, 30px);
    border: 1px solid rgba(20, 70, 48, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 30px rgba(24, 48, 36, 0.055);
}

.tsx-brand-story-group-zh__row h3,
.tsx-brand-story-group-zh__row p {
    margin: 0;
    color: rgba(20, 33, 27, 0.84);
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.18rem, 1.72vw, 1.38rem);
    font-weight: 560;
    line-height: 1.56;
    letter-spacing: 0;
}

.tsx-brand-story-group-zh__row h3 {
    font-weight: 620;
}

.tsx-page-brand-story.tsx-section-the-group-behind-teasourcex {
    display: none;
}

html[data-language="en"] .tsx-brand-story-group-zh {
    display: block;
}

html[data-language="en"] .tsx-page-brand-story.tsx-section-the-group-behind-teasourcex {
    display: none;
}

.tsx-doc-inline-cta {
    justify-content: center;
    margin-top: 30px;
}

.tsx-doc-horizontal-process-shell {
    position: relative;
    margin-top: 50px;
    padding-inline: clamp(50px, 4vw, 64px);
}

.tsx-doc-horizontal-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(300px, 1fr));
    gap: 18px;
    padding: 28px 2px 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.tsx-doc-horizontal-process::-webkit-scrollbar {
    display: none;
}

.tsx-doc-horizontal-process::before {
    content: "";
    position: absolute;
    top: 72px;
    left: 68px;
    right: 68px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(18, 50, 39, 0.26), transparent);
}

.tsx-doc-horizontal-process__control {
    position: absolute;
    top: 54px;
    z-index: 3;
    display: inline-grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(18, 50, 39, 0.14);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.88), rgba(232, 222, 199, 0.4) 72%),
        var(--paper-fiber);
    color: var(--color-primary-dark);
    box-shadow:
        0 16px 34px rgba(20, 33, 27, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition:
        transform 180ms ease,
        opacity 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.tsx-doc-horizontal-process__control::before {
    content: "";
    position: absolute;
    inset: -9px;
    border: 1px solid rgba(18, 50, 39, 0.08);
    border-radius: inherit;
    pointer-events: none;
    transition:
        border-color 180ms ease,
        transform 180ms ease;
}

.tsx-doc-horizontal-process__control span {
    position: relative;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(208, 162, 71, 0.36);
    border-radius: inherit;
    background: rgba(250, 247, 239, 0.42);
}

.tsx-doc-horizontal-process__control svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tsx-doc-horizontal-process__control:hover {
    border-color: rgba(18, 50, 39, 0.3);
    box-shadow:
        0 18px 38px rgba(20, 33, 27, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.tsx-doc-horizontal-process__control:hover::before {
    border-color: rgba(208, 162, 71, 0.18);
    transform: scale(1.04);
}

.tsx-doc-horizontal-process__control[disabled] {
    opacity: 0.32;
    cursor: default;
    transform: none;
}

.tsx-doc-horizontal-process__control[disabled]:hover {
    transform: none;
    border-color: rgba(18, 50, 39, 0.14);
    box-shadow:
        0 16px 34px rgba(20, 33, 27, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.tsx-doc-horizontal-process__control[disabled]:hover::before {
    border-color: rgba(18, 50, 39, 0.08);
    transform: none;
}

.tsx-doc-horizontal-process__control--prev {
    left: 0;
}

.tsx-doc-horizontal-process__control--next {
    right: 0;
}

.tsx-doc-horizontal-process__control--prev:hover {
    transform: translate(-3px, -2px);
}

.tsx-doc-horizontal-process__control--next:hover {
    transform: translate(3px, -2px);
}

.tsx-doc-horizontal-process__step {
    position: relative;
    min-width: 300px;
    padding: 0;
    text-align: center;
    scroll-snap-align: start;
}

.tsx-doc-horizontal-process__step + .tsx-doc-horizontal-process__step::before {
    content: "";
    position: absolute;
    top: 70px;
    left: -19px;
    width: 24px;
    height: 5px;
    border-top: 1px solid rgba(208, 162, 71, 0.78);
    border-right: 1px solid rgba(208, 162, 71, 0.78);
    transform: skewX(34deg);
}

.tsx-doc-horizontal-process__node {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    border: 1px solid rgba(18, 50, 39, 0.16);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.82), rgba(232, 222, 199, 0.34) 72%),
        var(--paper-fiber);
    box-shadow:
        0 16px 34px rgba(20, 33, 27, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.tsx-doc-horizontal-process__node::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(208, 162, 71, 0.38);
    border-radius: inherit;
}

.tsx-doc-horizontal-process__node .tsx-doc-icon {
    width: 48px;
    height: 48px;
    margin: 0;
}

.tsx-doc-horizontal-process__body {
    position: relative;
    min-height: 320px;
    padding: 30px 28px 34px;
    border: 1px solid rgba(18, 50, 39, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(232, 222, 199, 0.22)),
        var(--paper-fiber);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.tsx-doc-horizontal-process__body::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 18px;
    height: 18px;
    border-right: 1px solid rgba(208, 162, 71, 0.78);
    border-bottom: 1px solid rgba(208, 162, 71, 0.78);
}

.tsx-doc-horizontal-process h3 {
    margin: 0;
    color: var(--color-primary-dark);
    font-family: var(--font-cjk-display);
    font-size: clamp(1.08rem, 1.3vw, 1.32rem);
    line-height: 1.25;
}

.tsx-doc-horizontal-process p {
    margin: 14px 0 0;
    color: rgba(20, 33, 27, 0.66);
    font-size: clamp(0.98rem, 0.9vw, 1.04rem);
    line-height: 1.76;
}

.tsx-doc-mode-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 44px;
}

.tsx-doc-mode-card {
    position: relative;
    min-height: 430px;
    padding: clamp(34px, 4vw, 50px);
    border: 1px solid rgba(18, 50, 39, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(232, 222, 199, 0.28)),
        var(--paper-fiber);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.68),
        0 20px 52px rgba(20, 33, 27, 0.06);
    overflow: hidden;
}

.tsx-doc-mode-card::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 30px;
    height: 30px;
    border-right: 1px solid rgba(208, 162, 71, 0.82);
    border-bottom: 1px solid rgba(208, 162, 71, 0.82);
}

.tsx-doc-mode-card__mark {
    position: absolute;
    top: 22px;
    right: 26px;
    color: rgba(18, 50, 39, 0.08);
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.tsx-doc-mode-card__header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
}

.tsx-doc-mode-card__header .tsx-doc-icon {
    width: 58px;
    height: 58px;
    margin: 0;
}

.tsx-doc-mode-card h3 {
    margin: 0;
    color: var(--color-primary-dark);
    font-family: var(--font-cjk-display);
    font-size: clamp(1.42rem, 2vw, 2rem);
    line-height: 1.18;
}

.tsx-doc-mode-card p {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0;
    color: rgba(20, 33, 27, 0.7);
    font-size: clamp(1rem, 0.92vw, 1.06rem);
    line-height: 1.8;
}

.tsx-doc-mode-card p + p {
    margin-top: 18px;
}

.tsx-doc-mode-card__lead {
    padding-left: 18px;
    border-left: 2px solid rgba(208, 162, 71, 0.82);
    color: rgba(20, 33, 27, 0.82) !important;
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.05rem, 1.3vw, 1.18rem) !important;
    font-weight: 760;
}

.tsx-doc-mode-card__note {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid rgba(30, 106, 66, 0.16);
    background: rgba(30, 106, 66, 0.07);
}

.tsx-doc-mode-card__note p {
    color: rgba(18, 50, 39, 0.82);
    font-weight: 850;
    line-height: 1.62;
}

.tsx-doc-grid,
.tsx-doc-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-doc-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1180px) {
    .tsx-doc-grid:has(> .tsx-doc-card:nth-child(4):last-child) {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .tsx-doc-grid:has(> .tsx-doc-card:nth-child(4):last-child) .tsx-doc-card {
        min-height: 360px;
        padding: clamp(24px, 2.35vw, 32px);
    }

    .tsx-doc-grid:has(> .tsx-doc-card:nth-child(4):last-child) .tsx-doc-card h3 {
        font-size: clamp(1.08rem, 1.28vw, 1.44rem);
        line-height: 1.22;
    }

    .tsx-doc-grid:has(> .tsx-doc-card:nth-child(4):last-child) .tsx-doc-card p {
        font-size: clamp(0.94rem, 0.82vw, 1rem);
        line-height: 1.72;
    }
}

.tsx-doc-history-timeline {
    position: relative;
    width: min(100%, 1080px);
    margin: 58px auto 0;
    padding-bottom: 18px;
}

.tsx-doc-history-nav {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    align-items: start;
    gap: clamp(12px, 2.2vw, 24px);
}

.tsx-doc-history-arrow {
    display: grid;
    justify-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: rgba(20, 33, 27, 0.66);
    font-family: var(--font-cjk-sans);
    font-size: 0.84rem;
    font-weight: 760;
    cursor: pointer;
}

.tsx-doc-history-arrow span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(18, 50, 39, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-primary);
    font-family: var(--font-cjk-sans);
    font-size: 1.55rem;
    line-height: 1;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tsx-doc-history-arrow em {
    font-style: normal;
}

.tsx-doc-history-arrow:hover span {
    border-color: rgba(16, 44, 34, 0.36);
    background: rgba(255, 255, 255, 0.48);
    transform: translateY(-1px);
}

.tsx-doc-history-years {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: 66px;
    align-items: start;
}

.tsx-doc-history-years::before {
    content: "";
    position: absolute;
    left: calc(100% / 12);
    right: calc(100% / 12);
    top: 43px;
    height: 1px;
    background: rgba(18, 50, 39, 0.24);
}

.tsx-doc-history-years button {
    position: relative;
    min-height: 60px;
    border: 0;
    background: transparent;
    color: rgba(20, 33, 27, 0.64);
    font-family: var(--font-cjk-sans);
    font-size: 0.9rem;
    font-weight: 840;
    cursor: pointer;
}

.tsx-doc-history-years__label {
    display: block;
    white-space: nowrap;
}

.tsx-doc-history-years__dot {
    position: absolute;
    left: 50%;
    top: 43px;
    z-index: 1;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border: 2px solid rgba(18, 50, 39, 0.18);
    border-radius: 999px;
    background: #f6f1e7;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tsx-doc-history-years button.is-active,
.tsx-doc-history-years button:hover {
    color: var(--color-primary);
}

.tsx-doc-history-years button.is-active .tsx-doc-history-years__dot {
    border-color: #f4b633;
    background: #f4b633;
    transform: scale(1.08);
}

.tsx-doc-history-panels {
    max-width: 760px;
    margin: clamp(72px, 8vw, 104px) auto 0;
}

.tsx-doc-history-panel {
    display: block;
    min-height: 220px;
}

.tsx-doc-history-panel[hidden] {
    display: none !important;
}

.tsx-doc-history-item__year {
    margin: 0 0 34px;
    color: #5c5b57;
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.06rem, 1.6vw, 1.32rem);
    font-weight: 850;
    line-height: 1.2;
    white-space: nowrap;
    word-break: keep-all;
}

.tsx-doc-history-panel h3 {
    margin: 0 0 28px;
    color: var(--color-ink);
    font-family: var(--font-serif);
    font-size: clamp(1.28rem, 2vw, 1.9rem);
    line-height: 1.18;
}

.tsx-doc-history-panel > p:not(.tsx-doc-history-item__year) {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.tsx-doc-card {
    position: relative;
    min-height: 250px;
    padding: clamp(24px, 3vw, 34px);
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(246, 239, 224, 0.64)),
        rgba(255, 255, 255, 0.28);
    transition:
        background-color 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.tsx-doc-card::before {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 34px;
    height: 34px;
    border-top: 1px solid rgba(185, 130, 43, 0.62);
    border-right: 1px solid rgba(185, 130, 43, 0.62);
}

.tsx-doc-card:hover {
    background-color: rgba(255, 255, 255, 0.44);
    box-shadow: 0 22px 54px rgba(20, 33, 27, 0.1);
    transform: translateY(-4px);
}

.tsx-doc-card h3 {
    max-width: 92%;
    margin: 0 0 16px;
    color: var(--color-ink);
    font-size: clamp(1.22rem, 1.7vw, 1.62rem);
    line-height: 1.16;
}

.tsx-doc-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(0.98rem, 0.9vw, 1.04rem);
    line-height: 1.76;
}

.tsx-doc-action-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 1040px);
    margin: 56px auto 0;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-doc-action-card-grid--single-end .tsx-doc-action-card {
    grid-column: 2;
}

.tsx-doc-action-card {
    --action-accent: var(--color-primary);
    --action-wash: rgba(30, 106, 66, 0.12);
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 236px;
    padding: clamp(28px, 3.3vw, 40px);
    overflow: hidden;
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.78), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(246, 239, 224, 0.7)),
        rgba(255, 255, 255, 0.32);
    color: var(--color-ink);
    text-decoration: none;
    transition:
        background-color 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.tsx-doc-action-card:nth-child(2) {
    --action-accent: var(--color-accent);
    --action-wash: rgba(185, 130, 43, 0.15);
}

.tsx-doc-action-card::before {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-top: 1px solid color-mix(in srgb, var(--action-accent) 46%, rgba(255, 255, 255, 0.3));
    border-right: 1px solid color-mix(in srgb, var(--action-accent) 46%, rgba(255, 255, 255, 0.3));
}

.tsx-doc-action-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: var(--action-wash);
    opacity: 0.58;
    pointer-events: none;
}

.tsx-doc-action-card:hover {
    background-color: rgba(255, 255, 255, 0.52);
    box-shadow: 0 22px 54px rgba(20, 33, 27, 0.1);
    transform: translateY(-4px);
}

.tsx-doc-action-card .tsx-doc-icon {
    --icon-accent: var(--action-accent);
    --icon-wash: var(--action-wash);
    width: 68px;
    height: 68px;
    margin: 0 0 34px;
    border-color: color-mix(in srgb, var(--action-accent) 26%, rgba(255, 255, 255, 0.64));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 16px 34px rgba(18, 50, 39, 0.1);
}

.tsx-doc-action-card .tsx-doc-icon svg {
    width: 31px;
    height: 31px;
    stroke-width: 1.8;
}

.tsx-doc-action-card__label {
    align-self: end;
    max-width: min(82%, 360px);
    color: var(--color-ink);
    font-family: var(--font-display);
    font-size: clamp(1.28rem, 2vw, 1.95rem);
    font-weight: 800;
    line-height: 1.16;
}

[data-language="zh"] .tsx-doc-action-card__label {
    font-family: var(--font-cjk-display);
    font-size: clamp(1.22rem, 1.85vw, 1.8rem);
}

.tsx-doc-action-card__arrow {
    position: absolute;
    right: clamp(24px, 3vw, 38px);
    bottom: clamp(24px, 3vw, 38px);
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid color-mix(in srgb, var(--action-accent) 26%, rgba(255, 255, 255, 0.52));
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: var(--action-accent);
    font-family: var(--font-cjk-sans);
    font-size: 1.28rem;
    line-height: 1;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tsx-doc-action-card:hover .tsx-doc-action-card__arrow {
    background: var(--action-accent);
    color: #fff;
    transform: translateX(5px);
}

.tsx-doc-section--comparison .tsx-doc-grid,
.tsx-doc-section--download-gate .tsx-doc-grid,
.tsx-doc-section--contact .tsx-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tsx-doc-section--article-list .tsx-doc-grid,
.tsx-doc-section--sop-library .tsx-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tsx-doc-section--article-list .tsx-doc-card,
.tsx-doc-section--sop-library .tsx-doc-card {
    min-height: 320px;
    padding-top: clamp(30px, 4vw, 46px);
}

.tsx-doc-section--article-list .tsx-doc-card h3,
.tsx-doc-section--sop-library .tsx-doc-card h3 {
    font-size: clamp(1.38rem, 2.1vw, 2.25rem);
}

.tsx-doc-section--product-grid .tsx-doc-card {
    background:
        linear-gradient(180deg, rgba(19, 48, 38, 0.05), transparent 42%),
        rgba(255, 255, 255, 0.22);
}

.tsx-doc-section--comparison .tsx-doc-card,
.tsx-doc-section--download-gate .tsx-doc-card {
    min-height: 280px;
}

.tsx-doc-section--certification-wall .tsx-doc-card {
    min-height: 220px;
    padding-top: 82px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(239, 229, 210, 0.5)),
        rgba(255, 255, 255, 0.22);
}

.tsx-doc-section--contact .tsx-doc-card {
    min-height: 160px;
}

.tsx-doc-section--contact .tsx-doc-card h3 {
    font-family: var(--font-cjk-sans);
    font-size: 1rem;
    font-weight: 850;
}

.tsx-doc-article-list {
    display: grid;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
}

.tsx-doc-article-list--cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 28px);
    align-items: stretch;
    border-top: 0;
}

.tsx-blog-tools {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-top: 34px;
}

.tsx-blog-tools input {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(18, 50, 39, 0.18);
    background: rgba(255, 255, 255, 0.42);
    color: var(--color-ink);
    font: inherit;
}

.tsx-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tsx-blog-tags button {
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid rgba(18, 50, 39, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    color: rgba(20, 33, 27, 0.72);
    font-family: var(--font-cjk-sans);
    font-size: 0.8rem;
    font-weight: 820;
    cursor: pointer;
}

.tsx-blog-tags button:hover,
.tsx-blog-tags button.is-active {
    border-color: rgba(16, 44, 34, 0.92);
    background: rgba(16, 44, 34, 0.94);
    color: #ffffff;
}

.tsx-doc-article {
    display: grid;
    grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
    gap: clamp(22px, 4vw, 54px);
    padding: clamp(28px, 4vw, 48px) 0;
    border-bottom: 1px solid rgba(18, 50, 39, 0.16);
}

.tsx-doc-article[hidden],
.tsx-blog-empty[hidden] {
    display: none !important;
}

.tsx-doc-article--with-media {
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
    align-items: stretch;
}

.tsx-doc-article__media {
    display: block;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid rgba(18, 50, 39, 0.18);
    background: rgba(255, 255, 255, 0.32);
}

.tsx-doc-article__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tsx-doc-article__media:hover img {
    transform: scale(1.04);
}

.tsx-doc-article__body {
    display: grid;
    align-content: center;
    gap: 18px;
}

.tsx-doc-article h3 {
    max-width: 760px;
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1.45rem, 2.5vw, 2.75rem);
    line-height: 1.08;
}

.tsx-doc-article h3 a {
    color: inherit;
    text-decoration: none;
}

.tsx-doc-article h3 a:hover {
    color: var(--color-primary);
}

.tsx-doc-article p:not(.tsx-doc-article__meta) {
    grid-column: 2;
    max-width: 780px;
    margin: -18px 0 0;
    color: var(--color-muted);
    line-height: 1.76;
}

.tsx-doc-article__meta {
    margin: 0;
    color: var(--color-accent);
    font-family: var(--font-cjk-sans);
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.5;
    text-transform: uppercase;
}

.tsx-doc-article__body p:not(.tsx-doc-article__meta) {
    grid-column: auto;
    margin: 0;
}

.tsx-blog-empty {
    padding: 28px 0;
    color: var(--color-muted);
    font-family: var(--font-cjk-sans);
    font-weight: 750;
}

.tsx-doc-article__meta,
.tsx-blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tsx-doc-article__meta span,
.tsx-doc-article__meta button,
.tsx-blog-article-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid rgba(36, 89, 67, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.tsx-doc-article__meta button {
    color: var(--color-accent);
    font: inherit;
    text-transform: inherit;
    cursor: pointer;
}

.tsx-doc-article__meta button:hover,
.tsx-doc-article__meta button.is-active {
    border-color: rgba(16, 44, 34, 0.92);
    background: rgba(16, 44, 34, 0.94);
    color: #ffffff;
}

.tsx-doc-article-list--cards .tsx-doc-article-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    padding: 0;
    border: 1px solid rgba(18, 50, 39, 0.12);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 46px rgba(20, 33, 27, 0.08);
}

.tsx-doc-article-card__media {
    display: block;
    overflow: hidden;
    background: rgba(238, 229, 212, 0.72);
}

.tsx-doc-article-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9.8;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tsx-doc-article-card:hover .tsx-doc-article-card__media img {
    transform: scale(1.045);
}

.tsx-doc-article-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 22px 24px 24px;
}

.tsx-doc-article-card__date {
    color: var(--color-accent);
    font-family: var(--font-cjk-sans);
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1;
}

.tsx-doc-article-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
}

.tsx-doc-article-card__meta span,
.tsx-doc-article-card__meta button {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 8px;
    border: 1px solid rgba(36, 89, 67, 0.16);
    border-radius: 999px;
    background: rgba(246, 244, 238, 0.9);
    color: rgba(20, 33, 27, 0.66);
    font-family: var(--font-cjk-sans);
    font-size: 0.72rem;
    font-weight: 820;
    line-height: 1.15;
}

.tsx-doc-article-card__meta button {
    cursor: pointer;
}

.tsx-doc-article-card__meta button:hover,
.tsx-doc-article-card__meta button.is-active {
    border-color: rgba(16, 44, 34, 0.92);
    background: rgba(16, 44, 34, 0.94);
    color: #ffffff;
}

.tsx-doc-article-list--cards .tsx-doc-article-card h3 {
    margin: 0;
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.08rem, 1.35vw, 1.34rem);
    font-weight: 850;
    line-height: 1.34;
}

.tsx-doc-article-list--cards .tsx-doc-article-card p:not(.tsx-doc-article__meta) {
    grid-column: auto;
    display: -webkit-box;
    margin: 0 0 18px;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 0.94rem;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.tsx-doc-article-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-top: auto;
    margin-left: auto;
    border-radius: 999px;
    background: var(--color-ink);
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.tsx-doc-article-card__arrow:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 1180px) {
    .tsx-doc-article-list--cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .tsx-doc-article-list--cards {
        grid-template-columns: 1fr;
    }

    .tsx-doc-article-card__body {
        padding: 20px 80px 22px 20px;
    }

    .tsx-doc-article-card__arrow {
        margin-right: auto;
        margin-left: 0;
    }
}

.tsx-blog-detail-hero {
    padding-top: clamp(128px, 16vw, 188px);
    background:
        linear-gradient(120deg, rgba(244, 239, 229, 0.92), rgba(231, 238, 231, 0.78)),
        var(--paper-texture);
}

.tsx-blog-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
    gap: clamp(34px, 6vw, 78px);
    align-items: end;
}

.tsx-blog-detail-hero__copy {
    display: grid;
    gap: 20px;
}

.tsx-blog-detail-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(2.8rem, 6vw, 6.8rem);
    line-height: 0.96;
}

.tsx-blog-detail__summary {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.75;
}

.tsx-blog-detail-hero__media {
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(18, 50, 39, 0.18);
    background: rgba(255, 255, 255, 0.32);
}

.tsx-blog-detail-hero__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.tsx-blog-detail-content {
    background:
        linear-gradient(rgba(251, 248, 239, 0.88), rgba(244, 239, 229, 0.92)),
        var(--paper-texture);
}

.tsx-blog-detail-content__inner {
    display: grid;
    gap: 0;
    max-width: 980px;
}

.tsx-blog-detail-point {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    padding: clamp(24px, 4vw, 42px) 0;
    border-top: 1px solid rgba(18, 50, 39, 0.16);
}

.tsx-blog-detail-point > span {
    width: 18px;
    height: 18px;
    margin-top: 0.35em;
    border: 1px solid rgba(16, 44, 34, 0.82);
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(16, 44, 34, 0.92) 0 34%, transparent 38%);
}

.tsx-blog-detail-point h2 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1.35rem, 2.6vw, 2.45rem);
    line-height: 1.18;
}

.tsx-sop-library {
    display: grid;
    gap: clamp(36px, 5vw, 64px);
    margin-top: 42px;
}

.tsx-sop-tools {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.2vw, 26px);
    flex-wrap: wrap;
    width: min(100%, 1120px);
    margin: 0 auto;
    color: #050505;
}

.tsx-sop-search {
    position: relative;
    flex: 0 1 416px;
    min-width: min(100%, 320px);
}

.tsx-sop-search::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(16, 44, 34, 0.58);
    border-radius: 999px;
    transform: translateY(-50%);
    pointer-events: none;
}

.tsx-sop-search::after {
    content: "";
    position: absolute;
    left: 28px;
    top: calc(50% + 8px);
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: rgba(16, 44, 34, 0.58);
    transform: rotate(45deg);
    transform-origin: left center;
    pointer-events: none;
}

.tsx-sop-tools input {
    width: 100%;
    min-height: 46px;
    padding: 10px 18px 10px 44px;
    border: 1px solid rgba(18, 50, 39, 0.2);
    border-radius: 2px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 248, 239, 0.7)),
        var(--paper-texture);
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: clamp(0.95rem, 1.25vw, 1.08rem);
    font-weight: 650;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 28px rgba(18, 50, 39, 0.06);
    appearance: none;
}

.tsx-sop-tools input::placeholder {
    color: rgba(20, 33, 27, 0.56);
    opacity: 1;
}

.tsx-sop-tools input:focus {
    outline: 2px solid rgba(30, 106, 66, 0.16);
    outline-offset: 2px;
    border-color: rgba(30, 106, 66, 0.48);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 246, 0.82)),
        var(--paper-texture);
}

.tsx-sop-search:focus-within::before {
    border-color: rgba(30, 106, 66, 0.86);
}

.tsx-sop-search:focus-within::after {
    background: rgba(30, 106, 66, 0.86);
}

.tsx-sop-filters {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    flex-wrap: wrap;
    flex: 1 1 auto;
    min-width: 0;
}

.tsx-sop-filter {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #050505;
    font-family: var(--font-cjk-sans);
    font-size: clamp(1rem, 1.55vw, 1.2rem);
    font-weight: 820;
    line-height: 1.25;
    cursor: pointer;
    appearance: none;
}

.tsx-sop-filter:hover,
.tsx-sop-filter:focus-visible {
    color: var(--color-primary-dark);
}

.tsx-sop-filter.is-active {
    color: #050505;
    font-weight: 900;
}

.tsx-sop-filter:focus-visible {
    outline: 2px solid rgba(5, 5, 5, 0.26);
    outline-offset: 4px;
}

.tsx-sop-category {
    padding-top: clamp(24px, 3vw, 36px);
    border-top: 1px solid rgba(18, 50, 39, 0.16);
}

.tsx-sop-category[hidden],
.tsx-sop-card[hidden] {
    display: none;
}

.tsx-sop-category:first-child {
    padding-top: 0;
    border-top: 0;
}

.tsx-sop-category__header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.tsx-sop-category__index {
    color: var(--color-accent);
    font-family: var(--font-cjk-sans);
    font-size: 0.82rem;
    font-weight: 900;
}

.tsx-sop-category h3 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.15;
}

.tsx-sop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
    margin-top: 24px;
}

.tsx-sop-card {
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 50, 39, 0.12);
    background: rgba(255, 255, 255, 0.58);
}

.tsx-sop-card--image {
    display: flex;
    flex-direction: column;
}

.tsx-sop-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 1227 / 789;
    overflow: hidden;
    background: #f5f0e5;
}

.tsx-sop-card__media--en {
    display: none;
}

html[data-language="en"] .tsx-sop-card__media--zh {
    display: none;
}

html[data-language="en"] .tsx-sop-card__media--en {
    display: block;
}

.tsx-sop-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.tsx-sop-card__media:hover .tsx-sop-card__image {
    transform: scale(1.018);
}

.tsx-sop-card__body {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 100%;
    padding: clamp(22px, 3vw, 32px);
    color: inherit;
    text-decoration: none;
}

.tsx-sop-card__body h4 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1.25rem, 1.7vw, 1.55rem);
    line-height: 1.22;
}

.tsx-sop-card__body p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.72;
}

.tsx-sop-card__body:hover h4 {
    color: var(--color-primary);
}

.tsx-sop-card--text {
    min-height: 220px;
}

.tsx-sop-empty {
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.46);
    color: var(--color-muted);
    text-align: center;
}

.tsx-sop-card > button {
    width: 100%;
    margin-top: 22px;
    padding: 13px 16px;
    border: 1px solid rgba(18, 50, 39, 0.18);
    background: rgba(16, 44, 34, 0.94);
    color: #ffffff;
    font-family: var(--font-cjk-sans);
    font-weight: 860;
    text-align: left;
    cursor: pointer;
}

.tsx-sop-card > button::after {
    content: "+";
    float: right;
}

.tsx-sop-card > button[aria-expanded="true"]::after {
    content: "-";
}

.tsx-sop-card__panel {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(18, 50, 39, 0.14);
}

.tsx-sop-steps + .tsx-sop-steps {
    margin-top: 22px;
}

.tsx-sop-steps h4 {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-family: var(--font-cjk-sans);
    font-size: 0.92rem;
    font-weight: 900;
}

.tsx-sop-steps ol {
    display: grid;
    gap: 10px;
    padding-left: 1.2em;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.62;
}

.tsx-faq-tabs {
    display: grid;
    grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
}

.tsx-faq-tabs__nav {
    position: sticky;
    top: 118px;
    display: grid;
    align-self: start;
    border-top: 1px solid rgba(18, 50, 39, 0.16);
}

.tsx-faq-tabs__nav button {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid rgba(18, 50, 39, 0.16);
    background: transparent;
    color: rgba(20, 33, 27, 0.66);
    font-family: var(--font-cjk-sans);
    font-weight: 860;
    text-align: left;
    cursor: pointer;
}

.tsx-faq-tabs__nav button[aria-selected="true"] {
    color: var(--color-primary);
}

.tsx-faq-tabs__panel .section-heading {
    margin-bottom: 20px;
}

.tsx-faq-actions {
    margin-top: 34px;
}

.tsx-contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.tsx-contact-page__form,
.tsx-contact-page__side {
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    padding-top: 30px;
}

.tsx-contact-page.tsx-page-sample-request .tsx-contact-page__grid {
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
}

.tsx-contact-page.tsx-page-sample-request .tsx-contact-page__form {
    width: 100%;
}

.tsx-contact-page.tsx-page-sample-request .tsx-form .button {
    justify-self: center;
}

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

.tsx-form__notice {
    grid-column: 1 / -1;
    padding: 14px 16px;
    border: 1px solid rgba(153, 58, 45, 0.28);
    background: rgba(255, 244, 240, 0.72);
    color: #7a2f24;
    font-weight: 750;
}

.tsx-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.tsx-form__field {
    display: grid;
    gap: 8px;
}

.tsx-form__field--textarea,
.tsx-form__field--multi-select {
    grid-column: 1 / -1;
}

.tsx-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.tsx-form label,
.tsx-form legend {
    color: rgba(20, 33, 27, 0.76);
    font-family: var(--font-cjk-sans);
    font-size: 0.86rem;
    font-weight: 850;
}

.tsx-form legend {
    padding: 0;
}

.tsx-form input,
.tsx-form select,
.tsx-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(18, 50, 39, 0.16);
    background: rgba(255, 255, 255, 0.44);
    color: var(--color-ink);
    font: inherit;
}

.tsx-form select[multiple] {
    min-height: 150px;
}

.tsx-form__choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
}

.tsx-form-choice {
    position: relative;
    min-width: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 12px 14px 12px 44px;
    border: 1px solid rgba(18, 50, 39, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.4);
    color: var(--color-ink);
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.tsx-form-choice:hover,
.tsx-form-choice:has(input:checked) {
    border-color: rgba(18, 98, 64, 0.46);
    background: rgba(235, 246, 238, 0.72);
}

.tsx-form-choice:has(input:checked) {
    box-shadow: inset 0 0 0 1px rgba(18, 98, 64, 0.16);
}

.tsx-form-choice input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
}

.tsx-form-choice__box {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(18, 50, 39, 0.28);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.78);
}

.tsx-form-choice__box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg);
}

.tsx-form-choice input:checked + .tsx-form-choice__box {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.tsx-form-choice input:checked + .tsx-form-choice__box::after {
    opacity: 1;
}

.tsx-form-choice input:focus-visible + .tsx-form-choice__box {
    outline: 2px solid rgba(24, 111, 73, 0.35);
    outline-offset: 3px;
}

.tsx-form-choice__label {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.36;
}

.tsx-form textarea {
    resize: vertical;
}

.tsx-form .button {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
}

.tsx-contact-direct {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(18, 50, 39, 0.14);
}

.tsx-contact-direct__item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
}

.tsx-contact-direct__item .tsx-doc-icon {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    margin: 0;
}

.tsx-contact-direct__item h3 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: 0.94rem;
    font-weight: 900;
}

.tsx-contact-direct__item p,
.tsx-contact-direct__item a,
.tsx-contact-direct__note {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.55;
}

.tsx-contact-direct__item a {
    text-decoration: none;
}

.tsx-contact-direct__item a:hover {
    color: var(--color-primary);
}

.tsx-thank-you {
    min-height: 72vh;
    display: grid;
    align-items: center;
}

.tsx-thank-you__inner {
    max-width: 980px;
    padding-top: clamp(80px, 10vw, 150px);
    padding-bottom: clamp(70px, 9vw, 130px);
}

.tsx-thank-you h1 {
    max-width: 860px;
    margin: 0 0 24px;
    color: var(--color-ink);
    font-size: clamp(2.6rem, 6vw, 6.8rem);
    line-height: 0.98;
}

.tsx-thank-you p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 0 34px;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.8;
}

.tsx-doc-structured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-doc-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 34px 0 0;
}

.tsx-doc-filter button {
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid rgba(18, 50, 39, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    color: rgba(20, 33, 27, 0.74);
    font-family: var(--font-cjk-sans);
    font-size: 0.86rem;
    font-weight: 850;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tsx-doc-filter button:hover,
.tsx-doc-filter button.is-active {
    border-color: rgba(16, 44, 34, 0.92);
    background: rgba(16, 44, 34, 0.94);
    color: #ffffff;
}

.tsx-solution-switcher {
    position: sticky;
    top: var(--header-offset, 84px);
    z-index: 15;
    margin-top: -1px;
    border-top: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.16);
    background:
        linear-gradient(180deg, rgba(249, 245, 235, 0.94), rgba(239, 232, 216, 0.92)),
        var(--paper-fiber);
    backdrop-filter: blur(14px);
}

.tsx-solution-switcher__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 0;
    padding-bottom: 0;
}

.tsx-solution-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 12px 18px;
    border-left: 1px solid rgba(18, 50, 39, 0.12);
    color: rgba(20, 33, 27, 0.72);
    font-family: var(--font-cjk-sans);
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.tsx-solution-switcher a:last-child {
    border-right: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-solution-switcher a:hover,
.tsx-solution-switcher a.is-active {
    background: rgba(16, 44, 34, 0.95);
    color: #ffffff;
}

.tsx-doc-offer-grid,
.tsx-doc-quote-grid,
.tsx-doc-pain-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-doc-offer-card,
.tsx-doc-quote-card,
.tsx-doc-pain-item {
    position: relative;
    min-height: 330px;
    padding: clamp(28px, 3.2vw, 42px);
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(239, 232, 216, 0.42)),
        rgba(255, 255, 255, 0.18);
}

.tsx-doc-offer-card::after,
.tsx-doc-quote-card::after,
.tsx-doc-pain-item::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 38px;
    height: 1px;
    background: rgba(185, 130, 43, 0.58);
}

.tsx-doc-offer-card h3,
.tsx-doc-quote-card h3,
.tsx-doc-pain-item h3 {
    margin: 0 0 16px;
    color: var(--color-ink);
    font-size: clamp(1.42rem, 2vw, 2.08rem);
    line-height: 1.12;
}

.tsx-doc-offer-card p,
.tsx-doc-quote-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(0.98rem, 0.9vw, 1.04rem);
    line-height: 1.78;
}

.tsx-doc-quote-card h3 {
    font-family: var(--font-cjk-serif);
    font-weight: 700;
}

.tsx-doc-pain-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tsx-doc-pain-item {
    min-height: 230px;
}

.tsx-doc-pain-item h3 {
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.08rem, 1.42vw, 1.34rem);
    line-height: 1.36;
}

.tsx-doc-prose--closing {
    margin-top: 30px;
}

.tsx-doc-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    padding: 11px 18px 12px;
    border: 1px solid rgba(16, 87, 54, 0.88);
    border-radius: 5px;
    background: rgba(22, 117, 72, 0.96);
    color: var(--color-primary);
    font-family: var(--font-cjk-sans);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(18, 50, 39, 0.1);
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tsx-doc-card-link,
.tsx-doc-card-link:visited {
    color: #ffffff;
}

.tsx-doc-card-link:hover {
    border-color: rgba(16, 68, 44, 0.98);
    background: rgba(16, 68, 44, 0.98);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(18, 50, 39, 0.16);
    transform: translateY(-1px);
}

.tsx-page-brands-oem-partners.tsx-section-product-categories-available-for-branding .tsx-doc-offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tsx-page-brands-oem-partners.tsx-section-product-categories-available-for-branding .tsx-doc-offer-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.tsx-page-brands-oem-partners.tsx-section-product-categories-available-for-branding .tsx-doc-card-link {
    align-self: center;
    margin-top: auto;
    text-align: center;
}

.tsx-page-fb-chains.tsx-section-getting-started .tsx-doc-step-actions {
    justify-content: center;
}

.tsx-page-fb-chains.tsx-section-getting-started .tsx-doc-step-actions .button--secondary {
    border-color: rgba(185, 130, 43, 0.72);
    background: rgba(185, 130, 43, 0.18);
    color: #5f4117;
}

.tsx-page-fb-chains.tsx-section-getting-started .tsx-doc-step-actions .button--secondary:hover {
    border-color: rgba(143, 91, 20, 0.88);
    background: rgba(185, 130, 43, 0.28);
    color: #3f2d13;
}

.tsx-doc-file-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-doc-file-item {
    min-height: 168px;
    padding: clamp(22px, 2.6vw, 32px);
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.2);
}

.tsx-doc-file-item .tsx-doc-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
}

.tsx-doc-file-item h3 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.35;
}

.tsx-doc-file-actions,
.tsx-doc-step-actions {
    margin-top: 34px;
}

.tsx-page-sample-request.tsx-section-not-ready-for-samples-yet .tsx-doc-prose {
    text-align: center;
}

.tsx-page-sample-request.tsx-section-not-ready-for-samples-yet .tsx-doc-file-actions {
    justify-content: center;
}

.tsx-doc-structured-card {
    position: relative;
    min-height: 300px;
    padding: clamp(26px, 3vw, 38px);
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.58), rgba(242, 233, 214, 0.5)),
        rgba(255, 255, 255, 0.18);
}

a.tsx-doc-structured-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.tsx-doc-icon {
    --icon-accent: var(--color-primary);
    --icon-wash: rgba(30, 106, 66, 0.12);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid color-mix(in srgb, var(--icon-accent) 28%, rgba(255, 255, 255, 0.5));
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.75), transparent 42%),
        linear-gradient(145deg, rgba(226, 185, 91, 0.22), var(--icon-wash));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 28px rgba(18, 50, 39, 0.08);
    color: var(--icon-accent);
}

.tsx-doc-icon::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid color-mix(in srgb, var(--icon-accent) 22%, transparent);
    border-radius: inherit;
    opacity: 0.55;
}

.tsx-doc-icon svg {
    position: relative;
    z-index: 1;
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tsx-doc-icon--email,
.tsx-doc-icon--wechat {
    --icon-accent: #0f7f67;
    --icon-wash: rgba(15, 127, 103, 0.13);
}

.tsx-doc-icon--whatsapp,
.tsx-doc-icon--serve {
    --icon-accent: #137a42;
    --icon-wash: rgba(19, 122, 66, 0.14);
}

.tsx-doc-icon--address,
.tsx-doc-icon--export {
    --icon-accent: #9b6a22;
    --icon-wash: rgba(155, 106, 34, 0.15);
}

.tsx-doc-icon--document,
.tsx-doc-icon--quality {
    --icon-accent: #1c5f85;
    --icon-wash: rgba(28, 95, 133, 0.13);
}

.tsx-doc-icon--lab,
.tsx-doc-icon--extract,
.tsx-doc-icon--formula {
    --icon-accent: #6c6631;
    --icon-wash: rgba(108, 102, 49, 0.14);
}

.tsx-doc-icon--team,
.tsx-doc-icon--process,
.tsx-doc-icon--sample {
    --icon-accent: #6f5131;
    --icon-wash: rgba(111, 81, 49, 0.13);
}

.tsx-doc-structured-card__media {
    position: relative;
    margin: calc(clamp(26px, 3vw, 38px) * -1) calc(clamp(26px, 3vw, 38px) * -1) 28px;
    overflow: hidden;
    border-bottom: 1px solid rgba(18, 50, 39, 0.12);
    background: rgba(16, 44, 34, 0.08);
}

.tsx-doc-structured-card__media--en {
    display: none;
}

html[data-language="en"] .tsx-doc-structured-card__media--zh {
    display: none;
}

html[data-language="en"] .tsx-doc-structured-card__media--en {
    display: block;
}

.tsx-doc-structured-card__media::after {
    content: none;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 44%, rgba(14, 38, 29, 0.22)),
        var(--paper-texture);
    opacity: 0.35;
    pointer-events: none;
}

.tsx-doc-structured-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 2.65;
    object-fit: cover;
    transition: transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.tsx-doc-structured-card:hover .tsx-doc-structured-card__media img {
    transform: scale(1.045);
}

.tsx-doc-structured-card::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 30px;
    width: 32px;
    height: 32px;
    border-top: 1px solid rgba(185, 130, 43, 0.58);
    border-right: 1px solid rgba(185, 130, 43, 0.58);
}

.tsx-doc-structured-card[hidden] {
    display: none;
}

.tsx-doc-structured-card h3 {
    max-width: 92%;
    margin: 0 0 16px;
    color: var(--color-ink);
    font-size: clamp(1.32rem, 1.9vw, 2rem);
    line-height: 1.12;
}

.tsx-doc-structured-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(0.98rem, 0.9vw, 1.04rem);
    line-height: 1.78;
}

.tsx-doc-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.tsx-doc-meta-list li {
    padding: 7px 10px;
    border: 1px solid rgba(18, 50, 39, 0.12);
    background: rgba(255, 255, 255, 0.36);
    color: rgba(20, 33, 27, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.tsx-doc-layout--comparison .tsx-doc-structured-grid,
.tsx-doc-layout--download-gate .tsx-doc-structured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tsx-doc-layout--product-cards .tsx-doc-structured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tsx-doc-layout--product-cards .tsx-doc-structured-card {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.tsx-doc-structured-card[hidden],
.tsx-doc-layout--product-cards .tsx-doc-structured-card[hidden] {
    display: none !important;
}

.tsx-doc-layout--product-cards .tsx-doc-structured-card--cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(145deg, rgba(240, 226, 195, 0.72), rgba(255, 255, 255, 0.46)),
        rgba(255, 255, 255, 0.2);
}

.tsx-doc-structured-card__media--cta::after {
    opacity: 0.5;
    background:
        linear-gradient(180deg, rgba(14, 38, 29, 0.04), rgba(14, 38, 29, 0.32)),
        var(--paper-texture);
}

.tsx-doc-structured-card__media--cta img {
    aspect-ratio: 4 / 2.65;
    filter: saturate(0.96) contrast(1.02);
}

.tsx-doc-structured-card--cta .tsx-doc-icon {
    --icon-accent: var(--color-accent);
    --icon-wash: rgba(185, 130, 43, 0.15);
}

.tsx-doc-structured-card--certificate-note {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78), transparent 34%),
        linear-gradient(145deg, rgba(246, 239, 222, 0.86), rgba(225, 242, 230, 0.42)),
        rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 4px 0 0 rgba(30, 106, 66, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 20px 46px rgba(20, 33, 27, 0.07);
}

.tsx-doc-structured-card--certificate-note .tsx-doc-icon {
    --icon-accent: var(--color-accent);
    --icon-wash: rgba(185, 130, 43, 0.16);
}

.tsx-doc-structured-card__cta {
    width: fit-content;
    margin-top: 28px;
    margin-bottom: 0;
}

.tsx-doc-layout--product-cards .tsx-doc-meta-list li {
    border-color: rgba(30, 106, 66, 0.18);
    background: rgba(30, 106, 66, 0.07);
    color: rgba(20, 33, 27, 0.76);
}

.tsx-doc-layout--product-cards .tsx-doc-meta-list {
    margin-top: auto;
    padding-top: 24px;
}

.tsx-doc-layout--comparison .tsx-doc-structured-card,
.tsx-doc-layout--download-gate .tsx-doc-structured-card {
    min-height: 320px;
    padding-top: clamp(30px, 4vw, 48px);
}

.tsx-doc-layout--certification-wall .tsx-doc-structured-card {
    min-height: 250px;
    padding-top: 86px;
}

.tsx-doc-layout--certification-wall .tsx-doc-structured-card {
    cursor: pointer;
}

.tsx-doc-layout--certification-wall .tsx-doc-structured-card--certificate-note {
    cursor: default;
}

.tsx-doc-layout--certification-wall .tsx-doc-structured-card .tsx-doc-icon {
    position: absolute;
    top: 28px;
    left: 28px;
    margin: 0;
}

.tsx-doc-hero--certifications {
    min-height: auto;
    padding: clamp(56px, 7vw, 92px) 0 clamp(60px, 8vw, 96px);
}

.tsx-doc-hero--certifications::after {
    bottom: 30px;
}

.tsx-certifications-hero {
    position: relative;
    z-index: 1;
}

.tsx-certifications-hero__header {
    max-width: 940px;
    margin: 0 auto clamp(34px, 4vw, 54px);
    text-align: center;
}

.tsx-certifications-hero__grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(420px, 0.9fr);
    gap: clamp(38px, 4.5vw, 72px);
    align-items: start;
}

.tsx-doc-hero--certifications h1 {
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.55rem, 3.2vw, 4rem);
    line-height: 1.08;
}

[data-language="zh"] .tsx-doc-hero--certifications h1 {
    max-width: 940px;
    font-size: clamp(2.45rem, 3vw, 3.55rem);
    line-height: 1.2;
}

.tsx-certifications-hero__copy {
    position: relative;
    align-self: start;
    justify-self: end;
    width: min(100%, 470px);
    min-height: clamp(380px, 27vw, 430px);
    margin-top: clamp(54px, 6vw, 78px);
    padding: clamp(72px, 5.8vw, 88px) clamp(46px, 4vw, 58px) clamp(48px, 5vw, 64px);
    top: clamp(-60px, -3.2vw, -42px);
    left: clamp(56px, 4.6vw, 88px);
    border: 1px solid rgba(18, 50, 39, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.12)),
        rgba(250, 247, 239, 0.28);
    box-shadow: 0 16px 32px rgba(20, 33, 27, 0.04);
}

.tsx-certifications-hero__copy::before,
.tsx-certifications-hero__copy::after {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    border-color: rgba(185, 130, 43, 0.48);
    pointer-events: none;
}

.tsx-certifications-hero__copy::before {
    top: clamp(52px, 5vw, 70px);
    right: clamp(22px, 2.4vw, 32px);
    border-top: 1px solid;
    border-right: 1px solid;
}

.tsx-certifications-hero__copy::after {
    bottom: clamp(22px, 2.4vw, 32px);
    left: clamp(22px, 2.4vw, 32px);
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.tsx-doc-hero--certifications .tsx-doc-hero__lead {
    max-width: 21em;
    margin: 0;
    font-size: clamp(1.04rem, 1.08vw, 1.16rem);
    line-height: 2;
}

.tsx-certifications-hero__media,
.tsx-certification-card__media,
.tsx-certifications-gi__media,
.tsx-certifications-documents__visual {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 58px rgba(20, 33, 27, 0.1);
}

.tsx-certifications-hero__media {
    margin: 0;
    border-color: rgba(18, 50, 39, 0.16);
    background: #fff;
}

.tsx-certifications-hero__media::before,
.tsx-certifications-gi__media::before,
.tsx-certifications-documents__visual::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.tsx-certification-image__asset {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center;
    transition: transform 560ms cubic-bezier(0.19, 1, 0.22, 1);
}

.tsx-certification-image__asset--en {
    display: none;
}

html[data-language="en"] .tsx-certification-image__asset--zh {
    display: none;
}

html[data-language="en"] .tsx-certification-image__asset--en {
    display: block;
}

.tsx-certification-image__asset--hero {
    aspect-ratio: 2749 / 1525;
    object-fit: cover;
}

.tsx-certifications-hero__media:hover .tsx-certification-image__asset,
.tsx-certification-card:hover .tsx-certification-image__asset,
.tsx-certification-card:focus-visible .tsx-certification-image__asset,
.tsx-certifications-gi__media:hover .tsx-certification-image__asset,
.tsx-certifications-documents__visual:hover .tsx-certification-image__asset {
    transform: scale(1.028);
}

.tsx-certifications-hero__media:active .tsx-certification-image__asset,
.tsx-certification-card:active .tsx-certification-image__asset,
.tsx-certifications-gi__media:active .tsx-certification-image__asset,
.tsx-certifications-documents__visual:active .tsx-certification-image__asset {
    transform: scale(1.045);
}

.tsx-page-certifications .section-heading {
    margin-bottom: clamp(40px, 5.2vw, 70px);
}

.tsx-certifications-core-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 34px);
}

.tsx-certification-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(18, 50, 39, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
        rgba(251, 248, 240, 0.72);
    box-shadow:
        inset 0 3px 0 rgba(185, 130, 43, 0.46),
        0 18px 42px rgba(20, 33, 27, 0.07);
    outline: 0;
}

.tsx-certification-card:focus-visible {
    box-shadow:
        inset 0 3px 0 rgba(185, 130, 43, 0.7),
        0 0 0 3px rgba(30, 106, 66, 0.16),
        0 18px 42px rgba(20, 33, 27, 0.08);
}

.tsx-certification-card__media {
    margin: 0;
    border-width: 0 0 1px;
    box-shadow: none;
    background: #fff;
    cursor: zoom-in;
}

.tsx-certification-card__media-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.tsx-certification-card__media .tsx-certification-image__asset {
    height: clamp(280px, 30vw, 410px);
    object-fit: contain;
}

.tsx-certification-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: clamp(22px, 2.5vw, 32px);
}

.tsx-certification-card h3 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1.18rem, 1.34vw, 1.46rem);
    line-height: 1.32;
}

[data-language="zh"] .tsx-certification-card h3 {
    font-size: clamp(1.2rem, 1.28vw, 1.42rem);
    line-height: 1.42;
}

.tsx-certification-card__applicable,
.tsx-certification-card__meaning,
.tsx-certifications-gi__copy p,
.tsx-certifications-documents__intro,
.tsx-certifications-documents__list li {
    margin: 0;
    color: rgba(17, 47, 37, 0.72);
    font-size: clamp(0.98rem, 1.02vw, 1.08rem);
    line-height: 1.78;
}

.tsx-certification-card__applicable {
    padding: 12px 14px;
    border-left: 3px solid rgba(30, 106, 66, 0.58);
    background: rgba(30, 106, 66, 0.07);
    color: rgba(17, 47, 37, 0.82);
}

.tsx-certification-card__meaning {
    padding-top: 2px;
}

.tsx-certification-card--document-note .tsx-certification-card__body {
    justify-content: center;
    padding-top: clamp(34px, 4vw, 50px);
    padding-bottom: clamp(24px, 3vw, 38px);
    background:
        linear-gradient(145deg, rgba(30, 106, 66, 0.08), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 247, 239, 0.66));
}

.tsx-certification-card__cta {
    position: relative;
    z-index: 2;
    width: min(100%, 300px);
    min-height: 54px;
    border-color: rgba(18, 50, 39, 0.92);
    background:
        linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 16px 34px rgba(18, 50, 39, 0.16);
    font-size: clamp(1rem, 1.02vw, 1.12rem);
}

.tsx-certification-card__cta::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.tsx-certification-card__cta:hover,
.tsx-certification-card__cta:focus-visible {
    border-color: var(--color-primary-dark);
    background:
        linear-gradient(135deg, var(--color-primary), #1f7b4c);
    color: #fff;
}

.tsx-certification-card__ornament {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(178px, 17vw, 228px);
    padding: clamp(26px, 2.7vw, 34px);
    border: 1px solid rgba(18, 50, 39, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.16)),
        rgba(255, 255, 255, 0.32);
}

.tsx-certification-card__ornament::before,
.tsx-certification-card__ornament::after {
    content: "";
    position: absolute;
    border-color: rgba(185, 130, 43, 0.54);
    pointer-events: none;
}

.tsx-certification-card__ornament::before {
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-top: 1px solid;
    border-right: 1px solid;
}

.tsx-certification-card__ornament::after {
    bottom: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.tsx-certification-card__ornament span {
    position: absolute;
    left: clamp(22px, 2.6vw, 34px);
    right: clamp(22px, 2.6vw, 34px);
    display: block;
    height: 38px;
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background:
        linear-gradient(90deg, rgba(30, 106, 66, 0.18), rgba(30, 106, 66, 0.06) 52%, transparent 52%),
        linear-gradient(90deg, rgba(185, 130, 43, 0.24), transparent 18%);
    background-size: 100% 1px, 44px 1px;
    background-repeat: no-repeat;
    background-position: left center, left calc(50% + 10px);
}

.tsx-certification-card__ornament span:first-child {
    top: clamp(28px, 3vw, 40px);
}

.tsx-certification-card__ornament span:last-child {
    bottom: clamp(28px, 3vw, 40px);
}

.tsx-page-certifications.tsx-section-geographical-indication-protection {
    background-color: #123827;
    background-image:
        radial-gradient(circle at 14% 14%, rgba(230, 222, 189, 0.16), transparent 28%),
        linear-gradient(135deg, #092c20 0%, #1f6a42 58%, #103525 100%);
    color: rgba(250, 247, 239, 0.88);
}

.tsx-page-certifications.tsx-section-geographical-indication-protection::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 42%),
        repeating-linear-gradient(90deg, rgba(250, 247, 239, 0.08) 0 1px, transparent 1px min(9.2vw, 138px)),
        repeating-linear-gradient(0deg, rgba(250, 247, 239, 0.045) 0 1px, transparent 1px 9px);
}

.tsx-page-certifications.tsx-section-geographical-indication-protection .section-heading h2 {
    color: #fbf7e8;
}

.tsx-certifications-gi-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
    gap: clamp(40px, 5.6vw, 86px);
    align-items: center;
    padding: clamp(42px, 5.8vw, 74px);
    overflow: hidden;
    border: 1px solid rgba(230, 222, 189, 0.26);
    background:
        linear-gradient(135deg, rgba(250, 247, 239, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(4, 31, 22, 0.32);
    color: rgba(250, 247, 239, 0.88);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 28px 70px rgba(14, 37, 29, 0.18);
}

.tsx-certifications-gi-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(230, 222, 189, 0.22);
    pointer-events: none;
}

.tsx-certifications-gi-panel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: clamp(24px, 4vw, 58px);
    width: clamp(44px, 5vw, 72px);
    background:
        linear-gradient(180deg, rgba(230, 222, 189, 0.18), transparent 16%, transparent 84%, rgba(230, 222, 189, 0.16)),
        rgba(3, 31, 22, 0.26);
    opacity: 0.72;
    pointer-events: none;
}

.tsx-certifications-gi__media {
    position: relative;
    z-index: 1;
    margin: 0;
    border-color: rgba(230, 222, 189, 0.28);
    background: #d8bb68;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
    cursor: zoom-in;
}

.tsx-certifications-gi__media .tsx-certification-image__asset {
    aspect-ratio: 1137 / 762;
    object-fit: cover;
}

.tsx-certifications-gi__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(20px, 2.6vw, 32px);
    padding: clamp(28px, 3.6vw, 46px);
    border: 1px solid rgba(230, 222, 189, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.04);
    box-shadow: inset 4px 0 0 rgba(230, 222, 189, 0.45);
}

.tsx-certifications-gi__copy h3 {
    max-width: 760px;
    margin: 0;
    color: #fbf7e8;
    font-size: clamp(1.9rem, 2.45vw, 2.75rem);
    line-height: 1.16;
}

[data-language="zh"] .tsx-certifications-gi__copy h3 {
    line-height: 1.28;
}

.tsx-certifications-gi__copy p + p {
    margin-top: 0;
}

.tsx-certifications-gi__copy p {
    color: rgba(250, 247, 239, 0.82);
}

.tsx-certifications-gi__note {
    padding: clamp(18px, 2.2vw, 24px);
    border: 1px solid rgba(230, 222, 189, 0.34);
    background: rgba(245, 239, 226, 0.1);
    color: rgba(250, 247, 239, 0.88);
}

.tsx-certifications-documents {
    display: grid;
    grid-template-columns: minmax(0, 860px);
    gap: clamp(30px, 5vw, 72px);
    justify-content: center;
    align-items: center;
}

.tsx-certifications-documents__list {
    padding: clamp(30px, 4.4vw, 54px);
    border: 1px solid rgba(18, 50, 39, 0.13);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 239, 226, 0.44)),
        rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 3px 0 rgba(185, 130, 43, 0.42);
}

.tsx-certifications-documents__list ul {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.tsx-certifications-documents__list li {
    position: relative;
    padding-left: 26px;
}

.tsx-certifications-documents__list li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 5px rgba(30, 106, 66, 0.1);
}

.tsx-certifications-documents__visual {
    margin: 0;
    background: #f6f4e8;
    cursor: zoom-in;
}

.tsx-certifications-documents__visual .tsx-certification-image__asset {
    aspect-ratio: 1672 / 2508;
    object-fit: cover;
}

.tsx-doc-layout--icon-grid .tsx-doc-grid,
.tsx-doc-layout--team-grid .tsx-doc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tsx-doc-layout--icon-grid .tsx-doc-card,
.tsx-doc-layout--team-grid .tsx-doc-card {
    padding-top: 34px;
}

.tsx-doc-layout--icon-grid .tsx-doc-card::before,
.tsx-doc-layout--team-grid .tsx-doc-card::before {
    display: none;
}

.tsx-page-our-team.tsx-section-team-introduction .section-heading {
    margin-bottom: clamp(42px, 5.4vw, 70px);
}

.tsx-team-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 30px);
}

.tsx-team-profile {
    min-width: 0;
}

.tsx-team-profile__portrait {
    margin: 0;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(18, 50, 39, 0.16);
    background-color: #f3eee4;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 24px 54px rgba(20, 33, 27, 0.1);
}

.tsx-team-profile__portrait--bruce-li {
    background-image: url("/wp-content/themes/teasourcex/assets/img/our-team/bruce-li.jpg");
    background-position: center 12%;
}

.tsx-team-profile__portrait--winfy-zou {
    background-image: url("/wp-content/themes/teasourcex/assets/img/our-team/winfy-zou.jpg");
    background-position: center 14%;
}

.tsx-team-profile__portrait--jack-ma {
    background-image: url("/wp-content/themes/teasourcex/assets/img/our-team/jack-ma.jpg");
    background-position: center 16%;
}

.tsx-team-profile__portrait--vickie {
    background-image: url("/wp-content/themes/teasourcex/assets/img/our-team/vickie.jpg");
    background-position: center 12%;
}

.tsx-team-profile__body {
    padding-top: 20px;
}

.tsx-team-profile h3 {
    margin: 0 0 8px;
    color: var(--color-ink);
    font-size: clamp(1.2rem, 1.5vw, 1.58rem);
    line-height: 1.12;
}

.tsx-team-profile__role {
    margin: 0;
    color: rgba(18, 50, 39, 0.62);
    font-family: var(--font-cjk-sans);
    font-size: 0.95rem;
    font-weight: 760;
    line-height: 1.42;
}

.tsx-team-responsibility-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(28px, 3.4vw, 42px);
    gap: clamp(18px, 2.2vw, 30px);
}

.tsx-team-responsibility {
    min-width: 0;
    padding: clamp(24px, 2.35vw, 32px);
    border: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.24);
}

.tsx-team-responsibility p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(0.96rem, 0.9vw, 1.02rem);
    line-height: 1.76;
}

.tsx-team-work-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-team-work-item {
    min-width: 0;
    padding: clamp(28px, 3vw, 42px);
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.25);
}

.tsx-team-work-item h3 {
    margin: 0 0 18px;
    color: var(--color-ink);
    font-size: clamp(1.18rem, 1.45vw, 1.54rem);
    line-height: 1.2;
}

.tsx-team-work-item p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.78;
}

.tsx-factory-profile > .container {
    display: grid;
    width: min(calc(100% - clamp(58px, 8.5vw, 140px)), 1180px);
    gap: clamp(34px, 4.4vw, 58px);
}

.tsx-factory-capacity-summary > .container {
    width: min(calc(100% - clamp(58px, 8.5vw, 140px)), 1180px);
}

.tsx-factory-profile__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(38px, 5.2vw, 72px);
    align-items: start;
}

.tsx-factory-profile--image-right .tsx-factory-profile__intro {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.tsx-factory-profile--image-right .tsx-factory-profile__media {
    order: 2;
}

.tsx-factory-profile__media {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(50, 132, 88, 0.18);
    background: rgba(255, 255, 255, 0.34);
    box-shadow:
        0 24px 62px rgba(20, 33, 27, 0.1),
        inset 0 0 0 6px rgba(255, 255, 255, 0.28);
}

.tsx-factory-profile__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
}

.tsx-factory-profile--image-right .tsx-factory-profile__media img {
    aspect-ratio: 1.68 / 1;
}

.tsx-factory-profile__copy h2 {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1.9rem, 2.7vw, 3.25rem);
    line-height: 1.18;
}

.tsx-factory-profile__lead {
    margin: clamp(24px, 3vw, 38px) 0 0;
    color: var(--color-muted);
    font-size: clamp(1.02rem, 1.12vw, 1.2rem);
    line-height: 1.9;
}

.tsx-factory-profile__lead + .tsx-factory-profile__lead {
    margin-top: 16px;
}

.tsx-factory-stat-row,
.tsx-factory-summary-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.7vw, 22px);
}

.tsx-factory-capacity-summary .tsx-factory-summary-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tsx-factory-capacity-summary .tsx-factory-stat {
    padding-inline: clamp(18px, 1.8vw, 26px);
}

.tsx-factory-stat {
    position: relative;
    min-width: 0;
    padding: clamp(22px, 2.45vw, 34px);
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(50, 132, 88, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(244, 238, 224, 0.2)),
        rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 44px rgba(20, 33, 27, 0.055);
}

.tsx-factory-stat::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, rgba(178, 130, 42, 0.64), rgba(50, 132, 88, 0.22));
}

.tsx-factory-stat__label {
    margin: 0 0 10px;
    color: rgba(18, 50, 39, 0.68);
    font-family: var(--font-cjk-sans);
    font-size: 0.95rem;
    font-weight: 760;
    line-height: 1.35;
}

.tsx-factory-stat__value {
    display: block;
    color: var(--color-ink);
    font-size: clamp(1.65rem, 2.8vw, 3rem);
    font-weight: 760;
    line-height: 1.05;
}

.tsx-factory-capacity-summary .tsx-factory-stat__value {
    font-size: clamp(1.42rem, 1.9vw, 2rem);
    line-height: 1.12;
    white-space: normal;
    text-wrap: balance;
}

.tsx-factory-block-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(28px, 4vw, 58px);
}

.tsx-factory-block {
    min-width: 0;
    padding: clamp(24px, 2.65vw, 36px);
    border: 1px solid rgba(50, 132, 88, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(244, 238, 224, 0.18)),
        rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 46px rgba(20, 33, 27, 0.052);
}

.tsx-factory-block h3 {
    margin: 0 0 16px;
    color: var(--color-ink);
    font-size: clamp(1.18rem, 1.45vw, 1.58rem);
    line-height: 1.22;
}

.tsx-factory-block p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.82;
}

.tsx-doc-layout--scenario-strip .section-heading {
    margin-bottom: 46px;
}

.tsx-doc-scenario-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-doc-scenario {
    min-height: 180px;
    padding: 30px 24px;
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.18);
}

.tsx-doc-scenario .tsx-doc-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.tsx-doc-scenario h3 {
    display: grid;
    gap: 8px;
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: clamp(1rem, 1.35vw, 1.24rem);
    line-height: 1.35;
}

.tsx-doc-scenario__label {
    font-weight: 860;
}

.tsx-doc-scenario__detail {
    color: rgba(20, 33, 27, 0.66);
    font-size: 0.94em;
    font-weight: 500;
    line-height: 1.55;
}

.tsx-doc-highlight {
    max-width: 1060px;
    margin-top: 42px;
    padding: clamp(34px, 5vw, 62px);
    border: 1px solid rgba(18, 50, 39, 0.2);
    background:
        linear-gradient(125deg, rgba(15, 45, 34, 0.98), rgba(29, 94, 59, 0.88)),
        var(--color-primary-dark);
    color: #ffffff;
}

.tsx-doc-highlight .tsx-doc-icon {
    border-color: rgba(240, 197, 106, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #f0c56a;
}

.tsx-doc-highlight h3 {
    max-width: 780px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1;
}

.tsx-doc-highlight p {
    max-width: 860px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.78;
}

.tsx-doc-highlight__meta {
    color: #f0c56a !important;
    font-family: var(--font-cjk-sans);
    font-weight: 850;
}

.tsx-page-fb-chains.tsx-section-the-3-second-standard .tsx-doc-highlight h3 {
    max-width: none;
    font-size: clamp(1.55rem, 2.35vw, 2.45rem);
    line-height: 1.12;
    white-space: nowrap;
}

.tsx-doc-layout--timeline .tsx-doc-timeline {
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
}

.tsx-doc-layout--timeline .tsx-doc-card {
    scroll-snap-align: start;
}

.tsx-doc-layout--timeline .section-heading {
    max-width: 860px;
}

.tsx-doc-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
    padding: 14px 0;
    border-top: 1px solid rgba(18, 50, 39, 0.16);
    border-bottom: 1px solid rgba(18, 50, 39, 0.16);
}

.tsx-doc-metric {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 214px;
    padding: clamp(28px, 3.2vw, 42px) clamp(18px, 2.4vw, 30px);
    border: 1px solid rgba(18, 50, 39, 0.13);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(232, 222, 199, 0.28)),
        var(--paper-fiber);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.64),
        0 18px 42px rgba(20, 33, 27, 0.055);
    text-align: center;
    overflow: hidden;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.tsx-doc-metric::before,
.tsx-doc-metric::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.tsx-doc-metric::before {
    top: 20px;
    left: 22px;
    width: 34px;
    height: 2px;
    background: #d0a247;
}

.tsx-doc-metric::after {
    right: 18px;
    bottom: 18px;
    width: 22px;
    height: 22px;
    border-right: 1px solid rgba(208, 162, 71, 0.82);
    border-bottom: 1px solid rgba(208, 162, 71, 0.82);
}

.tsx-doc-metric:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 50, 39, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 22px 54px rgba(20, 33, 27, 0.095);
}

.tsx-doc-metric h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    margin: 0;
    color: var(--color-primary-dark);
    font-family: var(--font-sans);
    width: 100%;
    font-size: clamp(2.1rem, 3vw, 3.55rem);
    font-weight: 760;
    font-variant-numeric: tabular-nums;
    line-height: 0.95;
    letter-spacing: 0;
}

[data-language="zh"] .tsx-doc-metric h3 {
    font-family: var(--font-cjk-sans);
}

.tsx-doc-metric__number {
    display: block;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    font-variant-numeric: tabular-nums;
    text-align: center;
    white-space: nowrap;
}

.tsx-doc-metric__number[data-count-up="30000"] {
    font-size: clamp(2rem, 2.8vw, 3.35rem);
}

.tsx-doc-metric__unit {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 12px 4px;
    border: 1px solid rgba(18, 50, 39, 0.16);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(247, 243, 234, 0.9), rgba(232, 222, 199, 0.62));
    color: rgba(18, 50, 39, 0.72);
    font-family: var(--font-cjk-sans);
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
    white-space: nowrap;
}

[data-language="zh"] .tsx-doc-metric__unit {
    font-size: 0.86rem;
}

.tsx-doc-metric p {
    max-width: 260px;
    margin: 14px auto 0;
    color: rgba(20, 33, 27, 0.72);
    font-family: var(--font-cjk-sans);
    font-size: 0.94rem;
    font-weight: 820;
    line-height: 1.45;
}

.tsx-page-tea-ingredients.tsx-section-factory-credentials .tsx-doc-prose {
    max-width: 980px;
    font-size: clamp(1.12rem, 1.08vw, 1.24rem);
    line-height: 1.88;
}

.tsx-page-tea-ingredients.tsx-section-product-range .tsx-doc-product-series__panel p {
    font-size: clamp(1.08rem, 1.05vw, 1.2rem);
    line-height: 1.82;
}

.tsx-page-tea-ingredients.tsx-section-product-range .tsx-doc-product-series__meta p {
    font-size: clamp(1.02rem, 0.98vw, 1.14rem);
    line-height: 1.72;
}

.tsx-doc-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
    counter-reset: doc-step;
}

.tsx-doc-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(16px, 2.5vw, 26px);
    align-items: start;
    min-height: 170px;
    padding: clamp(24px, 3vw, 36px);
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.18);
}

.tsx-doc-step .tsx-doc-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
}

.tsx-doc-step:last-child {
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
}

.tsx-doc-step h3 {
    margin: 0 0 10px;
    color: var(--color-ink);
    font-size: clamp(1.16rem, 1.6vw, 1.55rem);
    line-height: 1.18;
}

.tsx-doc-step p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(0.98rem, 1.2vw, 1.1rem);
    line-height: 1.62;
}

.tsx-sample-flow {
    max-width: 960px;
    margin-top: 34px;
}

.tsx-page-sample-request.tsx-section-what-happens-next .tsx-sample-flow {
    margin-right: auto;
    margin-left: auto;
}

.tsx-sample-flow__intro {
    margin: 0 0 12px;
    color: var(--color-accent);
    font-family: var(--font-cjk-sans);
    font-size: 0.95rem;
    font-weight: 850;
}

.tsx-page-sample-request.tsx-section-what-happens-next .tsx-sample-flow__intro {
    text-align: center;
}

.tsx-sample-flow__list {
    border-top: 1px solid rgba(18, 50, 39, 0.2);
}

.tsx-sample-flow__line {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: clamp(18px, 3vw, 34px);
    padding: clamp(20px, 3vw, 30px) 0;
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
}

.tsx-sample-flow__index {
    color: rgba(18, 98, 64, 0.64);
    font-family: var(--font-sans);
    font-size: 1.18rem;
    font-weight: 780;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.tsx-sample-flow h3 {
    margin: 0 0 8px;
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.08rem, 1.3vw, 1.28rem);
    font-weight: 850;
    line-height: 1.28;
}

.tsx-sample-flow p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(0.98rem, 1.08vw, 1.06rem);
    line-height: 1.72;
}

.tsx-sample-flow__note {
    max-width: 760px;
    color: rgba(20, 33, 27, 0.78);
}

.tsx-page-smart-beverage-machine.tsx-section-technical-highlights,
.tsx-page-smart-beverage-machine.tsx-section-four-technical-highlights {
    background: #14231c;
    color: #ffffff;
}

.tsx-page-smart-beverage-machine.tsx-section-technical-highlights .section-heading h2,
.tsx-page-smart-beverage-machine.tsx-section-technical-highlights .section-heading p,
.tsx-page-smart-beverage-machine.tsx-section-four-technical-highlights .section-heading h2,
.tsx-page-smart-beverage-machine.tsx-section-four-technical-highlights .section-heading p {
    color: #ffffff;
}

.tsx-smart-technical-grid,
.tsx-smart-hardware-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
    border-left: 1px solid rgba(18, 50, 39, 0.12);
}

.tsx-smart-technical-grid {
    border-color: rgba(255, 255, 255, 0.14);
}

.tsx-smart-technical-grid__card,
.tsx-smart-hardware-grid__card {
    min-height: 320px;
    padding: clamp(24px, 2.8vw, 34px);
    border-right: 1px solid rgba(18, 50, 39, 0.12);
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
}

.tsx-smart-technical-grid__card {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.tsx-smart-hardware-grid__card {
    position: relative;
    min-height: 360px;
    padding-top: clamp(30px, 3.2vw, 42px);
    background: rgba(255, 255, 255, 0.22);
}

.tsx-smart-hardware-grid__card::before {
    content: "STEP";
    display: block;
    margin-bottom: 4px;
    color: rgba(18, 98, 64, 0.54);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.tsx-smart-technical-grid__index,
.tsx-smart-hardware-grid__index {
    display: block;
    margin-bottom: 34px;
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 4vw, 4.6rem);
    font-weight: 780;
    font-variant-numeric: tabular-nums;
    line-height: 0.92;
}

.tsx-smart-technical-grid__index {
    color: rgba(208, 161, 72, 0.95);
}

.tsx-smart-hardware-grid__index {
    color: rgba(18, 98, 64, 0.68);
}

.tsx-smart-technical-grid h3,
.tsx-smart-hardware-grid h3 {
    margin: 0 0 14px;
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.1rem, 1.25vw, 1.34rem);
    line-height: 1.24;
}

.tsx-smart-technical-grid h3,
.tsx-smart-technical-grid p {
    color: #ffffff;
}

.tsx-smart-technical-grid p,
.tsx-smart-hardware-grid p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.72;
}

.tsx-smart-technical-grid p {
    color: rgba(255, 255, 255, 0.74);
}

.tsx-smart-hardware-grid p {
    color: var(--color-muted);
}

.tsx-smart-hardware-grid__bullets {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tsx-smart-hardware-grid__bullets li {
    position: relative;
    padding-left: 16px;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.58;
}

.tsx-smart-hardware-grid__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(18, 98, 64, 0.78);
}

.tsx-smart-specs {
    max-width: 980px;
    margin: 42px auto 0;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
}

.tsx-smart-specs table {
    width: 100%;
    border-collapse: collapse;
}

.tsx-smart-specs th,
.tsx-smart-specs td {
    padding: 18px 0;
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    text-align: left;
    vertical-align: top;
}

.tsx-smart-specs th {
    width: 42%;
    padding-right: 28px;
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-weight: 850;
}

.tsx-smart-specs td {
    color: var(--color-muted);
}

.tsx-smart-extracts {
    display: grid;
    gap: clamp(28px, 4vw, 46px);
    align-items: start;
}

.tsx-smart-extracts__copy {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
}

.tsx-smart-extracts__copy p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.08vw, 1.12rem);
    line-height: 1.82;
}

.tsx-smart-extracts__media {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 24px 60px rgba(20, 33, 27, 0.11);
}

.tsx-smart-extracts__media--wide {
    width: min(100%, 1180px);
    margin-inline: auto;
}

.tsx-smart-extracts__media img {
    aspect-ratio: 3614 / 1596;
    object-fit: cover;
}

.tsx-smart-recipes__intro {
    margin-inline: auto;
    max-width: min(100%, 1120px);
    text-align: center;
}

.tsx-smart-recipe-tools {
    display: grid;
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin: 34px 0 26px;
}

.tsx-smart-recipe-tools input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(18, 50, 39, 0.16);
    background: rgba(255, 255, 255, 0.48);
    color: var(--color-ink);
    font: inherit;
}

.tsx-smart-recipe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tsx-smart-recipe-tags button {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid rgba(18, 50, 39, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: 0.86rem;
    font-weight: 850;
    cursor: pointer;
}

.tsx-smart-recipe-tags button.is-active,
.tsx-smart-recipe-tags button:hover {
    border-color: rgba(16, 44, 34, 0.94);
    background: rgba(16, 44, 34, 0.94);
    color: #ffffff;
}

.tsx-smart-recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: clamp(18px, 2.4vw, 28px);
    margin-top: 34px;
}

.tsx-smart-recipe-card {
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(18, 50, 39, 0.12);
    background: rgba(255, 255, 255, 0.52);
    transition:
        transform 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

.tsx-smart-recipe-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 106, 66, 0.28);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 22px 48px rgba(20, 33, 27, 0.09);
}

.tsx-smart-recipe-card:active {
    transform: translateY(-1px);
}

.tsx-smart-recipe-card[hidden] {
    display: none;
}

.tsx-smart-recipe-card__media {
    margin: 0;
    overflow: hidden;
    background: #f5f0e5;
}

.tsx-smart-recipe-card__media-link {
    display: block;
    color: inherit;
    cursor: zoom-in;
}

.tsx-smart-recipe-card__media-link--en {
    display: none;
}

html[data-language="en"] .tsx-smart-recipe-card__media-link--zh {
    display: none;
}

html[data-language="en"] .tsx-smart-recipe-card__media-link--en {
    display: block;
}

.tsx-smart-recipe-card__media-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -4px;
}

.tsx-smart-recipe-card__media img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.tsx-smart-recipe-card:hover .tsx-smart-recipe-card__media img,
.tsx-smart-recipe-card__media-link:focus-visible img {
    transform: scale(1.045);
}

.tsx-smart-recipe-card--cta {
    display: flex;
    flex-direction: column;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(145deg, rgba(240, 226, 195, 0.64), rgba(255, 255, 255, 0.46)),
        rgba(255, 255, 255, 0.22);
}

.tsx-smart-recipe-card__cta-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: clamp(18px, 2.1vw, 24px);
}

.tsx-smart-recipe-card h3 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.18rem, 1.45vw, 1.5rem);
    line-height: 1.16;
}

.tsx-smart-recipe-card__cta-body p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.tsx-smart-recipe-card__cta {
    margin-top: 4px;
}

.tsx-smart-recipes__empty {
    margin: 24px 0 0;
    color: var(--color-muted);
    text-align: center;
}

.tsx-smart-recipes__actions {
    margin-top: 34px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .tsx-smart-recipes__intro p:first-child {
        white-space: nowrap;
    }
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-structured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border: 0;
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-structured-card {
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: clamp(28px, 2.7vw, 36px);
    border: 1px solid rgba(18, 50, 39, 0.14);
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.62), rgba(242, 233, 214, 0.46)),
        rgba(255, 255, 255, 0.22);
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-icon svg {
    width: 22px;
    height: 22px;
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-structured-card h3 {
    max-width: 100%;
    min-height: 2.35em;
    margin-bottom: 18px;
    font-size: clamp(1.38rem, 1.55vw, 1.72rem);
    line-height: 1.18;
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-structured-card p {
    color: rgba(20, 33, 27, 0.68);
    font-size: 0.98rem;
    line-height: 1.7;
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-meta-list {
    display: grid;
    gap: 0;
    margin-top: auto;
    padding-top: 26px;
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-meta-list li {
    position: relative;
    padding: 12px 0 0 18px;
    border: 0;
    border-top: 1px solid rgba(18, 50, 39, 0.12);
    background: transparent;
    color: rgba(20, 33, 27, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-meta-list li + li {
    margin-top: 12px;
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-meta-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(30, 106, 66, 0.78);
}

.tsx-page-fb-chains.tsx-section-our-solution-for-chains.tsx-doc-layout--comparison .tsx-doc-structured-card__cta {
    margin-top: 24px;
}

.tsx-doc-layout--steps-vertical .tsx-doc-steps {
    grid-template-columns: 1fr;
    max-width: 920px;
}

.tsx-page-qa-system .tsx-qa-stages-section > .container {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 3.4vw, 44px);
}

.tsx-qa-stages__heading {
    margin-bottom: 0;
}

.tsx-qa-stages__eyebrow {
    color: var(--color-accent);
    letter-spacing: 0.18em;
}

.tsx-qa-stage {
    position: relative;
    display: grid;
    gap: clamp(20px, 2.4vw, 32px);
    padding: clamp(26px, 2.8vw, 38px) clamp(24px, 3vw, 38px);
    border: 1px solid rgba(18, 50, 39, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(246, 239, 224, 0.5)),
        rgba(255, 255, 255, 0.22);
    background-image: var(--paper-fiber), linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(246, 239, 224, 0.5));
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.tsx-qa-stage::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, rgba(185, 130, 43, 0.85), rgba(185, 130, 43, 0.15));
}

.tsx-qa-stage:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 130, 43, 0.45);
    box-shadow: 0 22px 50px rgba(20, 33, 27, 0.1);
}

.tsx-qa-stage--feature {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    align-items: center;
    padding: clamp(34px, 3.6vw, 52px) clamp(28px, 3.4vw, 48px);
}

.tsx-qa-stage--pair {
    grid-template-rows: auto auto;
}

.tsx-qa-stage__index {
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1;
    color: var(--color-accent);
}

.tsx-qa-stage--feature .tsx-qa-stage__index {
    align-items: flex-start;
    padding-right: clamp(12px, 1.6vw, 24px);
    border-right: 1px solid rgba(185, 130, 43, 0.28);
}

.tsx-qa-stage__number {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.6vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: rgba(185, 130, 43, 0.78);
}

.tsx-qa-stage--feature .tsx-qa-stage__number {
    font-size: clamp(3.8rem, 7vw, 6.4rem);
}

.tsx-qa-stage__label {
    display: inline-block;
    font-family: var(--font-cjk-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(20, 33, 27, 0.5);
}

.tsx-qa-stage__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tsx-qa-stage__title {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1.22rem, 1.8vw, 1.6rem);
    line-height: 1.18;
}

.tsx-qa-stage--feature .tsx-qa-stage__title {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.tsx-qa-stage__text {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(0.98rem, 1.05vw, 1.05rem);
    line-height: 1.74;
}

.tsx-qa-stage-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.4vw, 32px);
}

.tsx-page-qa-system.tsx-section-what-this-means-for-you .section-heading {
    text-align: center;
}

.tsx-page-qa-system.tsx-section-what-this-means-for-you .section-heading .eyebrow {
    color: var(--color-accent);
    letter-spacing: 0.2em;
}

.tsx-page-qa-system.tsx-section-what-this-means-for-you .tsx-doc-card::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: clamp(24px, 3vw, 34px);
    width: 36px;
    height: 2px;
    background: rgba(185, 130, 43, 0.7);
    transition: width 220ms ease;
}

.tsx-page-qa-system.tsx-section-what-this-means-for-you .tsx-doc-card:hover::after {
    width: 72px;
}

.tsx-doc-hero--qa-system {
    min-height: auto;
    padding: 84px 0 68px;
    align-items: center;
}

.tsx-doc-hero--qa-system .tsx-doc-hero__grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(470px, 0.9fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.tsx-doc-hero--qa-system .tsx-doc-hero__grid:not(:has(.tsx-doc-hero__media)) {
    grid-template-columns: minmax(0, 900px);
    justify-content: start;
}

.tsx-doc-hero--qa-system h1 {
    max-width: 760px;
    font-size: 3.05rem;
    line-height: 1.1;
}

[data-language="zh"] .tsx-doc-hero--qa-system h1 {
    max-width: 700px;
    font-size: 3.2rem;
    line-height: 1.14;
}

.tsx-doc-hero--qa-system .tsx-doc-hero__lead {
    max-width: 680px;
    font-size: 1.2rem;
    line-height: 1.78;
}

.tsx-doc-hero--qa-system .tsx-doc-hero__media {
    padding: 10px;
    border-color: rgba(18, 50, 39, 0.18);
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 24px 58px rgba(20, 33, 27, 0.13);
}

.tsx-doc-hero--qa-system .tsx-doc-hero__media::before {
    inset: 10px;
    border-color: rgba(255, 255, 255, 0.58);
}

.tsx-doc-hero--qa-system .tsx-doc-hero__media img {
    aspect-ratio: 5712 / 1985;
    object-position: center;
    transform: none;
}

.tsx-page-qa-system.tsx-section-quality-control-philosophy .section-heading {
    text-align: center;
}

.tsx-page-qa-system.tsx-section-quality-control-philosophy .tsx-doc-prose {
    max-width: 940px;
    margin-inline: auto;
    padding: clamp(24px, 3vw, 38px) clamp(26px, 4vw, 52px);
    border-left: 3px solid rgba(30, 106, 66, 0.62);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(246, 239, 224, 0.38)),
        rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 42px rgba(20, 33, 27, 0.08);
}

.tsx-page-qa-system .tsx-qa-stages-section > .container {
    gap: 32px;
}

.tsx-qa-process-intro {
    max-width: 900px;
    margin: -6px auto 4px;
    color: rgba(20, 33, 27, 0.68);
    text-align: center;
    font-size: 1.06rem;
    line-height: 1.82;
}

.tsx-qa-process-intro p {
    margin: 0;
}

.tsx-qa-process-layout {
    display: grid;
    gap: clamp(42px, 5vw, 78px);
}

.tsx-qa-process-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
    width: min(100%, 1080px);
    margin-inline: auto;
    padding: 0;
}

.tsx-qa-process-card::before {
    content: "";
    position: absolute;
    inset: 8px auto 8px -18px;
    width: 3px;
    background: linear-gradient(180deg, rgba(30, 106, 66, 0.7), rgba(185, 130, 43, 0.35));
}

.tsx-qa-process-card__visual {
    margin: 0;
    overflow: hidden;
    background: transparent;
}

.tsx-qa-process-card__asset {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tsx-qa-process-card__asset--en {
    display: none;
}

html[data-language="en"] .tsx-qa-process-card__asset--zh {
    display: none;
}

html[data-language="en"] .tsx-qa-process-card__asset--en {
    display: block;
}

.tsx-qa-process-card__body {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: clamp(22px, 3vw, 36px) clamp(24px, 4vw, 46px);
    border-left: 3px solid rgba(30, 106, 66, 0.58);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(246, 239, 224, 0.3)),
        rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 42px rgba(20, 33, 27, 0.07);
}

.tsx-qa-process-card__meta {
    display: flex;
    align-items: baseline;
    gap: 14px;
    color: var(--color-accent);
}

.tsx-qa-process-card__number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    line-height: 1;
    color: rgba(185, 130, 43, 0.78);
}

.tsx-qa-process-card__label {
    color: rgba(20, 33, 27, 0.52);
    font-family: var(--font-cjk-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tsx-qa-process-card__title {
    margin: 0;
    color: var(--color-ink);
    font-size: 1.56rem;
    line-height: 1.22;
}

.tsx-qa-process-card__text {
    margin: 0;
    color: rgba(20, 33, 27, 0.7);
    font-size: 1rem;
    line-height: 1.76;
}

[data-language="en"] .tsx-qa-process-card__text {
    font-size: 0.98rem;
    line-height: 1.66;
}

.tsx-page-qa-system.tsx-section-what-does-this-mean-for-buyers .section-heading {
    text-align: center;
}

.tsx-page-qa-system.tsx-section-what-does-this-mean-for-buyers .tsx-doc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(18, 50, 39, 0.12);
    background: rgba(255, 255, 255, 0.34);
}

.tsx-page-qa-system.tsx-section-what-does-this-mean-for-buyers .tsx-doc-card {
    min-height: 285px;
    border: 0;
    border-right: 1px solid rgba(18, 50, 39, 0.1);
    background: transparent;
    box-shadow: none;
}

.tsx-page-qa-system.tsx-section-what-does-this-mean-for-buyers .tsx-doc-card:last-child {
    border-right: 0;
}

.tsx-rd-slide {
    padding: clamp(28px, 4vw, 56px) 0;
    background: transparent;
}

.tsx-rd-slide + .tsx-rd-slide {
    padding-top: 0;
}

.tsx-rd-slide__canvas {
    width: min(calc(100% - 40px), 1180px);
    margin-inline: auto;
    padding: clamp(30px, 4vw, 58px) clamp(28px, 5vw, 76px);
    color: var(--color-ink);
}

.tsx-rd-slide__canvas + .tsx-rd-slide__canvas {
    margin-top: 34px;
}

.tsx-rd-hero-copy,
.tsx-rd-intro-copy,
.tsx-rd-section-heading {
    text-align: center;
}

.tsx-rd-hero-copy h1,
.tsx-rd-intro-copy h2,
.tsx-rd-slide__canvas h2,
.tsx-rd-section-heading h2 {
    color: #111913;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0;
}

[data-language="zh"] .tsx-rd-hero-copy h1,
[data-language="zh"] .tsx-rd-intro-copy h2,
[data-language="zh"] .tsx-rd-slide__canvas h2,
[data-language="zh"] .tsx-rd-section-heading h2 {
    font-family: var(--font-cjk-sans);
    font-weight: 600;
}

.tsx-rd-hero-copy h1 {
    max-width: 900px;
    margin-inline: auto;
    font-size: clamp(1.85rem, 3.25vw, 3.25rem);
    line-height: 1.15;
}

.tsx-rd-hero-copy__lead {
    max-width: 760px;
    margin: clamp(24px, 3vw, 40px) auto 0;
    padding: clamp(20px, 2.8vw, 28px) clamp(22px, 3.4vw, 34px);
    border: 1px solid rgba(30, 106, 66, 0.16);
    border-left: 4px solid rgba(30, 106, 66, 0.58);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(246, 239, 224, 0.34)),
        rgba(255, 255, 255, 0.32);
    color: rgba(17, 25, 19, 0.86);
    font-size: clamp(1rem, 1.25vw, 1.14rem);
    line-height: 1.72;
    text-align: left;
    box-shadow: 0 18px 38px rgba(20, 33, 27, 0.06);
}

.tsx-rd-intro-copy {
    margin-top: clamp(36px, 5vw, 60px);
}

.tsx-rd-intro-copy h2,
.tsx-rd-slide__canvas h2,
.tsx-rd-section-heading h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    line-height: 1.18;
}

.tsx-rd-intro-copy__grid {
    counter-reset: rd-intro;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
    max-width: 1040px;
    margin: clamp(28px, 4vw, 48px) auto 0;
    text-align: left;
}

.tsx-rd-intro-copy__grid p {
    counter-increment: rd-intro;
    position: relative;
    min-height: 100%;
    margin: 0;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(18, 50, 39, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 252, 244, 0.86), rgba(255, 255, 255, 0.5)),
        rgba(255, 255, 255, 0.32);
    box-shadow: 0 18px 36px rgba(20, 33, 27, 0.055);
}

.tsx-rd-intro-copy__grid p::before {
    content: "0" counter(rd-intro);
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(30, 106, 66, 0.1);
    color: rgba(30, 106, 66, 0.78);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
}

.tsx-rd-intro-copy__grid p:nth-child(2)::before {
    background: rgba(185, 130, 43, 0.14);
    color: rgba(150, 104, 34, 0.86);
}

.tsx-rd-intro-copy__grid p:nth-child(3)::before {
    background: rgba(75, 104, 132, 0.12);
    color: rgba(52, 82, 106, 0.82);
}

.tsx-rd-intro-copy__grid p,
.tsx-rd-feature__copy p,
.tsx-rd-client-card p,
.tsx-rd-cta-panel p {
    color: rgba(17, 25, 19, 0.78);
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: 1.72;
}

.tsx-rd-slide__canvas--capability-lead {
    padding-top: clamp(24px, 3vw, 42px);
}

.tsx-rd-slide__canvas--capability-lead > h2 {
    text-align: center;
}

.tsx-rd-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    max-width: 1040px;
    margin: clamp(26px, 4vw, 46px) auto 0;
    padding: clamp(18px, 2.6vw, 28px);
    border: 1px solid rgba(18, 50, 39, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 241, 226, 0.48)),
        rgba(255, 255, 255, 0.28);
    box-shadow: 0 22px 46px rgba(20, 33, 27, 0.07);
}

.tsx-rd-feature > *,
.tsx-rd-intro-copy__grid > *,
.tsx-rd-feature__copy,
.tsx-rd-client-card,
.tsx-rd-cta-panel > * {
    min-width: 0;
}

.tsx-rd-feature::before {
    content: "";
    position: absolute;
    top: clamp(18px, 2.4vw, 28px);
    bottom: clamp(18px, 2.4vw, 28px);
    left: 0;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, rgba(30, 106, 66, 0.72), rgba(185, 130, 43, 0.52));
}

.tsx-rd-slide__canvas--feature-stack .tsx-rd-feature:first-child {
    margin-top: 0;
}

.tsx-rd-source-image {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(18, 50, 39, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 16px 32px rgba(20, 33, 27, 0.08);
}

.tsx-rd-source-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tsx-rd-feature__copy h3,
.tsx-rd-client-card h3 {
    margin: 0 0 14px;
    color: #111913;
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 1.35vw, 1.28rem);
    font-weight: 700;
    line-height: 1.28;
}

.tsx-rd-feature__copy h3 {
    position: relative;
    padding-left: 18px;
}

.tsx-rd-feature__copy h3::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 8px;
    height: 2px;
    background: rgba(185, 130, 43, 0.82);
}

[data-language="zh"] .tsx-rd-feature__copy h3,
[data-language="zh"] .tsx-rd-client-card h3 {
    font-family: var(--font-cjk-sans);
}

.tsx-rd-feature__copy p,
.tsx-rd-client-card p,
.tsx-rd-cta-panel p {
    margin: 0;
}

.tsx-rd-client-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1040px;
    margin: clamp(30px, 4vw, 48px) auto 0;
    border: 1px solid rgba(30, 48, 40, 0.09);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 18px 38px rgba(20, 33, 27, 0.055);
}

.tsx-rd-client-card {
    position: relative;
    min-height: 285px;
    padding: clamp(34px, 4vw, 48px);
    border-right: 1px solid rgba(30, 48, 40, 0.09);
    background: linear-gradient(180deg, rgba(255, 252, 244, 0.58), rgba(255, 255, 255, 0.18));
    transition: background 220ms ease, box-shadow 220ms ease;
}

.tsx-rd-client-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(244, 249, 244, 0.62), rgba(255, 255, 255, 0.18));
}

.tsx-rd-client-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(245, 248, 250, 0.64), rgba(255, 255, 255, 0.18));
}

.tsx-rd-client-card:hover {
    background-color: rgba(255, 255, 255, 0.74);
    box-shadow: inset 0 3px 0 rgba(185, 130, 43, 0.42);
}

.tsx-rd-client-card:last-child {
    border-right: 0;
}

.tsx-rd-client-card::before {
    content: attr(data-rd-marker);
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 28px;
    border-radius: 50%;
    border: 1px solid rgba(170, 139, 76, 0.35);
    background: #faf3dc;
    color: rgba(170, 139, 76, 0.78);
    font-size: 0.78rem;
}

html[data-language="en"] .tsx-rd-client-card::before {
    display: none;
}

html[data-language="en"] .tsx-rd-client-card h3 {
    margin-top: 0;
}

.tsx-rd-slide--cta {
    padding-bottom: clamp(44px, 6vw, 76px);
}

.tsx-rd-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    width: min(calc(100% - 40px), 1180px);
    margin-inline: auto;
    padding: clamp(34px, 4vw, 56px) clamp(30px, 5vw, 72px);
    border: 1px solid rgba(18, 50, 39, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(30, 106, 66, 0.08), rgba(185, 130, 43, 0.12)),
        rgba(255, 255, 255, 0.42);
    color: var(--color-ink);
    box-shadow: 0 20px 42px rgba(20, 33, 27, 0.065);
}

.tsx-rd-cta-panel h2 {
    max-width: 740px;
    margin: 0 0 14px;
    color: var(--color-ink);
    font-family: var(--font-sans);
    font-size: clamp(1.7rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1.14;
}

[data-language="zh"] .tsx-rd-cta-panel h2 {
    font-family: var(--font-cjk-sans);
}

.tsx-rd-cta-panel p {
    max-width: 760px;
    color: var(--color-muted);
}

.tsx-rd-cta-panel .button-row {
    justify-content: end;
}

.tsx-doc-product-accordion {
    display: grid;
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
}

.tsx-doc-product-series {
    border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    background: rgba(255, 255, 255, 0.18);
}

.tsx-doc-product-series > button {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 30px;
    gap: 18px;
    align-items: center;
    width: 100%;
    padding: 24px clamp(22px, 3vw, 34px);
    border: 0;
    background: transparent;
    color: var(--color-ink);
    text-align: left;
    cursor: pointer;
}

.tsx-doc-product-series > button::after {
    content: "+";
    justify-self: end;
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.tsx-doc-product-series > button[aria-expanded="true"]::after {
    content: "-";
}

.tsx-doc-product-series .tsx-doc-icon {
    margin: 0;
}

.tsx-doc-product-series__title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.4vw, 2.5rem);
    line-height: 1.05;
}

.tsx-doc-product-series__panel {
    padding: 0 clamp(22px, 3vw, 34px) 30px calc(clamp(22px, 3vw, 34px) + 76px);
}

.tsx-doc-product-series__panel p {
    max-width: 960px;
    color: var(--color-muted);
    line-height: 1.72;
}

.tsx-doc-product-series__meta {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.tsx-doc-product-series__meta p {
    margin: 0;
    padding: 14px 16px;
    border-left: 2px solid rgba(185, 130, 43, 0.6);
    background: rgba(255, 255, 255, 0.28);
    color: rgba(20, 33, 27, 0.72);
}

.tsx-cert-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(10, 24, 19, 0.58);
    backdrop-filter: blur(8px);
}

.tsx-cert-lightbox[hidden] {
    display: none;
}

.tsx-cert-lightbox__panel {
    position: relative;
    width: min(720px, 100%);
    padding: clamp(30px, 5vw, 54px);
    border: 1px solid rgba(185, 130, 43, 0.34);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(242, 233, 214, 0.94)),
        var(--paper-fiber);
    color: var(--color-ink);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.tsx-cert-lightbox__panel h2 {
    max-width: 620px;
    margin: 0 0 18px;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.08;
}

.tsx-cert-lightbox__panel p {
    white-space: pre-line;
    color: var(--color-muted);
    line-height: 1.75;
}

.tsx-cert-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(18, 50, 39, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-ink);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.tsx-doc-accordion {
    display: grid;
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(18, 50, 39, 0.18);
}

.tsx-doc-accordion__item {
    border-bottom: 1px solid rgba(18, 50, 39, 0.16);
}

.tsx-doc-accordion__item:last-child {
    border-bottom: 1px solid rgba(18, 50, 39, 0.16);
}

.tsx-doc-accordion__item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    border: 0;
    background: transparent;
    color: var(--color-ink);
    font: inherit;
    font-size: clamp(1.1rem, 1.65vw, 1.42rem);
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.tsx-doc-accordion__item button::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.tsx-doc-accordion__item button[aria-expanded="true"]::after {
    content: "−";
}

.tsx-doc-accordion__panel {
    max-width: 900px;
    padding: 0 0 26px;
    color: var(--color-muted);
    line-height: 1.72;
}

.tsx-doc-accordion__panel p {
    margin: 0;
}

.tsx-doc-cta {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(13, 36, 28, 0.98), rgba(17, 66, 43, 0.94)),
        var(--color-primary-dark);
    color: #ffffff;
}

.tsx-doc-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px min(10vw, 150px)),
        var(--paper-texture);
    opacity: 0.34;
    pointer-events: none;
}

.tsx-doc-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.tsx-doc-cta h2 {
    max-width: 780px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(1.85rem, 3.3vw, 3.25rem);
    line-height: 1.08;
}

.tsx-page-recipe-sop-library.tsx-section-next-step h2 {
    font-size: clamp(1.9rem, 2.2vw, 2.25rem);
    line-height: 1.18;
}

.tsx-doc-cta p {
    max-width: 800px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.14rem, 1.12vw, 1.24rem);
    line-height: 1.82;
}

.tsx-doc-cta .button--secondary {
    border-color: rgba(255, 255, 255, 0.58);
    color: #ffffff;
}

.site-footer {
    position: relative;
    padding: 64px 0 30px;
    overflow: hidden;
    background-color: #eee6d8;
    background-image: var(--paper-section);
    color: var(--color-ink);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent 48%),
        radial-gradient(circle at 82% 16%, rgba(30, 106, 66, 0.1), transparent 26%);
    pointer-events: none;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 0.82fr) minmax(420px, 1.22fr);
    gap: 54px;
    align-items: start;
}

.site-footer__logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.site-footer__logo img {
    width: auto;
    height: 58px;
    object-fit: contain;
}

.site-footer__section h2 {
    margin: 0 0 14px;
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: 1.12rem;
    font-weight: 850;
}

.site-footer__section p {
    max-width: 360px;
    color: #535c56;
}

.site-footer__menu {
    display: block;
}

.site-footer__quick-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
}

.site-footer__menu li + li {
    margin-top: 8px;
}

.site-footer__quick-menu li + li {
    margin-top: 0;
}

.site-footer__menu a,
.site-footer__contact-list a {
    color: #3f4842;
    font-size: 0.94rem;
    text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__contact-list a:hover {
    color: var(--color-primary);
}

.site-footer__nav-group {
    display: inline-block;
    width: min(190px, 50%);
    margin: 0 22px 24px 0;
    vertical-align: top;
}

.site-footer__nav-group h3 {
    margin: 0 0 10px;
    color: var(--color-ink);
    font-family: var(--font-cjk-sans);
    font-size: 1rem;
    font-weight: 800;
}

.site-footer__contact-list {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.site-footer__contact-list li {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 7px 0;
    color: #48524c;
}

.site-footer__contact-list li > span:first-child {
    color: var(--color-ink);
    font-weight: 800;
}

.site-footer__bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(20, 33, 27, 0.16);
    color: #6c756e;
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
    text-align: center;
}

.site-footer__bottom a {
    color: inherit;
    text-decoration: none;
}

.site-footer__bottom a:hover {
    color: var(--color-primary);
}

.floating-contact {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact__button {
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(16, 44, 34, 0.18);
}

.floating-contact__button svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-contact__button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.floating-contact__button--whatsapp {
    background: #24a865;
    border-color: #24a865;
}

.floating-contact__button--inquiry {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.preview-page {
    background: #f8f6f0;
}

.preview-page .site-header {
    position: fixed;
    left: 0;
    right: 0;
}

.preview-page .site-header__nav {
    flex: 1;
}

.preview-page .site-header__menu {
    justify-content: center;
}

.preview-hero {
    position: relative;
    min-height: calc(100svh - 88px);
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: 0;
    color: #ffffff;
    background: #111914;
}

.preview-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        var(--paper-texture),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 5px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 8px);
    opacity: 0.34;
    mix-blend-mode: overlay;
}

.preview-hero__video,
.preview-hero__scrim {
    position: absolute;
    inset: 0;
}

.preview-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.96) contrast(1.06) brightness(0.76);
    z-index: 0;
}

.preview-hero__scrim {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(3, 8, 6, 0.12) 0%, rgba(3, 8, 6, 0.2) 50%, rgba(3, 8, 6, 0.52) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.1));
}

.preview-hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 720px);
    align-items: center;
    justify-content: start;
    width: calc(100% - 76px);
    margin-left: 38px;
    margin-right: auto;
    min-height: calc(100svh - 88px);
    text-align: left;
}

.preview-hero__copy {
    min-width: 0;
    position: relative;
    max-width: 720px;
    margin-left: 0;
}

.preview-hero .eyebrow {
    color: #177247;
}

.preview-cta .eyebrow {
    color: #f0c56a;
}

.preview-hero h1 {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(248, 244, 232, 0.78);
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5.5vw, 5.4rem);
    line-height: 1.04;
    letter-spacing: 0;
    overflow-wrap: normal;
    text-wrap: balance;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.preview-hero__lead {
    max-width: 620px;
    margin: 0;
    color: rgba(248, 244, 232, 0.64);
    font-size: clamp(1.04rem, 1.28vw, 1.18rem);
    line-height: 1.82;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.preview-hero .button {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.preview-hero .button--secondary {
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #ffffff;
}

.preview-cta .button--secondary {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

[data-language="zh"] .tsx-hero--home h1,
[data-language="zh"] .preview-hero h1 {
    width: auto;
    max-width: min(1180px, calc(100vw - 76px));
    font-family: var(--font-cjk-display);
    font-size: clamp(3rem, 5.1vw, 5.1rem);
    line-height: 1.08;
    font-weight: 800;
    text-wrap: wrap;
    word-break: keep-all;
    white-space: pre-line;
}

[data-language="zh"] .tsx-hero--home .tsx-hero__text,
[data-language="zh"] .preview-hero__lead {
    max-width: 640px;
    font-family: var(--font-cjk-sans);
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    line-height: 1.92;
    color: rgba(248, 244, 232, 0.64);
}

[data-language="zh"] .tsx-hero--home .tsx-hero__grid,
[data-language="zh"] .preview-hero__inner {
    grid-template-columns: minmax(0, min(1180px, calc(100vw - 76px)));
}

[data-language="zh"] .tsx-hero--home .tsx-hero__copy,
[data-language="zh"] .preview-hero__copy {
    display: block;
    max-width: min(1180px, calc(100vw - 76px));
    right: auto;
    min-height: 0;
}

[data-language="zh"] .tsx-hero--home .button-row,
[data-language="zh"] .preview-hero .button-row {
    position: static;
    margin-top: 30px;
}

[data-language="zh"] .tsx-hero--home .button,
[data-language="zh"] .preview-hero .button {
    min-height: 42px;
    padding-inline: 20px;
}

.preview-section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.preview-section-heading h2,
.preview-split-heading h2,
.preview-media-feature h2,
.preview-quality h2,
.preview-cta h2 {
    margin-top: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.06;
}

.preview-section-heading p:not(.eyebrow),
.preview-split-heading > p,
.preview-media-feature__copy p,
.preview-quality p {
    color: var(--color-muted);
    font-size: 1.04rem;
}

.preview-split-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.56fr);
    gap: 44px;
    align-items: end;
    margin-bottom: 32px;
}

.preview-split-heading .preview-section-heading {
    margin-bottom: 0;
}

.preview-serve {
    background: #ffffff;
}

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

.preview-service-card {
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    padding: 0 0 28px;
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(246, 244, 238, 0.78), rgba(255, 255, 255, 0.98)),
        #ffffff;
    box-shadow: 0 18px 48px rgba(20, 33, 27, 0.07);
}

.preview-service-card__media,
.preview-latest-card__media {
    display: block;
    overflow: hidden;
    background: #e4dfd2;
    text-decoration: none;
}

.has-scroll-effects .preview-service-card[data-scroll-reveal] .preview-service-card__media,
.has-scroll-effects .preview-product-card[data-scroll-reveal] .preview-product-card__media,
.has-scroll-effects .preview-latest-card[data-scroll-reveal] .preview-latest-card__media {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 860ms cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: var(--scroll-reveal-delay, 0ms);
}

.has-scroll-effects .preview-service-card[data-scroll-reveal].is-visible .preview-service-card__media,
.has-scroll-effects .preview-product-card[data-scroll-reveal].is-visible .preview-product-card__media,
.has-scroll-effects .preview-latest-card[data-scroll-reveal].is-visible .preview-latest-card__media {
    clip-path: inset(0);
}

.preview-service-card__media img,
.preview-latest-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 360ms ease;
}

.preview-service-card:hover .preview-service-card__media img,
.preview-latest-card:hover .preview-latest-card__media img {
    transform: translate3d(0, var(--scroll-y, 0px), 0) scale(1.055);
}

.preview-service-card > p,
.preview-card__meta {
    margin: 0;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.preview-service-card > p,
.preview-service-card h3,
.preview-service-card > span,
.preview-service-card > a {
    margin-inline: 28px;
}

.preview-service-card > p {
    margin-top: 24px;
}

.preview-service-card h3 {
    margin-top: 18px;
    margin-bottom: 14px;
    font-size: 1.7rem;
    line-height: 1.08;
}

.preview-service-card span,
.preview-product-card p,
.preview-why-grid p,
.preview-process-grid p,
.preview-latest-card p:not(.preview-card__meta) {
    color: var(--color-muted);
}

.preview-service-card a,
.preview-product-card a,
.preview-blog-list a,
.preview-latest-card a {
    margin-top: auto;
    color: var(--color-primary-dark);
    font-weight: 850;
    text-decoration-color: rgba(185, 130, 43, 0.55);
}

.preview-products,
.preview-why,
.preview-latest {
    background-color: var(--color-surface-alt);
    background-image: var(--paper-section);
}

.preview-products .preview-split-heading,
.preview-process .preview-split-heading,
.preview-latest .preview-split-heading {
    display: block;
    max-width: 860px;
    margin: 0 auto 40px;
    text-align: center;
}

.preview-split-heading--centered {
    display: block;
    text-align: center;
}

.preview-split-heading--centered .preview-section-heading {
    margin-inline: auto;
}

.preview-products .preview-section-heading,
.preview-process .preview-section-heading,
.preview-latest .preview-section-heading {
    max-width: none;
    margin-bottom: 0;
}

.preview-products .eyebrow,
.preview-why .eyebrow,
.preview-process .eyebrow,
.preview-latest .eyebrow {
    display: none;
}

.preview-products .preview-section-heading h2,
.preview-why .preview-section-heading h2,
.preview-process .preview-section-heading h2,
.preview-latest .preview-section-heading h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.75rem, 2.45vw, 2.28rem);
    line-height: 1.62;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

[data-language="zh"] .preview-products .preview-section-heading h2,
[data-language="zh"] .preview-why .preview-section-heading h2,
[data-language="zh"] .preview-process .preview-section-heading h2,
[data-language="zh"] .preview-latest .preview-section-heading h2 {
    font-family: var(--font-cjk-sans);
    font-weight: 800;
}

.preview-process .preview-split-heading > p,
.preview-latest .preview-split-heading > p {
    max-width: 720px;
    margin: 6px auto 0;
}

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

.preview-product-card {
    display: flex;
    min-width: 0;
    min-height: 520px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(20, 33, 27, 0.08);
}

.preview-product-card__media {
    display: block;
    overflow: hidden;
    background: #e5e1d5;
}

.preview-product-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 360ms ease;
}

.preview-product-card:hover .preview-product-card__media img {
    transform: translate3d(0, var(--scroll-y, 0px), 0) scale(1.055);
}

.preview-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.preview-product-card h3 {
    margin: 12px 0 10px;
    font-size: 1.55rem;
    line-height: 1.1;
}

.preview-product-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 14px 0 20px;
    list-style: none;
}

.preview-product-card li {
    padding: 5px 8px;
    border: 1px solid rgba(30, 106, 66, 0.16);
    border-radius: 6px;
    background: rgba(30, 106, 66, 0.06);
    color: #2c5d45;
    font-size: 0.76rem;
    font-weight: 750;
}

.preview-factory {
    background: #ffffff;
}

.preview-media-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    gap: 48px;
    align-items: center;
}

.preview-media-feature__image {
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-surface-alt);
    box-shadow: 0 28px 70px rgba(20, 33, 27, 0.14);
}

.preview-media-feature__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.preview-media-feature__copy {
    min-width: 0;
}

.preview-factory-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0;
}

.preview-factory-metrics span {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(20, 33, 27, 0.1);
    border-radius: 8px;
    background: #f8f6f0;
    color: var(--color-muted);
    font-size: 0.82rem;
}

.preview-factory-metrics strong {
    display: block;
    color: var(--color-primary-dark);
    font-family: var(--font-sans);
    font-size: 1.22rem;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.preview-factory-metrics em,
.preview-qa-steps em {
    font-style: normal;
}

.preview-quality__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.78fr);
    gap: 36px;
    align-items: start;
}

.preview-cert-wall {
    overflow: hidden;
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(20, 33, 27, 0.08);
}

.preview-cert-wall img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.preview-cert-wall div {
    padding: 20px;
}

.preview-cert-wall span {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 850;
    text-transform: uppercase;
}

.preview-cert-wall strong {
    display: block;
    margin-top: 6px;
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-variant-numeric: tabular-nums;
}

[data-language="zh"] .preview-cert-wall strong {
    font-family: var(--font-cjk-sans);
}

.preview-cert-wall p {
    margin-bottom: 0;
}

.preview-qa-steps {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    margin: 4px 0 0;
    list-style: none;
    background: rgba(20, 33, 27, 0.12);
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.preview-qa-steps li {
    min-height: 112px;
    padding: 18px;
    background: #ffffff;
    font-weight: 800;
}

.preview-qa-steps span {
    display: block;
    margin-bottom: 18px;
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-variant-numeric: tabular-nums;
}

.preview-solutions {
    background: #ffffff;
}

.preview-tabs {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 22px 34px;
}

.preview-tabs .preview-section-heading {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.preview-tab-list {
    display: grid;
    align-self: start;
    gap: 10px;
}

.preview-tab-list button,
.preview-accordion__item button {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--color-ink);
    font: inherit;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.preview-tab-list button {
    min-height: 64px;
    padding: 0 18px;
}

.preview-tab-list button[aria-selected="true"] {
    border-color: var(--color-primary);
    background: var(--color-primary-dark);
    color: #ffffff;
}

.preview-tab-panel {
    min-height: 340px;
    padding: 34px;
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(239, 224, 189, 0.45), transparent 46%),
        #ffffff;
    box-shadow: 0 18px 48px rgba(20, 33, 27, 0.07);
}

.preview-tab-panel h3 {
    margin: 10px 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.preview-tab-panel p:not(.preview-card__meta) {
    max-width: 720px;
    color: var(--color-muted);
}

.preview-tab-panel .button--secondary {
    margin-top: 16px;
}

.preview-tab-panel__points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.preview-tab-panel__points span {
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(16, 44, 34, 0.08);
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.preview-why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, 1120px);
    margin-inline: auto;
}

.preview-why-grid article {
    position: relative;
    min-height: 300px;
    padding: 0 18px 22px;
    text-align: center;
    transition:
        background-color 320ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
    z-index: 0;
}

.preview-why-grid article::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 70%;
    z-index: -1;
    border-radius: 0 0 78px 0;
    background: rgba(255, 255, 255, 0);
    transition: background-color 260ms ease;
}

.preview-why-grid article:hover {
    transform: translateY(-8px);
}

.preview-why-grid article:hover::after {
    background: rgba(255, 255, 255, 0.72);
}

.preview-why-grid__icon {
    position: relative;
    display: grid;
    width: clamp(128px, 13vw, 170px);
    height: clamp(128px, 13vw, 170px);
    margin: 0 auto 26px;
    place-items: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86) 58%, rgba(225, 217, 197, 0.5)),
        #ffffff;
    color: var(--color-primary-dark);
    box-shadow:
        inset 0 0 0 1px rgba(20, 33, 27, 0.08),
        inset 0 0 0 10px rgba(244, 238, 222, 0.48),
        0 18px 42px rgba(20, 33, 27, 0.08);
    transition:
        background-color 260ms ease,
        color 260ms ease,
        transform 260ms ease;
}

.preview-why-grid__icon::before,
.preview-why-grid__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 34px;
    background: rgba(20, 33, 27, 0.18);
}

.preview-why-grid__icon::before {
    top: -17px;
}

.preview-why-grid__icon::after {
    bottom: -17px;
}

.preview-why-grid article:hover .preview-why-grid__icon {
    background:
        radial-gradient(circle at 35% 28%, rgba(50, 132, 88, 0.96), rgba(18, 99, 57, 0.98)),
        var(--color-primary);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        inset 0 0 0 10px rgba(255, 255, 255, 0.08),
        0 20px 46px rgba(20, 80, 48, 0.18);
}

.preview-why-grid__icon .preview-proof-metric__icon,
.preview-why-grid__icon .tsx-proof-metric__icon {
    width: clamp(54px, 5.2vw, 72px);
    height: clamp(54px, 5.2vw, 72px);
    margin: 0;
    color: inherit;
}

.preview-why-grid__icon svg {
    stroke-width: 2.35;
}

.preview-why-grid article > span {
    display: none;
}

.preview-why-grid h3 {
    max-width: 180px;
    margin: 0 auto 10px;
    font-family: var(--font-sans);
    font-size: clamp(1.08rem, 1.45vw, 1.32rem);
    line-height: 1.28;
    text-align: center;
}

[data-language="zh"] .preview-why-grid h3 {
    font-family: var(--font-cjk-sans);
    font-weight: 850;
}

.preview-why-grid p {
    max-width: 190px;
    margin-inline: auto;
    font-size: 0.94rem;
    line-height: 1.78;
    text-align: center;
}

.preview-why .preview-section-heading {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.has-scroll-effects .preview-why-grid.is-visible article {
    animation: tsx-fivebox-item 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.has-scroll-effects .preview-why-grid.is-visible article:nth-child(2) {
    animation-delay: 80ms;
}

.has-scroll-effects .preview-why-grid.is-visible article:nth-child(3) {
    animation-delay: 160ms;
}

.has-scroll-effects .preview-why-grid.is-visible article:nth-child(4) {
    animation-delay: 240ms;
}

.has-scroll-effects .preview-why-grid.is-visible article:nth-child(5) {
    animation-delay: 320ms;
}

@keyframes tsx-fivebox-item {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.preview-process {
    background-color: #f3ede1;
    background-image: var(--paper-section);
}

.preview-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: min(100%, 1020px);
    margin-inline: auto;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.preview-process-grid article {
    position: relative;
    min-height: 300px;
    padding: 0 18px 24px;
    background: transparent;
    text-align: center;
    transition:
        transform 320ms ease,
        box-shadow 320ms ease;
    z-index: 0;
}

.preview-process-grid article::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 70%;
    z-index: -1;
    border-radius: 0 0 78px 0;
    background: rgba(255, 255, 255, 0);
    transition: background-color 260ms ease;
}

.preview-process-grid article:hover {
    transform: translateY(-8px);
}

.preview-process-grid article:hover::after {
    background: rgba(255, 255, 255, 0.72);
}

.preview-process-grid__icon {
    position: relative;
    display: grid;
    width: clamp(118px, 11vw, 154px);
    height: clamp(118px, 11vw, 154px);
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86) 58%, rgba(225, 217, 197, 0.5)),
        #ffffff;
    color: var(--color-primary-dark);
    box-shadow:
        inset 0 0 0 1px rgba(20, 33, 27, 0.08),
        inset 0 0 0 10px rgba(244, 238, 222, 0.48),
        0 16px 38px rgba(20, 33, 27, 0.07);
    transition:
        background-color 260ms ease,
        color 260ms ease,
        transform 260ms ease;
}

.preview-process-grid__icon::before,
.preview-process-grid__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 32px;
    background: rgba(20, 33, 27, 0.18);
}

.preview-process-grid__icon::before {
    top: -16px;
}

.preview-process-grid__icon::after {
    bottom: -16px;
}

.preview-process-grid article:hover .preview-process-grid__icon {
    background:
        radial-gradient(circle at 35% 28%, rgba(50, 132, 88, 0.96), rgba(18, 99, 57, 0.98)),
        var(--color-primary);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        inset 0 0 0 10px rgba(255, 255, 255, 0.08),
        0 20px 46px rgba(20, 80, 48, 0.18);
}

.preview-process-grid__icon .preview-proof-metric__icon,
.preview-process-grid__icon .tsx-proof-metric__icon {
    width: clamp(50px, 4.8vw, 66px);
    height: clamp(50px, 4.8vw, 66px);
    margin: 0;
    color: inherit;
}

.preview-process-grid__icon svg {
    stroke-width: 2.35;
}

.preview-process-grid article > span {
    display: block;
    margin: -2px 0 10px;
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-size: 1.28rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.preview-process-grid h3 {
    max-width: 190px;
    margin: 0 auto 10px;
    font-size: clamp(1.1rem, 1.4vw, 1.32rem);
    line-height: 1.26;
    text-align: center;
}

[data-language="zh"] .preview-process-grid h3 {
    font-family: var(--font-cjk-sans);
    font-weight: 850;
}

.preview-process-grid p {
    max-width: 200px;
    margin-inline: auto;
    font-size: 0.94rem;
    line-height: 1.78;
    text-align: center;
}

.has-scroll-effects .preview-process-grid.is-visible article {
    animation: tsx-fivebox-item 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.has-scroll-effects .preview-process-grid.is-visible article:nth-child(2) {
    animation-delay: 80ms;
}

.has-scroll-effects .preview-process-grid.is-visible article:nth-child(3) {
    animation-delay: 160ms;
}

.has-scroll-effects .preview-process-grid.is-visible article:nth-child(4) {
    animation-delay: 240ms;
}

.preview-two-column {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 42px;
    align-items: start;
}

.preview-blog-list {
    display: grid;
    gap: 10px;
}

.preview-blog-list a {
    display: block;
    padding: 14px 16px;
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    background: #ffffff;
    text-decoration: none;
}

.preview-latest-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.preview-latest-card {
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 0 0 26px;
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(20, 33, 27, 0.07);
}

.preview-latest-card__date,
.preview-latest-card h3,
.preview-latest-card > a {
    margin-inline: 26px;
}

.preview-latest-card__date {
    display: block;
    margin-top: 22px;
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.preview-latest-card h3 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: clamp(1.05rem, 1.25vw, 1.28rem);
    line-height: 1.2;
}

@media (max-width: 1180px) {
    .preview-latest-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.preview-accordion {
    padding: 0 24px;
    border: 1px solid rgba(20, 33, 27, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(20, 33, 27, 0.06);
}

.preview-accordion__item + .preview-accordion__item {
    border-top: 1px solid var(--color-line);
}

.preview-accordion__item button {
    position: relative;
    padding: 22px 44px 22px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.preview-accordion__item button::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 18px;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.preview-accordion__item button[aria-expanded="true"]::after {
    content: "-";
}

.preview-accordion__panel {
    max-width: 720px;
    padding: 0 40px 22px 0;
    color: var(--color-muted);
}

.preview-cta {
    background:
        linear-gradient(120deg, rgba(16, 44, 34, 0.96), rgba(30, 106, 66, 0.88)),
        var(--color-primary-dark);
    color: #ffffff;
}

.preview-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) auto;
    align-items: center;
    gap: 32px;
}

.preview-cta h2 {
    max-width: 760px;
    margin: 0 0 12px;
}

.preview-cta p:not(.eyebrow) {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
}

.tsx-cta-band,
.tsx-doc-cta,
.tsx-rd-slide--cta {
    background:
        linear-gradient(120deg, rgba(16, 44, 34, 0.96), rgba(30, 106, 66, 0.88)),
        var(--color-primary-dark);
    color: #ffffff;
}

.tsx-rd-cta-panel {
    border: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
}

.tsx-doc-cta::before {
    display: none;
}

.tsx-cta-band h2,
.tsx-doc-cta h2,
.tsx-rd-cta-panel h2 {
    color: #ffffff;
}

.tsx-cta-band__text,
.tsx-doc-cta p,
.tsx-rd-cta-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.tsx-cta-band .button--secondary,
.tsx-doc-cta .button--secondary,
.tsx-rd-cta-panel .button--secondary {
    border-color: rgba(255, 255, 255, 0.62);
    color: #ffffff;
}

.preview-page-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: page-index;
}

.preview-page-index li {
    counter-increment: page-index;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
}

.preview-page-index li::before {
    content: counter(page-index, decimal-leading-zero);
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

[data-language="zh"] .preview-factory-metrics strong,
[data-language="zh"] .preview-qa-steps span,
[data-language="zh"] .preview-process-grid article > span,
[data-language="zh"] .preview-latest-card__date,
[data-language="zh"] .preview-page-index li::before {
    font-family: var(--font-cjk-sans);
}

.preview-page-index span {
    display: none;
}

.preview-page-index a {
    font-weight: 800;
    text-decoration: none;
}

.preview-page-index code {
    color: var(--color-muted);
    font-size: 0.82rem;
}

@media (max-width: 1100px) {
    .site-header__inner {
        gap: 14px;
    }

    .site-header__logo img {
        height: 48px;
        max-width: 236px;
    }

    .site-header__menu {
        gap: 13px;
    }

    .site-header__menu a {
        font-size: 0.86rem;
    }

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

    .preview-qa-steps,
    .preview-process-grid,
    .tsx-doc-grid,
    .tsx-doc-timeline,
    .tsx-doc-offer-grid,
    .tsx-doc-quote-grid,
    .tsx-doc-pain-list,
    .tsx-doc-file-list,
    .tsx-sop-grid,
    .tsx-smart-technical-grid,
    .tsx-smart-hardware-grid,
    .tsx-smart-recipe-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tsx-team-profile-grid,
    .tsx-team-responsibility-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tsx-factory-profile__intro {
        grid-template-columns: 1fr;
    }

    .tsx-factory-profile--image-right .tsx-factory-profile__media {
        order: 0;
    }

    .tsx-factory-stat-row,
    .tsx-factory-summary-row,
    .tsx-factory-capacity-summary .tsx-factory-summary-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tsx-page-brands-oem-partners.tsx-section-product-categories-available-for-branding .tsx-doc-offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tsx-doc-horizontal-process {
        grid-template-columns: repeat(6, 300px);
    }

    .tsx-doc-horizontal-process-shell {
        padding-inline: 48px;
    }

    .tsx-doc-horizontal-process__control {
        top: 58px;
        width: 56px;
        height: 56px;
    }

    .tsx-doc-horizontal-process__control::before {
        inset: -7px;
    }

    .tsx-doc-horizontal-process__control span {
        width: 40px;
        height: 40px;
    }

    .tsx-doc-horizontal-process__control svg {
        width: 25px;
        height: 25px;
    }

    .tsx-doc-horizontal-process__control--prev {
        left: 0;
    }

    .tsx-doc-horizontal-process__control--next {
        right: 0;
    }

    .tsx-doc-horizontal-process__body {
        min-height: 320px;
    }

}

@media (max-width: 768px) {
    html,
    body,
    .preview-page {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .tsx-sop-tools {
        justify-content: flex-start;
    }

    .tsx-sop-search,
    .tsx-sop-filters {
        flex: 1 1 100%;
    }

    .tsx-sop-filter {
        font-size: 1rem;
    }

    .tsx-doc-horizontal-process {
        grid-template-columns: repeat(6, minmax(272px, 82vw));
        margin-right: -14px;
        padding-right: 14px;
    }

    .tsx-doc-horizontal-process-shell {
        padding-inline: 40px;
    }

    .tsx-doc-horizontal-process::before {
        left: 44px;
        right: 44px;
    }

    .tsx-doc-horizontal-process__control {
        top: 68px;
        width: 44px;
        height: 44px;
    }

    .tsx-doc-horizontal-process__control::before {
        inset: -5px;
    }

    .tsx-doc-horizontal-process__control span {
        width: 32px;
        height: 32px;
    }

    .tsx-doc-horizontal-process__control svg {
        width: 21px;
        height: 21px;
    }

    .tsx-doc-mode-comparison {
        grid-template-columns: 1fr;
    }

    .tsx-doc-mode-card {
        min-height: auto;
        padding: 30px 24px 36px;
    }

    .tsx-doc-mode-card__header {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .tsx-doc-mode-card__header .tsx-doc-icon {
        width: 50px;
        height: 50px;
    }

    .site-header__inner {
        display: flex;
        justify-content: flex-start;
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        min-height: 70px;
        gap: 8px;
    }

    .site-header {
        width: 100vw;
        max-width: 100vw;
        overflow: visible;
    }

    .site-header__toggle {
        display: inline-flex;
        order: 3;
        flex: 0 0 auto;
        margin-left: 0;
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .site-header__cta {
        display: none;
    }

    .site-header__logo img {
        height: 38px;
        max-width: 162px;
    }

    .site-header__logo {
        margin-right: 0;
        min-width: 0;
    }

    .site-header__tools {
        position: static;
        transform: none;
        order: 1;
        margin-left: 0;
        gap: 8px;
    }

    .site-header__lang {
        min-height: 34px;
        padding: 2px;
    }

    .site-header__lang a,
    .site-header__lang button {
        min-width: 28px;
        min-height: 28px;
        padding: 0 5px;
        font-size: 0.72rem;
    }

    .site-header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        max-height: calc(100svh - 70px);
        overflow-y: auto;
        padding: 18px 20px 104px;
        z-index: 40;
        background-color: rgba(247, 243, 234, 0.98);
        background-image: var(--paper-fiber);
        border-bottom: 1px solid var(--color-line);
        box-shadow: 0 22px 48px rgba(16, 44, 34, 0.14);
    }

    .site-header__nav.is-open {
        display: block;
    }

    .site-header__menu {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header__menu .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        padding: 6px 0 0 14px;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero,
    .section {
        padding: 54px 0;
    }

    .card-grid,
    .tsx-hero__grid,
    .tsx-proof__intro,
    .tsx-proof__metrics,
    .tsx-card-grid__items,
    .tsx-tabs__grid,
    .site-footer__grid,
    .preview-hero__inner,
    .preview-proof__intro,
    .preview-proof__metrics,
    .preview-serve-grid,
    .preview-split-heading,
    .preview-product-grid,
    .preview-why-grid,
    .preview-media-feature,
    .preview-quality__grid,
    .preview-qa-steps,
    .preview-tabs,
    .preview-process-grid,
    .preview-latest-grid,
    .preview-two-column,
    .preview-cta__inner,
    .preview-page-index,
    .tsx-doc-hero__grid,
    .tsx-doc-grid,
    .tsx-doc-timeline,
    .tsx-doc-metrics,
    .tsx-doc-steps,
    .tsx-doc-structured-grid,
    .tsx-doc-layout--product-cards .tsx-doc-structured-grid,
    .tsx-doc-layout--comparison .tsx-doc-structured-grid,
    .tsx-doc-layout--download-gate .tsx-doc-structured-grid,
    .tsx-doc-scenario-strip,
    .tsx-doc-offer-grid,
    .tsx-doc-quote-grid,
    .tsx-doc-pain-list,
    .tsx-doc-file-list,
    .tsx-sop-grid,
    .tsx-smart-technical-grid,
    .tsx-smart-hardware-grid,
    .tsx-smart-extracts,
    .tsx-smart-recipe-tools,
    .tsx-smart-recipe-grid,
    .tsx-blog-tools,
    .tsx-faq-tabs,
    .tsx-contact-page__grid,
    .tsx-form,
    .tsx-doc-cta__inner {
        grid-template-columns: 1fr;
    }

    .tsx-rd-intro-copy__grid,
    .tsx-rd-feature,
    .tsx-rd-client-grid,
    .tsx-rd-cta-panel {
        grid-template-columns: 1fr;
    }

    .tsx-rd-slide {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .tsx-rd-slide__canvas,
    .tsx-rd-cta-panel {
        width: min(calc(100% - 56px), 1180px);
        max-width: calc(100vw - 56px);
        padding: 28px 20px;
    }

    .tsx-rd-hero-copy h1 {
        max-width: 100%;
        font-size: 2.18rem;
        line-height: 1.18;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-wrap: balance;
    }

    .tsx-rd-hero-copy__lead,
    .tsx-rd-intro-copy__grid p,
    .tsx-rd-feature__copy p,
    .tsx-rd-client-card p,
    .tsx-rd-cta-panel p,
    .tsx-rd-feature,
    .tsx-rd-client-grid,
    .tsx-rd-cta-panel {
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    [data-language="zh"] .tsx-rd-hero-copy h1,
    [data-language="zh"] .tsx-rd-hero-copy__lead,
    [data-language="zh"] .tsx-rd-intro-copy__grid p,
    [data-language="zh"] .tsx-rd-feature__copy p,
    [data-language="zh"] .tsx-rd-client-card p {
        word-break: break-all;
    }

    .tsx-rd-feature {
        gap: 22px;
        margin-top: 34px;
        padding: 18px;
    }

    .tsx-rd-intro-copy__grid {
        padding-right: 0;
    }

    .tsx-rd-intro-copy__grid p {
        padding: 24px;
    }

    .tsx-rd-source-image,
    .tsx-rd-source-image img {
        max-width: 100%;
    }

    .tsx-rd-feature__copy {
        padding-right: 0;
    }

    .tsx-rd-client-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(30, 48, 40, 0.09);
        padding-right: clamp(34px, 4vw, 48px);
    }

    .tsx-rd-client-card:last-child {
        border-bottom: 0;
    }

    .tsx-rd-cta-panel .button-row {
        justify-content: start;
    }

    .tsx-factory-hero__media-strip,
    .tsx-factory-stat-row,
    .tsx-factory-summary-row,
    .tsx-factory-capacity-summary .tsx-factory-summary-row,
    .tsx-factory-block-grid {
        grid-template-columns: 1fr;
    }

    .tsx-factory-hero__media-strip {
        width: min(calc(100% - 28px), 720px);
        gap: 12px;
    }

    .tsx-factory-profile > .container,
    .tsx-factory-capacity-summary > .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .tsx-factory-hero__media {
        aspect-ratio: 1.62 / 1;
    }

    .tsx-factory-hero__copy {
        text-align: left;
    }

    .tsx-factory-hero__copy h1,
    .tsx-factory-hero__copy p {
        margin-inline: 0;
    }

    .tsx-factory-hero__copy h1 {
        white-space: normal;
    }

    .tsx-factory-stat {
        border: 1px solid rgba(50, 132, 88, 0.16);
    }

    .tsx-page-brands-oem-partners.tsx-section-product-categories-available-for-branding .tsx-doc-offer-grid {
        grid-template-columns: 1fr;
    }

    .tsx-page-fb-chains.tsx-section-the-3-second-standard .tsx-doc-highlight h3 {
        font-size: clamp(1.18rem, 5.2vw, 1.62rem);
    }

    .tsx-doc-section .section-heading {
        margin-bottom: 24px;
    }

    .tsx-doc-prose {
        margin-inline: auto;
    }

    .tsx-page-brand-story.tsx-section-where-it-started {
        min-height: auto;
        padding: 76px 0;
    }

    .tsx-page-brand-story.tsx-section-where-it-started > .container {
        width: min(100% - 28px, var(--container));
    }

    .tsx-page-brand-story.tsx-section-where-it-started .section-heading {
        margin-bottom: 34px;
    }

    .tsx-page-brand-story.tsx-section-where-it-started .section-heading h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
        line-height: 1.08;
    }

    .tsx-page-brand-story.tsx-section-where-it-started .tsx-doc-prose {
        width: 100%;
        gap: 28px;
        font-size: 1.02rem;
        line-height: 1.82;
    }

    .tsx-brand-story-mission-zh {
        min-height: auto;
        padding: 76px 0;
    }

    .tsx-brand-story-mission-zh > .container {
        width: min(100% - 28px, var(--container));
    }

    .tsx-brand-story-mission-zh .section-heading {
        margin-bottom: 34px;
    }

    .tsx-brand-story-mission-zh .section-heading h2 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
        line-height: 1.12;
    }

    .tsx-brand-story-mission-zh__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tsx-brand-story-mission-zh__card:first-child,
    .tsx-brand-story-mission-zh__card:last-child {
        grid-column: 1;
    }

    .tsx-brand-story-mission-zh__card h3 {
        margin-bottom: 16px;
        font-size: 1.65rem;
    }

    .tsx-brand-story-mission-zh__card img {
        aspect-ratio: 1.3 / 1;
    }

    .tsx-brand-story-mission-copy-zh {
        min-height: auto;
        padding: 76px 0;
    }

    .tsx-brand-story-mission-copy-zh > .container {
        width: min(100% - 28px, var(--container));
    }

    .tsx-brand-story-mission-copy-zh__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tsx-brand-story-mission-copy-zh__column:first-child,
    .tsx-brand-story-mission-copy-zh__column:last-child {
        grid-column: 1;
    }

    .tsx-brand-story-mission-copy-zh__column {
        gap: 24px;
        padding: 22px 64px 22px 22px;
        font-size: 1.02rem;
        line-height: 1.82;
    }

    .tsx-brand-story-group-zh {
        min-height: auto;
        padding: 76px 0;
    }

    .tsx-brand-story-group-zh > .container {
        width: min(100% - 28px, var(--container));
    }

    .tsx-brand-story-group-zh__header h2 {
        font-size: clamp(2.45rem, 11vw, 3.4rem);
        line-height: 1.12;
    }

    .tsx-brand-story-group-zh__meta,
    .tsx-brand-story-group-zh__subhead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .tsx-brand-story-group-zh__header {
        width: 100%;
        padding: 24px 18px;
    }

    .tsx-brand-story-group-zh__meta {
        margin-top: 34px;
    }

    .tsx-brand-story-group-zh__rows {
        width: 100%;
        gap: 28px;
        margin: 34px 0 0;
    }

    .tsx-brand-story-group-zh__row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px 64px 18px 18px;
    }

    .tsx-brand-story-group-zh__row h3,
    .tsx-brand-story-group-zh__row p {
        font-size: 1.02rem;
        line-height: 1.76;
    }

    .tsx-doc-section--comparison .tsx-doc-grid,
    .tsx-doc-section--download-gate .tsx-doc-grid,
    .tsx-doc-section--contact .tsx-doc-grid,
    .tsx-doc-section--article-list .tsx-doc-grid,
    .tsx-doc-section--sop-library .tsx-doc-grid {
        grid-template-columns: 1fr;
    }

    .tsx-doc-article {
        grid-template-columns: 1fr;
    }

    .tsx-doc-article--with-media {
        gap: 20px;
    }

    .tsx-doc-article__media,
    .tsx-doc-article__media img {
        min-height: 220px;
    }

    .tsx-doc-history-nav {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        gap: 10px;
    }

    .tsx-doc-history-arrow span {
        width: 38px;
        height: 38px;
    }

    .tsx-doc-history-arrow em {
        display: none;
    }

    .tsx-team-profile-grid,
    .tsx-team-responsibility-grid,
    .tsx-team-work-grid {
        grid-template-columns: 1fr;
    }

    .tsx-team-profile__body {
        padding-top: 16px;
    }

    .tsx-team-responsibility,
    .tsx-team-work-item {
        padding: 24px 20px;
    }

    .tsx-team-responsibility p,
    .tsx-team-work-item p {
        padding-right: 58px;
    }

    .tsx-doc-history-years {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 184px;
    }

    .tsx-doc-history-panels {
        margin-top: 34px;
    }

    .tsx-doc-history-panel {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tsx-doc-history-panel > p:not(.tsx-doc-history-item__year) {
        grid-column: auto;
    }

    .tsx-doc-article p:not(.tsx-doc-article__meta) {
        grid-column: auto;
        margin-top: 0;
    }

    .tsx-blog-detail-hero {
        padding-top: 112px;
    }

    .tsx-blog-detail-hero__grid {
        grid-template-columns: 1fr;
    }

    .tsx-blog-detail-hero h1 {
        font-size: clamp(2.35rem, 13vw, 3.9rem);
    }

    .tsx-blog-detail-hero__media img {
        aspect-ratio: 16 / 11;
    }

    .tsx-blog-detail-point {
        grid-template-columns: 26px minmax(0, 1fr);
    }

    .tsx-doc-structured-card,
    .tsx-doc-scenario,
    .tsx-doc-offer-card,
    .tsx-doc-quote-card,
    .tsx-doc-pain-item,
    .tsx-doc-file-item,
    .tsx-sop-card {
        min-height: auto;
    }

    .tsx-faq-tabs__nav {
        position: static;
    }

    .tsx-faq-tabs__nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        border-top: 0;
    }

    .tsx-faq-tabs__nav button {
        flex: 0 0 auto;
        padding: 10px 12px;
        border: 1px solid rgba(18, 50, 39, 0.14);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.28);
    }

    .tsx-faq-tabs__nav button[aria-selected="true"] {
        background: rgba(16, 44, 34, 0.94);
        color: #ffffff;
    }

    .tsx-form__field--textarea,
    .tsx-form__field--multi-select,
    .tsx-form .button {
        grid-column: auto;
    }

    .tsx-form__choice-grid {
        grid-template-columns: 1fr;
    }

    .tsx-sample-flow__line {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .tsx-page-qa-system .tsx-qa-stage-row {
        grid-template-columns: 1fr;
    }

    .tsx-page-qa-system .tsx-qa-stage--feature {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tsx-page-qa-system .tsx-qa-stage--feature .tsx-qa-stage__index {
        flex-direction: row;
        align-items: baseline;
        gap: 14px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(185, 130, 43, 0.22);
        padding-bottom: 10px;
    }

    .tsx-page-qa-system .tsx-qa-stage__number {
        font-size: clamp(2.4rem, 9vw, 3.6rem);
    }

    .tsx-page-qa-system .tsx-qa-stage--feature .tsx-qa-stage__number {
        font-size: clamp(3rem, 11vw, 4.4rem);
    }

    .tsx-doc-hero--qa-system {
        padding: 72px 0 56px;
    }

    .tsx-doc-hero--qa-system .tsx-doc-hero__grid,
    .tsx-qa-process-card {
        grid-template-columns: 1fr;
    }

    .tsx-doc-hero--qa-system h1,
    [data-language="zh"] .tsx-doc-hero--qa-system h1 {
        font-size: 2.42rem;
        line-height: 1.16;
    }

    .tsx-doc-hero--qa-system .tsx-doc-hero__lead {
        font-size: 1.06rem;
        line-height: 1.72;
    }

    .tsx-qa-process-layout {
        grid-template-columns: 1fr;
    }

    .tsx-qa-process-card--stage-01,
    .tsx-qa-process-card--stage-02,
    .tsx-qa-process-card--stage-03,
    .tsx-qa-process-card--stage-04,
    .tsx-qa-process-card--stage-05 {
        grid-column: 1;
    }

    .tsx-qa-process-card::before {
        inset: 0 auto 0 0;
    }

    .tsx-qa-process-card__body {
        padding: 22px 24px 26px;
    }

    .tsx-qa-process-card__meta {
        flex-wrap: wrap;
    }

    .tsx-qa-process-card__title {
        font-size: 1.34rem;
    }

    .tsx-page-qa-system.tsx-section-what-does-this-mean-for-buyers .tsx-doc-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tsx-page-qa-system.tsx-section-what-does-this-mean-for-buyers .tsx-doc-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(18, 50, 39, 0.1);
    }

    .tsx-page-qa-system.tsx-section-what-does-this-mean-for-buyers .tsx-doc-card:last-child {
        border-bottom: 0;
    }

    .tsx-solution-switcher {
        top: 70px;
        overflow-x: auto;
    }

    .tsx-solution-switcher__inner {
        display: flex;
        width: max-content;
        min-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .tsx-solution-switcher a {
        min-width: 210px;
        min-height: 58px;
        padding-inline: 14px;
        white-space: normal;
    }

    .tsx-doc-metric {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 50, 39, 0.14);
    }

    .tsx-doc-step {
        grid-template-columns: 1fr;
    }

    .tsx-doc-product-series > button {
        grid-template-columns: 48px minmax(0, 1fr) 24px;
        padding: 20px 18px;
    }

    .tsx-doc-product-series__panel {
        padding: 0 18px 24px;
    }

    .tsx-doc-filter {
        gap: 8px;
    }

    .tsx-doc-filter button {
        flex: 1 1 calc(50% - 8px);
        padding-inline: 12px;
    }

    .tsx-doc-hero {
        min-height: auto;
        padding: 82px 0 48px;
    }

    .tsx-doc-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.45rem);
    }

    [data-language="zh"] .tsx-doc-hero h1 {
        font-size: clamp(2.12rem, 10vw, 3.2rem);
    }

    .tsx-doc-hero__lead {
        padding-left: 18px;
        font-size: 1.06rem;
        line-height: 1.76;
    }

    .tsx-doc-hero__media img,
    .tsx-doc-hero__media video {
        aspect-ratio: 16 / 11;
    }

    .tsx-brand-story-hero-zh {
        min-height: auto;
        padding: 76px 0 54px;
    }

    .tsx-brand-story-hero-zh__header {
        margin-bottom: 34px;
    }

    .tsx-brand-story-hero-zh h1 {
        font-size: clamp(2.1rem, 9.2vw, 3.15rem);
        line-height: 1.2;
        white-space: normal;
        transform: none;
    }

    .tsx-brand-story-hero-zh__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tsx-brand-story-hero-zh__media,
    .tsx-brand-story-hero-zh__copy {
        grid-column: 1;
    }

    .tsx-brand-story-hero-zh__media img {
        aspect-ratio: 1.36 / 1;
    }

    .tsx-brand-story-hero-zh__copy {
        font-size: 1.02rem;
        line-height: 1.72;
    }

    .tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: calc(100vw - 28px);
    }

    .tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__copy,
    .tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__media {
        min-width: 0;
        max-width: 100%;
    }

    .tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__copy {
        width: 100%;
    }

    .tsx-doc-hero--smart-beverage-machine h1 {
        width: 100%;
        max-width: calc(100vw - 28px);
        font-size: clamp(1.75rem, 6.8vw, 2.08rem);
        line-height: 1.1;
        overflow-wrap: anywhere;
        word-break: break-all;
    }

    [data-language="zh"] .tsx-doc-hero--smart-beverage-machine h1 {
        font-size: clamp(1.75rem, 6.8vw, 2.08rem);
        line-height: 1.16;
    }

    .tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__lead {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    [data-language="zh"] .tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__lead {
        word-break: break-all;
    }

    .tsx-doc-hero--smart-beverage-machine .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .tsx-doc-hero--smart-beverage-machine .button-row .button {
        width: 100%;
        min-width: 0;
        padding-inline: 14px;
        text-align: center;
        white-space: normal;
    }

    .tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__media {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .tsx-doc-hero--smart-beverage-machine .tsx-doc-hero__media img {
        aspect-ratio: auto;
    }

    .tsx-hero:not(.tsx-hero--home) {
        padding: 54px 0;
    }

    .tsx-hero--home {
        min-height: 100svh;
        padding: 108px 0 72px;
    }

    .tsx-hero--home .tsx-hero__media--background img,
    .tsx-hero--home .tsx-hero__media--background video {
        height: 100%;
    }

    .tsx-hero__media img,
    .tsx-hero__media video {
        aspect-ratio: 16 / 10;
    }

    .tsx-proof,
    .preview-proof {
        padding: 54px 0 62px;
    }

    .tsx-proof__intro,
    .preview-proof__intro {
        gap: 26px;
        margin-bottom: 38px;
    }

    .tsx-proof__heading h2,
    .preview-proof__heading h2 {
        font-size: clamp(1.55rem, 5.8vw, 2.1rem);
    }

    .tsx-proof__copy,
    .preview-proof__copy {
        font-size: 0.97rem;
        line-height: 1.8;
    }

    .tsx-proof__metrics,
    .preview-proof__metrics {
        width: min(100% - 28px, var(--container));
        margin-inline: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tsx-proof-metric,
    .preview-proof-metric {
        min-height: 154px;
        padding: 24px 14px;
        border-left: 0;
        border-bottom: 1px solid rgba(20, 33, 27, 0.12);
    }

    .tsx-proof-metric:nth-child(2n),
    .preview-proof-metric:nth-child(2n) {
        border-left: 1px solid rgba(20, 33, 27, 0.12);
    }

    .tsx-proof-metric:nth-last-child(-n + 2),
    .preview-proof-metric:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .tsx-tabs__panel {
        min-height: 0;
        padding: 24px;
    }

    .tsx-cta-band__inner {
        display: block;
    }

    .preview-hero {
        min-height: calc(100svh - 70px);
        padding: 0;
    }

    .preview-hero__inner {
        align-items: center;
        gap: 24px;
        width: min(100% - 28px, var(--container));
        max-width: calc(100vw - 28px);
        min-height: calc(100svh - 70px);
        overflow: hidden;
    }

    .preview-hero__copy,
    .preview-hero__lead {
        width: 100%;
        max-width: 100%;
    }

    .preview-hero h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 9.8vw, 2.85rem);
        line-height: 1;
        overflow-wrap: break-word;
    }

    [data-language="zh"] .preview-hero h1 {
        font-size: clamp(2rem, 8.8vw, 3.2rem);
        line-height: 1.08;
    }

    .preview-hero__lead {
        font-size: 0.98rem;
        line-height: 1.68;
        overflow-wrap: anywhere;
    }

    .preview-hero .button-row {
        flex-direction: column;
    }

    .preview-hero .button-row .button {
        width: 100%;
    }

    .tsx-hero--home .tsx-hero__grid {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 24px;
        width: min(100% - 28px, var(--container));
        max-width: calc(100vw - 28px);
        min-height: calc(100svh - 70px);
    }

    .tsx-hero--home h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 9.8vw, 2.85rem);
        line-height: 1;
        overflow-wrap: break-word;
    }

    [data-language="zh"] .tsx-hero--home h1 {
        font-size: clamp(2rem, 8.8vw, 3.2rem);
        line-height: 1.08;
    }

    .tsx-hero--home .tsx-hero__text {
        font-size: 0.98rem;
        line-height: 1.68;
        overflow-wrap: anywhere;
    }

    .tsx-hero--home .button-row {
        flex-direction: column;
    }

    .tsx-hero--home .button-row .button {
        width: 100%;
    }

    [data-language="zh"] .tsx-hero--home .tsx-hero__grid,
    [data-language="zh"] .preview-hero__inner {
        justify-content: start;
    }

    [data-language="zh"] .tsx-hero--home .tsx-hero__copy,
    [data-language="zh"] .preview-hero__copy {
        display: block;
        width: 100%;
        max-width: calc(100vw - 36px);
        right: 0;
        min-height: 0;
    }

    [data-language="zh"] .tsx-hero--home h1,
    [data-language="zh"] .preview-hero h1 {
        width: auto;
        max-width: 100%;
        height: auto;
        font-size: clamp(2rem, 8.4vw, 3rem);
        line-height: 1.12;
        overflow-wrap: break-word;
    }

    [data-language="zh"] .tsx-hero--home .tsx-hero__text,
    [data-language="zh"] .preview-hero__lead {
        height: auto;
        font-size: 0.9rem;
        line-height: 1.72;
        overflow-wrap: anywhere;
    }

    [data-language="zh"] .tsx-hero--home .button-row,
    [data-language="zh"] .preview-hero .button-row {
        position: static;
        width: 100%;
    }

    .preview-product-card {
        min-height: 0;
    }

    .preview-why-grid {
        display: block;
        border: 0;
        background: transparent;
    }

    .preview-why-grid article {
        min-height: 0;
        padding: 22px 0 34px;
        border-top: 1px solid rgba(20, 33, 27, 0.14);
        border-left: 0;
        text-align: center;
    }

    .preview-why-grid article:last-child {
        border-bottom: 1px solid rgba(20, 33, 27, 0.14);
    }

    .preview-why-grid article::after {
        display: none;
    }

    .preview-why-grid article:hover {
        transform: none;
        box-shadow: none;
    }

    .preview-why-grid__icon {
        width: 116px;
        height: 116px;
        margin-bottom: 22px;
    }

    .preview-why-grid__icon .preview-proof-metric__icon,
    .preview-why-grid__icon .tsx-proof-metric__icon {
        width: 52px;
        height: 52px;
    }

    .preview-why-grid h3,
    .preview-why-grid p {
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .preview-products .preview-section-heading h2,
    .preview-why .preview-section-heading h2,
    .preview-process .preview-section-heading h2,
    .preview-latest .preview-section-heading h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.22;
    }

    .preview-factory-metrics {
        grid-template-columns: 1fr;
    }

    .preview-tab-panel {
        min-height: 0;
        padding: 24px;
    }

    .preview-process-grid {
        display: block;
        border: 0;
        background: transparent;
    }

    .preview-process-grid article {
        min-height: 0;
        padding: 22px 0 34px;
        border-top: 1px solid rgba(20, 33, 27, 0.14);
        text-align: center;
    }

    .preview-process-grid article:last-child {
        border-bottom: 1px solid rgba(20, 33, 27, 0.14);
    }

    .preview-process-grid article::after {
        display: none;
    }

    .preview-process-grid article:hover {
        transform: none;
        box-shadow: none;
    }

    .preview-process-grid__icon {
        width: 112px;
        height: 112px;
        margin-bottom: 22px;
    }

    .preview-process-grid__icon .preview-proof-metric__icon,
    .preview-process-grid__icon .tsx-proof-metric__icon {
        width: 50px;
        height: 50px;
    }

    .preview-process-grid h3,
    .preview-process-grid p {
        max-width: 310px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .preview-accordion {
        padding-inline: 18px;
    }

    .preview-page-index li {
        grid-template-columns: 36px 1fr;
    }

    .preview-page-index code {
        grid-column: 2;
    }

    .floating-contact {
        right: 10px;
        bottom: 88px;
        left: auto;
        width: auto;
        display: flex;
        gap: 10px;
    }

    .floating-contact__button {
        width: 50px;
        min-width: 50px;
        height: 50px;
        min-height: 50px;
        padding: 0;
    }
}

@media (max-width: 1080px) {
    .tsx-certifications-hero__grid,
    .tsx-certifications-gi-panel,
    .tsx-certifications-documents {
        grid-template-columns: 1fr;
    }

    .tsx-certifications-hero__media {
        max-width: 840px;
        width: 100%;
        margin-inline: auto;
    }

    .tsx-certifications-hero__copy {
        top: auto;
        left: auto;
        min-height: auto;
        margin-top: 0;
    }

    .tsx-certifications-gi-panel {
        padding: clamp(30px, 5vw, 46px);
    }

    .tsx-certifications-gi-panel::after {
        display: none;
    }

    .tsx-doc-hero--certifications .tsx-doc-hero__lead {
        max-width: none;
    }

    .tsx-certifications-core-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .tsx-doc-hero--certifications {
        padding: 72px 0 52px;
    }

    .tsx-certifications-core-grid {
        grid-template-columns: 1fr;
    }

    .tsx-certification-card__media .tsx-certification-image__asset {
        height: min(108vw, 520px);
    }

    .tsx-certification-card__body,
    .tsx-certifications-gi__copy,
    .tsx-certifications-documents__list {
        padding: 24px;
    }

    .tsx-certifications-documents__visual {
        max-width: 460px;
        width: 100%;
        margin-inline: auto;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .has-scroll-effects [data-scroll-reveal],
    [data-scroll-speed],
    .preview-hero__video[data-scroll-speed],
    .tsx-hero__media--background img[data-scroll-speed],
    .tsx-hero__media--background video[data-scroll-speed],
    .preview-product-card__media img[data-scroll-speed],
    .preview-service-card__media img[data-scroll-speed],
    .preview-latest-card__media img[data-scroll-speed],
    .preview-media-feature__image img[data-scroll-speed],
    .tsx-card__media img[data-scroll-speed] {
        opacity: 1;
        transform: none !important;
    }
}
