@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700;800&display=swap');

:root {
    --brand: #ee4d2d;
    --brand-2: #ff7a37;
    --brand-dark: #c9341e;
    --brand-soft: #fff0ea;
    --ink: #111214;
    --ink-2: #555b62;
    --ink-3: #8c9299;
    --paper: #f5f3ee;
    --surface: #fff;
    --surface-2: #ebe8e1;
    --night: #101214;
    --line: rgba(17, 18, 20, .11);
    --line-light: rgba(255, 255, 255, .16);
    --max: 1240px;
    --wide: 1440px;
    --nav-height: clamp(64px, 6.6667svh, 96px);
    --radius: 24px;
    --radius-sm: 14px;
    --shadow: 0 24px 70px rgba(20, 22, 24, .12);
    --sans: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    background: var(--paper)
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

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

button {
    color: inherit
}

::selection {
    background: var(--brand);
    color: #fff
}

/* 锚点跳转时为固定导航留出空间，避免目标标题被顶栏遮挡 */
[id] {
    scroll-margin-top: calc(var(--nav-height) + 12px);
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -100px;
    z-index: 9999;
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px
}

.skip-link:focus {
    top: 20px
}

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

.wide-wrap {
    width: min(var(--wide), calc(100% - 64px));
    margin: 0 auto
}

.section {
    padding: 112px 0
}

.section-alt {
    background: var(--surface)
}

.section-dark {
    background: var(--night);
    color: #fff
}

.tech-patent-section {
    min-height: min(680px, calc(100svh - var(--nav-height)));
    background: linear-gradient(rgba(255, 255, 255, .55), rgba(255, 255, 255, .55)), url("images/tech/background2.jpg") center / cover no-repeat;
}

.tech-patent-section .section-head h2,
.tech-patent-section .section-head p {
    max-width: none;
    white-space: nowrap
}

.tech-patent-section .section-head h2 {
    color: #000
}

.vigx-language-en .tech-patent-section .section-head h2 {
    font-size: clamp(38px, 3.2vw, 46px);
    line-height: .98;
    letter-spacing: -.055em;
    white-space: normal;
}

.vigx-language-en .tech-patent-section .section-head {
    max-width: 1080px;
}

.eyebrow, .overline, .section-index {
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .16em;
    text-transform: uppercase
}

.eyebrow, .overline.dark {
    color: var(--brand)
}

.section-head {
    max-width: 720px;
    margin-bottom: 48px
}

.process-title {
    max-width: none;
    white-space: nowrap;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.section-head h2, .section-heading h2 {
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 670;
    margin-top: 14px
}

.section-head p, .section-heading > p:last-child {
    font-size: 17px;
    color: var(--ink-2);
    margin-top: 20px;
    max-width: 660px;
    line-height: 1.8
}

.section-heading.light p {
    color: rgba(255, 255, 255, .62)
}

.section-heading.light h2 {
    color: #fff
}

.section-index {
    color: var(--ink-3)
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 690;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px
}

.text-link span {
    transition: transform .25s
}

.text-link:hover span {
    transform: translateX(4px)
}

.light-link {
    color: #fff
}

.cta-primary, .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    background: var(--brand);
    color: #fff;
    font-size: 13px;
    font-weight: 720;
    transition: .25s;
    cursor: pointer
}

.cta-primary:hover, .btn:hover {
    background: var(--brand-dark);
    transform: translateY(-2px)
}

.cta-light {
    background: #fff;
    color: var(--ink)
}

.cta-light:hover {
    background: #f2f2f2
}

.btn-ghost {
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line)
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff
}

.btn-light {
    background: #fff;
    color: var(--ink)
}

.industry-partnership-cta {
    background: var(--brand);
    color: #fff
}

.buy-bar a[href*="type=business"] {
    background: var(--brand);
    color: #fff
}

.industry-partnership-cta:hover {
    background: var(--brand-dark);
    color: #fff
}

.buy-bar a[href*="type=business"]:hover {
    background: var(--brand-dark);
    color: #fff
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand)
}

/* Navigation */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--nav-height);
    color: #fff;
    transition: background .3s, color .3s, border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent
}

.nav.is-scrolled, .inner-nav {
    background: rgba(247, 245, 240, .9);
    color: var(--ink);
    border-color: var(--line);
    backdrop-filter: blur(20px)
}

.nav-inner {
    max-width: var(--wide);
    height: 100%;
    padding: 0 32px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px
}

.vigx-wordmark {
    display: block;
    width: 190px;
    height: 21px;
    flex: 0 0 auto;
    font-size: 0;
    line-height: 0;
    background: url("images/logo-gray.png") center / contain no-repeat
}

body.vigx-language-en .vigx-wordmark {
    background-image: url("images/logo-en-black.png")
}

body.vigx-language-en .footer .vigx-wordmark {
    background-image: url("images/VIGX-logo-en-shallow.png")
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: auto
}

.nav-links > a,
.nav-links > .nav-menu {
    width: 108px;
    text-align: center
}

.nav-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 100%
}

.nav-menu::after {
    content: "";
    position: absolute;
    z-index: 19;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px
}

.nav-menu > a {
    display: block;
    width: 100%;
    text-align: center
}

.nav-dropdown {
    position: absolute;
    z-index: 20;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    padding: 10px 4px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 14px 30px rgba(25, 27, 35, .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity .2s ease, visibility 0s linear .15s
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s
}

.nav-dropdown span {
    display: none;
    color: var(--ink-3);
    font-size: 10px;
    letter-spacing: .12em
}

.nav-links .nav-dropdown a {
    display: block;
    width: 100%;
    padding: 9px 2px;
    border-radius: 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    opacity: 1
}

.nav-dropdown[data-menu="scenes.html"],
.nav-dropdown[data-menu="scenes-en.html"] {
    width: max-content;
    min-width: 100%;
}

.nav-dropdown[data-menu="scenes.html"] a,
.nav-dropdown[data-menu="scenes-en.html"] a {
    white-space: nowrap;
}

.nav-dropdown[data-menu="scenes-en.html"] {
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu:hover .nav-dropdown[data-menu="scenes-en.html"],
.nav-menu:focus-within .nav-dropdown[data-menu="scenes-en.html"] {
    transform: translateX(-50%);
}

.nav-links .nav-dropdown a:hover {
    color: var(--brand);
    background: var(--surface-2)
}

.nav-links .nav-dropdown a::after {
    display: none
}

.nav-links a {
    position: relative;
    font-size: 13px;
    font-weight: 620;
    white-space: nowrap;
    color: inherit;
    opacity: .78
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: var(--brand)
}

.lang-v2 {
    display: flex;
    gap: 7px;
    font-size: 11px;
    align-items: center
}

.lang-v2 span {
    opacity: .45
}

.lang-v2 a {
    opacity: .45
}

.lang-v2 a:hover {
    opacity: 1
}

.nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 15px;
    border: 1px solid currentColor;
    border-radius: 999px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap
}

.nav-toggle {
    display: none;
    border: 0;
    background: none;
    width: 32px;
    height: 32px;
    cursor: pointer
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 1.5px;
    background: currentColor;
    margin: 5px auto;
    transition: .25s
}

main {
    padding-top: var(--nav-height)
}

.home-v2 main {
    padding-top: 0
}

/* Homepage */
.home-hero {
    position: relative;
    height: auto;
    min-height: 0;
    background: #151719;
    color: #fff;
    overflow: hidden
}

.home-hero-media {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center
}

.home-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, .28) 50%, rgba(0, 0, 0, .06) 80%), linear-gradient(0deg, rgba(0, 0, 0, .36), transparent 40%)
}

.home-hero-copy {
    position: absolute;
    z-index: 2;
    left: 268px;
    top: 50%;
    transform: translateY(-44%);
    width: 610px
}

.home-hero-copy .overline {
    color: rgba(255, 255, 255, .68);
    margin-bottom: 18px
}

.home-hero-copy h1 {
    font-size: 108px;
    font-weight: 650;
    letter-spacing: -.07em;
    line-height: .9;
    white-space: nowrap
}

.hero-statement {
    font-size: 38px;
    letter-spacing: -.04em;
    margin-top: 20px
}

.locale-en .hero-statement {
    width: auto;
    max-width: 100%;
    white-space: normal;
}

.hero-statement-nowrap {
    white-space: nowrap;
}

.hero-summary {
    max-width: 500px;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    margin: 16px 0 28px
}

.home-hero-actions {
    gap: 10px;
}

body.home-v2:not(.locale-en) .home-hero-actions {
    margin-top: 24px;
}

.home-hero-actions .cta-primary {
    min-width: 142px;
    padding: 13px 22px;
    font-size: 13px;
}

.hero-footnote {
    position: absolute;
    right: 28px;
    bottom: 24px;
    font-size: 10px;
    color: rgba(255, 255, 255, .45)
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .12em
}

.scroll-cue span {
    width: 22px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    position: relative
}

.scroll-cue span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 7px;
    width: 2px;
    height: 7px;
    background: #fff;
    border-radius: 2px;
    animation: scrollCue 1.8s infinite
}

@keyframes scrollCue {
    0% {
        transform: translate(-50%, 0);
        opacity: 0
    }
    40% {
        opacity: 1
    }
    100% {
        transform: translate(-50%, 12px);
        opacity: 0
    }
}

.manifesto-section {
    padding: 150px 0;
    background: var(--paper)
}

.manifesto-grid {
    display: grid;
    grid-template-columns:1fr 3fr;
    gap: 40px
}

.manifesto-grid h2 {
    font-size: clamp(46px, 6.3vw, 92px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 620
}

.manifesto-grid p:last-child {
    font-size: 19px;
    color: var(--ink-2);
    line-height: 1.8;
    margin-top: 32px;
    max-width: 760px
}

.pocket-stage {
    display: grid;
    grid-template-columns:1.4fr 1fr;
    min-height: 760px;
    background: var(--surface)
}

.pocket-media {
    overflow: hidden
}

.pocket-media video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pocket-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 77px;
    background: #e9e8e4
}

.pocket-content h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 640;
    margin: 16px 0 44px;
    white-space: nowrap
}

.spec-lines > div {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid var(--line)
}

.spec-lines strong {
    font-size: 30px;
    letter-spacing: -.05em
}

.spec-lines span {
    font-size: 13px;
    color: var(--ink-2)
}

.test-note {
    font-size: 11px;
    color: var(--ink-3);
    margin: 12px 0 30px
}

.journey-stage {
    position: relative;
    height: 82vh;
    min-height: 650px;
    color: #fff
}

.journey-stage > img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .08))
}

.journey-copy {
    position: absolute;
    left: max(32px, calc((100vw - var(--wide)) / 2 + 32px));
    top: 50%;
    transform: translateY(-50%);
    max-width: 660px
}

.journey-copy h2 {
    font-size: clamp(52px, 7vw, 100px);
    line-height: .94;
    letter-spacing: -.065em;
    font-weight: 620;
    margin: 18px 0 26px;
    white-space: nowrap
}

.journey-copy > p:last-child {
    font-size: 18px;
    max-width: 540px;
    color: rgba(255, 255, 255, .75)
}

.intelligence-section {
    background: var(--night);
    padding: 140px 0;
    color: #fff
}

.intelligence-section .section-heading {
    max-width: 850px
}

.motion-grid {
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap: 16px;
    margin-top: 64px
}

.motion-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #181b1e
}

.motion-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8
}

.motion-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 60%)
}

.motion-copy {
    position: absolute;
    z-index: 2;
    inset: auto 28px 28px
}

.motion-copy span {
    font-size: 10px;
    opacity: .5
}

.motion-copy h3 {
    font-size: 22px;
    margin: 8px 0
}

.motion-copy p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65)
}

.evidence-strip {
    display: grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    margin-top: 80px;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light)
}

.evidence-strip > div {
    padding: 30px 10px;
    border-right: 1px solid var(--line-light);
    white-space: nowrap
}

.evidence-strip > div:last-child {
    border: 0
}

.evidence-strip strong {
    display: block;
    font-size: clamp(28px, 3vw, 46px);
    letter-spacing: -.05em
}

.evidence-strip .evidence-unit {
    display: inline;
    font-size: .48em;
    letter-spacing: -.04em;
    vertical-align: baseline;
}

.evidence-strip span {
    font-size: 11px;
    color: rgba(255, 255, 255, .5)
}

.evidence-note {
    font-size: 10px;
    color: rgba(255, 255, 255, .36);
    margin-top: 12px
}

.story-section {
    display: grid;
    grid-template-columns:1.4fr 1fr;
    min-height: 760px;
    background: #dfe5dd
}

.story-visual {
    position: relative;
    overflow: hidden
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.story-number {
    position: absolute;
    right: 32px;
    bottom: 25px;
    color: #fff;
    font-size: clamp(75px, 10vw, 160px);
    font-weight: 650;
    letter-spacing: -.08em;
    line-height: .8
}

.story-number small {
    font-size: .15em;
    letter-spacing: 0
}

.story-copy {
    padding: 154px 115px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.story-copy blockquote {
    font-size: clamp(28px, 3.3vw, 48px);
    line-height: 1.2;
    letter-spacing: -.045em;
    margin: 24px 0 56px
}

.story-copy h2 {
    font-size: 22px
}

.story-copy > p {
    font-size: 14px;
    color: var(--ink-2);
    margin: 12px 0 28px
}

.products-section {
    padding: 140px 0
}

.products-section .section-heading {
    max-width: 800px
}

.product-editorial-grid {
    display: grid;
    grid-template-columns:1.15fr .85fr;
    gap: 20px;
    margin-top: 60px
}

.editorial-product {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 650px;
    color: #fff
}

.editorial-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s
}

.editorial-product:hover img {
    transform: scale(1.035)
}

.editorial-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent 65%)
}

.editorial-copy {
    position: absolute;
    inset: auto 36px 36px
}

.editorial-copy span {
    font-size: 10px;
    letter-spacing: .12em
}

.editorial-copy h3 {
    font-size: 42px;
    letter-spacing: -.05em;
    margin: 9px 0
}

.editorial-copy p {
    font-size: 14px;
    color: rgba(255, 255, 255, .72)
}

.editorial-copy b {
    display: inline-block;
    font-size: 12px;
    margin-top: 22px
}

.all-products-link {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 680
}

.industry-section {
    display: grid;
    grid-template-columns:1.15fr .85fr;
    background: #1b1e20;
    color: #fff;
    min-height: 730px
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.industry-copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 154px 115px
}

.industry-copy h2 {
    font-size: clamp(45px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -.06em;
    margin: 16px 0 28px
}

.industry-copy > p {
    color: rgba(255, 255, 255, .62);
    font-size: 16px
}

.industry-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px
}

.proof-section {
    padding: 140px 0;
    background: #e8e6df
}

.proof-grid {
    display: grid;
    grid-template-columns:1.4fr 1fr;
    gap: 154px
}

.proof-title h2 {
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -.06em;
    margin-top: 16px
}

.proof-list > div {
    padding: 24px 0;
    border-bottom: 1px solid var(--line)
}

.proof-list strong {
    display: block;
    font-size: 40px;
    letter-spacing: -.06em
}

.proof-list span {
    font-size: 13px;
    color: var(--ink-2)
}

.proof-action {
    width: min(var(--wide), calc(100% - 64px));
    margin: 48px auto 0
}

.brand-finale {
    height: 700px;
    background: radial-gradient(circle at 70% 20%, #30231e, #111 58%);
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center
}

.brand-finale-copy {
    max-width: 850px;
    padding: 40px
}

.vigx-display {
    font-size: clamp(100px, 18vw, 270px);
    font-weight: 900;
    line-height: .7;
    letter-spacing: .03em;
    background: linear-gradient(135deg, #fff 20%, #6f6f6f);
    -webkit-background-clip: text;
    color: transparent
}

.brand-finale h2 {
    font-size: clamp(36px, 5vw, 70px);
    letter-spacing: .18em;
    margin: 55px 0 18px
}

.brand-finale p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 34px
}

.subscribe-section {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    padding: 130px max(32px, calc((100vw - var(--max)) / 2));
    background: var(--brand-soft)
}

.subscribe-copy h2 {
    font-size: clamp(38px, 4.5vw, 66px);
    line-height: 1.05;
    letter-spacing: -.06em;
    margin: 16px 0 24px
}

.subscribe-title {
    white-space: nowrap
}

.subscribe-copy > p:last-child {
    color: var(--ink-2)
}

@media (min-width: 1021px) {
    .home-hero {
        width: 1920px;
        max-width: 100%;
        margin-inline: auto;
    }

    .page-hero.hero-with-bg,
    .page-hero.about-page-hero,
    .page-hero.news-page-hero,
    .page-hero.tech-hero,
    .page-hero.industry-page-hero {
        width: 1920px;
        max-width: 100%;
        margin-inline: auto;
    }

    .home-hero-media {
        display: block;
        width: 100%;
        max-width: none;
    }

    body.home-v2 .home-hero-copy {
        left: 268px;
        width: 610px;
    }

    body.home-v2 .home-hero-copy h1 {
        font-size: 108px;
    }

    body.home-v2 .hero-statement {
        font-size: 38px;
        margin-top: 20px;
    }

    body.home-v2 .hero-summary {
        max-width: 500px;
        font-size: 16px;
        margin: 16px 0 28px;
    }

    body.home-v2 .home-hero-actions {
        gap: 10px;
    }

    body.home-v2 .home-hero-actions .cta-primary {
        min-width: 142px;
        padding: 13px 22px;
        font-size: 13px;
    }

    body.home-v2 .hero-footnote,
    body.home-v2 .scroll-cue {
        font-size: 10px;
    }

    body.home-v2 .manifesto-section,
    body.home-v2 .intelligence-section,
    body.home-v2 .products-section,
    body.home-v2 .proof-section {
        padding: 140px 0;
    }

    body.home-v2 .pocket-stage,
    body.home-v2 .story-section {
        min-height: 760px;
    }

    body.home-v2 .pocket-content,
    body.home-v2 .story-copy,
    body.home-v2 .industry-copy {
        padding: 72px 86px;
    }

    body.home-v2 .journey-stage {
        height: 82vh;
        min-height: 650px;
    }

    body.home-v2 .journey-copy {
        left: 268px;
    }

    body.home-v2 .journey-copy h2 {
        font-size: 100px;
    }

    body.home-v2 .motion-grid {
        gap: 16px;
        margin-top: 64px;
    }

    body.home-v2 .motion-card {
        min-height: 520px;
    }

    body.home-v2 .motion-copy {
        inset: auto 28px 28px;
    }

    body.home-v2 .editorial-product {
        height: 650px;
    }

    body.home-v2 .brand-finale {
        height: 700px;
    }

    body.home-v2 .subscribe-section {
        gap: 80px;
        padding: 130px 32px;
    }

    body.home-v2 .pocket-content,
    body.home-v2 .story-copy,
    body.home-v2 .industry-copy {
        padding: 72px 86px;
    }

    body.home-v2 .journey-copy {
        left: 268px;
    }

    body.home-v2 .proof-grid {
        gap: 112px;
    }

    body.home-v2 .brand-finale-copy {
        max-width: 850px;
        padding: 40px;
    }
}

.subscribe-form {
    align-self: center
}

.subscribe-form > label:first-child {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px
}

.subscribe-row {
    display: flex;
    background: #fff;
    border-radius: 999px;
    padding: 5px;
    border: 1px solid var(--line)
}

.subscribe-row input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 13px 16px;
    outline: 0
}

.subscribe-row button {
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    padding: 12px 22px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer
}

.consent {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--ink-3);
    margin-top: 15px;
    white-space: nowrap
}

.consent input {
    flex: 0 0 auto;
    width: 14px !important;
    height: 14px;
    margin: 0
}

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

.form-status {
    font-size: 12px;
    color: var(--brand-dark);
    margin-top: 10px;
    min-height: 18px
}

/* Editorial pages */
.page-hero {
    padding: 110px 0 88px;
    min-height: 476px;
    box-sizing: border-box;
    background: var(--paper);
    border-bottom: 1px solid var(--line)
}

.about-page-hero {
    background: url("images/about/cover1.png") center / cover no-repeat;
}

.about-page-hero h1 {
    color: #fff;
}

.about-page-hero .eyebrow,
.about-page-hero p,
.about-page-hero .breadcrumb {
    color: #fff;
}

.about-page-hero + .quote-section {
    color: var(--ink);
}

.about-page-hero + .quote-section cite {
    color: var(--ink-3);
}

.quote-section.story-quote-with-bg {
    background: url("images/news/cover1.jpg") center / cover no-repeat;
}

.quote-section.story-quote-with-bg::before {
    display: block;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(8, 13, 18, .62) 0%, rgba(8, 13, 18, .4) 42%, rgba(8, 13, 18, .14) 72%, rgba(8, 13, 18, .08) 100%);
}

.quote-section.story-quote-with-bg blockquote {
    color: #fff;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .48);
}

.quote-section.story-quote-with-bg cite {
    color: rgba(255, 255, 255, .82);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.news-page-hero {
    background-image: url("images/news/news-hero-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.page-hero.dark {
    background: var(--night);
    color: #fff
}

.page-hero.industry-page-hero {
    background: url("images/scene/cover1.jpg") center / cover no-repeat;
    position: relative;
    isolation: isolate;
}

.page-hero.industry-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(10, 24, 4, .7) 0%, rgba(10, 24, 4, .48) 38%, rgba(10, 24, 4, .12) 68%, transparent 100%);
}

.page-hero.industry-page-hero > .wrap {
    position: relative;
    z-index: 1;
}

.page-hero.industry-page-hero h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.page-hero.industry-page-hero p {
    color: rgba(255, 255, 255, .9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
}

.page-hero.industry-page-hero .breadcrumb,
.page-hero.industry-page-hero .breadcrumb a {
    color: rgba(255, 255, 255, .86);
    text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
}

.page-hero.dark p {
    color: rgba(255, 255, 255, .58)
}

.page-hero.tech-hero {
    position: relative;
    isolation: isolate;
    background: url("images/tech/background1.jpg") center / cover no-repeat;
    border-bottom: none;
}

.page-hero h1 {
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 630;
    letter-spacing: -.07em;
    line-height: .95;
    max-width: 1000px;
    margin: 18px 0 28px
}

.news-hero-title {
    color: #fff;
    white-space: nowrap;
}

html[lang="zh-CN"] .news-page-hero .news-hero-title {
    font-size: clamp(40px, 3.75vw, 60px);
}

@media (min-width: 1021px) {
    .news-page-zh .news-page-hero {
        min-height: 542px;
    }
}

.vigx-language-en .news-page-hero .news-hero-title {
    font-size: clamp(42px, 4vw, 64px);
    line-height: .98;
    letter-spacing: -.06em;
    white-space: normal;
}

.vigx-language-en .page-hero.hero-with-bg h1,
.vigx-language-en .page-hero.industry-page-hero h1,
.vigx-language-en .page-hero.tech-hero h1,
.vigx-language-en .page-hero.about-page-hero h1 {
    font-size: clamp(42px, 4vw, 64px);
    line-height: .98;
    letter-spacing: -.06em;
    white-space: normal;
}

.contact-hero-nowrap {
    white-space: nowrap;
}

.about-hero-description {
    max-width: none !important;
    white-space: nowrap;
}

.consumer-series-title,
.consumer-product-nowrap {
    white-space: nowrap;
}

.page-hero p {
    max-width: 700px;
    font-size: 18px;
    color: var(--ink-2)
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--ink-3);
    margin-top: 38px
}

.breadcrumb a:hover {
    color: var(--ink)
}

.category-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 54px;
    position: sticky;
    top: 88px;
    z-index: 10
}

.series-tab {
    border: 1px solid var(--line);
    background: rgba(245, 243, 238, .88);
    backdrop-filter: blur(16px);
    padding: 10px 17px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer
}

.series-tab.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.series-block {
    scroll-margin-top: 150px
}

.series-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-2);
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    margin: 22px 0
}

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

.home-content-intro {
    padding: 92px 0 82px;
    background: #eeece7;
    border-top: 1px solid rgba(20, 22, 24, .12);
    border-bottom: 1px solid rgba(20, 22, 24, .1)
}

.home-content-intro__inner,
.home-section-heading {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 0 32px
}

.home-content-intro h2 {
    max-width: 760px;
    margin: 18px 0 18px;
    font-size: clamp(42px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -.065em
}

.home-content-intro p,
.home-section-heading p {
    color: var(--ink-2);
    font-size: 15px
}

.home-content-section {
    padding: 104px 0 112px;
    border-bottom: 1px solid rgba(20, 22, 24, .1)
}

.home-content-section--stories { background: #f7f5f0 }
.home-content-section--company { background: #e9e8e4 }
.home-content-section--products { background: #f7f5f0 }

.home-section-heading { margin-bottom: 42px }

.home-section-heading h2 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 4.5vw, 62px);
    line-height: 1;
    letter-spacing: -.06em
}

.home-section-heading .section-index { color: var(--ink-2) }

.home-content-section .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px
}

.home-stories-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 42px
}

.home-stories-more .btn {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 34px rgba(224, 64, 48, .3)
}

.home-stories-more .btn:hover {
    background: var(--brand-dark);
    color: #fff
}

.prod-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 100%;
    transition: .35s
}

.prod-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.pc-img {
    position: relative;
    height: 320px;
    background: #e8e8e5;
    overflow: hidden
}

.pc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s
}

.prod-card:hover .pc-img img {
    transform: scale(1.035)
}

.pc-tag {
    position: absolute;
    left: 16px;
    top: 16px;
    background: #fff;
    color: var(--ink);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700
}

.pc-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.pc-body h3 {
    font-size: 24px;
    letter-spacing: -.04em
}

.pc-body p {
    font-size: 13px;
    color: var(--ink-2);
    margin: 10px 0 25px;
    line-height: 1.75
}

.pc-meta {
    font-size: 11px;
    color: var(--ink-3);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line)
}

.product-banner {
    position: relative;
    height: 70vh;
    min-height: 560px;
    color: #fff;
    overflow: hidden
}

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

.product-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .04))
}

.product-banner-copy {
    position: absolute;
    z-index: 2;
    left: max(32px, calc((100vw - var(--max)) / 2));
    top: 50%;
    transform: translateY(-50%);
    max-width: 610px
}

.product-banner h1 {
    font-size: clamp(58px, 8vw, 110px);
    letter-spacing: -.07em;
    line-height: .9
}

.product-banner h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 22px 0 14px
}

.product-banner p {
    color: rgba(255, 255, 255, .68);
    max-width: 480px
}

.product-banner .pd-actions {
    margin-top: 28px
}

.subnav {
    position: sticky;
    top: 72px;
    z-index: 20;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line)
}

.subnav-inner {
    width: min(var(--max), calc(100% - 64px));
    margin: auto;
    height: 58px;
    display: flex;
    align-items: center;
    gap: 24px
}

.subnav strong {
    margin-right: auto
}

.subnav a {
    font-size: 12px;
    color: var(--ink-2)
}

.subnav a:hover {
    color: var(--ink)
}

.pd-hero {
    display: grid;
    grid-template-columns:1.15fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 72px 0
}

.pd-gallery {
    min-width: 0
}

.pd-gallery .main-img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: var(--radius);
    background: #e8e8e4
}

.pd-thumbs {
    display: flex;
    gap: 9px;
    margin-top: 10px;
    overflow: auto
}

.pd-thumbs img {
    width: 76px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    opacity: .5;
    cursor: pointer;
    border: 2px solid transparent
}

.pd-thumbs img.active {
    opacity: 1;
    border-color: var(--brand)
}

.pd-info .series {
    font-size: 11px;
    font-weight: 720;
    letter-spacing: .12em;
    color: var(--brand)
}

.pd-info h1 {
    font-size: clamp(54px, 6vw, 82px);
    line-height: .95;
    letter-spacing: -.07em;
    white-space: nowrap;
    margin: 16px 0 22px
}

.pd-info h1 br {
    display: none
}

.pd-info .slogan {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.8
}

.pd-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px
}

.sellpoints {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    margin-top: 38px;
    border-top: 1px solid var(--line)
}

.sp-item {
    padding: 18px 12px 14px 0;
    border-bottom: 1px solid var(--line)
}

.sp-num {
    font-size: 27px;
    letter-spacing: -.05em;
    font-weight: 650
}

.sp-num .u, .stat-num .u {
    font-size: .45em;
    margin-left: 3px;
    letter-spacing: 0
}

.sp-num-assist {
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -.04em;
}

.sp-label {
    font-size: 11px;
    color: var(--ink-3)
}

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

.pd-section > h2 {
    font-size: clamp(38px, 4vw, 58px);
    letter-spacing: -.055em;
    line-height: 1.05
}

.pd-lead {
    font-size: 15px;
    color: var(--ink-2);
    margin: 14px 0 40px
}

.pd-video {
    background: #090a0b;
    border-radius: var(--radius);
    overflow: hidden
}

.pd-video video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

.pd-video.landscape-video,
.pd-video.fit-height-video {
    position: relative;
    aspect-ratio: 16/9;
    background: #090a0b;
    isolation: isolate;
}

.pd-video.landscape-video video,
.pd-video.fit-height-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.pd-video.landscape-video .video-backdrop,
.pd-video.fit-height-video .video-backdrop {
    z-index: 0;
    object-fit: cover;
    filter: blur(28px);
    transform: scale(1.08);
    opacity: .8;
}

.pd-video.landscape-video .video-foreground,
.pd-video.fit-height-video .video-foreground {
    z-index: 1;
    object-fit: contain;
}

.pd-video.fit-height-video .video-foreground {
    left: 50%;
    right: auto;
    width: auto;
    max-width: 100%;
    transform: translateX(-50%);
}

body:has(.pd-video.landscape-video, .pd-video.fit-height-video) .pd-gallery .main-img {
    height: 570px;
    object-fit: contain;
}

@media (max-width: 900px) {
    body:has(.pd-video.portrait-video) .pd-gallery .main-img {
        height: 620px;
    }
}

@media (max-width: 760px) {
    body:has(.pd-video.portrait-video) .pd-gallery .main-img {
        height: 430px;
    }
}

.video-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px
}

.video-card span {
    display: block;
    font-size: 11px;
    color: var(--ink-3);
    text-align: center;
    margin-top: 8px
}

.feature-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 8vw;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--line)
}

.feature-row.rev .feature-img {
    order: 2
}

.feature-img {
    border-radius: var(--radius);
    overflow: hidden;
    background: #e8e8e5
}

.feature-img img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

@media (min-width: 1021px) {
    body:has(.tech-hero) .feature-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 12.4193548%;
    }

    body:has(.tech-hero) .feature-img {
        width: 100%;
        height: auto;
        aspect-ratio: 543 / 500;
    }

    body:has(.tech-hero) .feature-img img {
        width: 100%;
        height: 100%;
    }
}

body:has(.tech-hero) .feature-img img {
    object-fit: contain;
}

.wa1-features .feature-img {
    height: 500px;
    background: var(--paper);
}

.wa1-features .feature-img img {
    height: 100%;
    object-fit: contain;
}

.wa1-feature-long {
    width: 100%;
    overflow: hidden;
    background: var(--paper);
}

.wa1-feature-long img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.q20-features .feature-img {
    height: 500px;
    background: var(--paper);
}

.q20-features .feature-img img {
    height: 100%;
    object-fit: contain;
}

.q20-feature-image {
    width: 100%;
    background: #e8e8e5;
    overflow: hidden;
    border-radius: var(--radius)
}

.q20-feature-image img {
    display: block;
    width: 100%;
    height: auto
}

.p1-features .feature-img {
    height: 500px;
    background: var(--paper);
}

.p1-features .feature-img img {
    height: 100%;
    object-fit: contain;
}

.p1-features {
    padding-top: 0;
}

.p1-features .section-head,
.p1-features .feature-row {
    display: none;
}

.feature-long-image {
    width: 100%;
    overflow: hidden;
    background: #e8e8e4;
    border-radius: var(--radius);
}

.feature-long-image img {
    display: block;
    width: 100%;
    height: auto;
}

.y20-features .feature-img {
    height: 500px;
    background: var(--paper);
}

.y20-features .feature-img img {
    height: 100%;
    object-fit: contain;
}

.y20-feature-long {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.y20-feature-long img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.feature-row h3 {
    font-size: clamp(28px, 3vw, 43px);
    line-height: 1.08;
    letter-spacing: -.05em
}

.feature-row h3 .num, .tech-list .num {
    display: block;
    font-size: 10px;
    color: var(--brand);
    letter-spacing: .14em;
    margin-bottom: 16px
}

.feature-row p {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.85;
    margin-top: 18px
}

.feature-row ul {
    margin-top: 20px;
    padding-left: 18px;
    color: var(--ink-2);
    font-size: 13px
}

.feature-row li {
    margin: 9px 0
}

.feature-row > div:only-child {
    grid-column: 1/-1
}

.pi-legacy-features {
    display: none;
}

.benefit-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 48px
}

.benefit-card {
    background: var(--surface);
    padding: 42px
}

.benefit-card span {
    font-size: 10px;
    color: var(--brand);
    letter-spacing: .12em
}

.benefit-card h3 {
    font-size: 25px;
    letter-spacing: -.04em;
    margin: 15px 0
}

.benefit-card p {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.75
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden
}

.spec-table tr {
    border-bottom: 1px solid var(--line)
}

.spec-table th, .spec-table td {
    text-align: left;
    padding: 18px 24px;
    font-size: 13px
}

.spec-table th {
    width: 26%;
    color: var(--ink-3);
    font-weight: 550
}

.spec-table td {
    font-weight: 600
}

.spec-table .spec-shared td[colspan="2"] {
    text-align: center;
}

.product-spec-table {
    table-layout: fixed;
}

.product-spec-table th,
.product-spec-table td {
    border: 1px solid var(--line);
    text-align: center;
    vertical-align: middle;
}

.product-spec-table thead th {
    text-align: center;
}

.pi-feature-copy .section-head h2 {
    white-space: nowrap;
}

@media (max-width: 680px) {
    .pi-feature-copy .section-head h2 {
        font-size: clamp(28px, 8vw, 58px);
        white-space: nowrap !important;
    }
}

.compare-wrap {
    overflow: auto
}

.compare-table {
    width: 100%;
    min-width: 740px;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden
}

.compare-table th, .compare-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 13px
}

.compare-table th {
    font-size: 11px;
    color: var(--ink-3)
}

.compare-table td:not(:first-child) {
    font-weight: 650
}

.compare-table .recommended {
    color: var(--brand)
}

.products-comparison-wrap {
    width: 100%;
    margin: 34px auto 36px;
    overflow-x: auto;
    text-align: left;
    -webkit-overflow-scrolling: touch;
}

.products-comparison-table {
    min-width: 760px;
    margin: 0;
    background: var(--surface);
}

.products-comparison-table th,
.products-comparison-table td {
    text-align: center;
    vertical-align: middle;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.products-comparison-table thead th {
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
}

.products-comparison-table tbody th {
    color: var(--ink);
    font-weight: 700;
}

.products-comparison-table tbody td {
    font-weight: 500;
    text-align: left;
    padding-inline: 28px;
}

@media (max-width: 700px) {
    .products-comparison-wrap {
        margin: 28px -4px 30px;
        width: calc(100% + 8px);
    }

    .products-comparison-table th,
    .products-comparison-table td {
        padding: 16px 14px;
        font-size: 12px;
    }

    .products-comparison-table tbody td {
        padding-inline: 18px;
    }

    .products-comparison-table thead th {
        font-size: 14px;
    }
}

.faq {
    max-width: 900px
}

.faq-item {
    border-top: 1px solid var(--line)
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line)
}

.faq-q {
    width: 100%;
    border: 0;
    background: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    padding: 23px 0;
    cursor: pointer;
    font-weight: 650
}

.fq-ico {
    font-size: 20px;
    transition: .25s
}

.faq-item.open .fq-ico {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s
}

.faq-a-inner {
    padding: 0 40px 24px 0;
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.8
}

.buy-bar {
    padding: 70px 32px;
    border-radius: var(--radius);
    text-align: center;
    background: var(--night);
    color: #fff
}

.buy-bar h3 {
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.05em
}

.buy-bar p {
    color: rgba(255, 255, 255, .58);
    margin: 12px 0 28px
}

.buy-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap
}

.buy-btn {
    background: #fff;
    color: var(--ink);
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700
}

.buy-btn.disabled {
    opacity: .45;
    cursor: not-allowed
}

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

.case-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: .35s
}

.case-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.case-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .6s
}

.case-card:hover img {
    transform: scale(1.035)
}

.cc-body {
    padding: 26px
}

#waist .case-card .cc-body,
#p1 .case-card .cc-body {
    background: var(--paper);
}

.cc-body h3 {
    font-size: 24px;
    letter-spacing: -.04em
}

.cc-body p {
    font-size: 13px;
    color: var(--ink-2);
    margin-top: 10px;
    line-height: 1.75
}

.stats-inner {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.stat {
    padding: 36px 22px;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border: 0
}

.stat-num {
    font-size: 42px;
    letter-spacing: -.06em;
    font-weight: 650
}

.stat-label {
    font-size: 11px;
    color: var(--ink-3);
    margin-top: 6px
}

.about-proof-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 104px 0 110px;
    background: url("images/about/11-years-1.png") center / cover no-repeat;
    color: var(--ink)
}

.about-proof-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, .58)
}

.about-proof-section > .wrap {
    position: relative;
    z-index: 1
}

.about-proof-heading {
    text-align: center
}

.about-proof-heading .eyebrow {
    color: var(--ink)
}

.about-proof-heading h2 {
    margin-top: 18px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: -.06em;
    line-height: 1.05
}

.about-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 64px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.about-proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 112px;
    padding: 24px 28px;
    border-right: 1px solid var(--line)
}

.about-proof-item:last-child {
    border-right: 0
}

.about-proof-mark {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brand-2);
    box-shadow: 0 0 0 6px rgba(255, 122, 55, .12)
}

.about-proof-item p {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5
}

.tech-wrap {
    display: grid;
    grid-template-columns:1fr 1fr;
    /*gap: 8vw;*/
    align-items: center
}

.tech-media {
    border-radius: var(--radius);
    overflow: hidden
}

.tech-media img {
    width: 100%;
    height: 620px;
    object-fit: cover
}

.about-brand-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    background: #fff
}

.about-company-section {
    padding-top: 0;
    padding-bottom: 0;
    background: #fff
}

.about-company-section .about-brand-media {
    min-height: 440px
}

.about-company-section .tech-wrap {
    border-bottom: 1px solid var(--line)
}

.about-brand-lockup {
    width: min(88%, 560px);
    text-align: center
}

.about-brand-lockup img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain
}

.about-brand-lockup p {
    margin: 16px 0 0;
    color: var(--ink);
    font-size: clamp(18px, 1.6vw, 26px);
    letter-spacing: .04em;
    line-height: 1.25
}

.about-company-copy {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 0 12px
}

.about-company-copy p {
    margin: 0;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.75
}

@media (max-width: 1020px) {
    .about-company-section .about-brand-media {
        min-height: 360px
    }
}

.tech-copy h2 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.03;
    letter-spacing: -.06em;
    margin: 14px 0 22px
}

.tech-copy .lead {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.8
}

.tech-list {
    list-style: none;
    margin-top: 28px
}

.tech-list li {
    display: grid;
    grid-template-columns:40px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid var(--line)
}

.tech-list b, .tech-list span {
    display: block
}

.tech-list span:not(.num) {
    font-size: 12px;
    color: var(--ink-2);
    margin-top: 4px
}

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

.patent-card {
    background: #fff;
    padding: 25px;
    border: 1px solid var(--brand);
    border-radius: var(--radius-sm);
    box-shadow: 0 0 0 1px rgba(238, 77, 45, .08);
    transition: box-shadow .2s ease, transform .2s ease
}

.patent-card:hover {
    box-shadow: 0 6px 18px rgba(238, 77, 45, .16);
    transform: translateY(-2px)
}

.tech-patent-section .patent-card {
    background: var(--paper)
}

.tech-patent-section .patent-card h3 {
    color: var(--ink)
}

.tech-patent-section .patent-card p {
    color: var(--ink-2)
}

.tech-patent-stats {
    margin-top: 42px;
}

.tech-patent-section .tech-patent-stats .stat-num {
    color: #000;
}

.tech-patent-section .tech-patent-stats .stat-num .stat-value,
.tech-patent-section .tech-patent-stats .stat-num .stat-plus {
    color: var(--brand);
}

.tech-patent-section .tech-patent-stats .stat-label {
    color: #000;
}

.tech-patent-section .tech-patent-stats .stat {
    border-color: var(--line);
}

.patent-card time {
    font-size: 10px;
    color: var(--brand);
    font-weight: 750
}

.patent-card h3 {
    font-size: 16px;
    margin: 12px 0
}

.patent-card p {
    font-size: 12px;
    color: var(--ink-3)
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    gap: 14px;
    justify-content: center
}

.solution-card {
    position: relative;
    width: 300px;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    color: #fff
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s
}

.solution-card:hover img {
    transform: scale(1.035)
}

.solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent 65%)
}

.solution-copy {
    position: absolute;
    z-index: 2;
    inset: auto 20px 18px
}

.solution-copy span {
    font-size: 10px;
    letter-spacing: .12em
}

.solution-copy h2 {
    font-size: 26px;
    letter-spacing: -.05em;
    margin: 10px 0
}

.solution-copy p {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    max-width: 490px
}

.solution-copy b {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px
}

.process {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    margin-top: 18px;
    border-top: 1px solid var(--line)
}

.tech-lab-life-section::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(245, 243, 238, .92) 0%, rgba(245, 243, 238, .78) 44%, rgba(245, 243, 238, .34) 78%, rgba(245, 243, 238, .64) 100%), linear-gradient(0deg, rgba(245, 243, 238, .16), transparent 58%);
    content: "";
}

.tech-lab-life-section .process {
    background: transparent;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.tech-lab-life-section {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-2);
    background-position: center;
    background-size: cover;
}

@media (min-width: 1021px) {
    .tech-patent-section,
    .tech-lab-life-section {
        width: 1920px;
        max-width: 100%;
        margin-inline: auto;
        box-sizing: border-box;
    }
}

.tech-lab-life-section > .wrap {
    position: relative;
    z-index: 1;
}

.process-step {
    padding: 30px 28px;
    border-right: 1px solid var(--line)
}

.process-step:first-child {
    padding-left: 0;
}

.process-step:last-child {
    padding-right: 0;
    border-right: 0;
}

.process-step span {
    font-size: 10px;
    color: var(--brand)
}

.process-step h3 {
    font-size: 19px;
    margin: 15px 0
}

.process-step p {
    font-size: 12px;
    color: var(--ink-2)
}

.news-feature {
    display: grid;
    grid-template-columns: minmax(0, 56.5%) minmax(0, 43.5%);
    grid-template-rows: minmax(0, 1fr);
    height: calc(100svh - var(--nav-height));
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    background: var(--night);
    color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px
}

.news-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.news-feature-copy {
    padding: clamp(24px, 2.2vw, 36px);
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.news-feature-copy h2 {
    font-size: clamp(28px, 2vw, 36px);
    line-height: .98;
    letter-spacing: -.055em;
    margin: 12px 0
}

.news-feature-copy h2 span {
    white-space: normal;
    overflow-wrap: anywhere;
}

.camino-quote-nowrap {
    white-space: nowrap;
}

body:has(.story-quote-with-bg) .article-body blockquote {
    font-size: 20px;
}

.news-feature-copy p {
    color: rgba(255, 255, 255, .58)
}

.news-feature-copy .text-link {
    margin-top: 28px;
    align-self: flex-start
}

@media (min-width: 1021px) {
    .news-feature {
        width: 1240px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1240 / 845;
        grid-template-columns: 56.4516129% 43.5483871%;
        margin-inline: auto;
    }

    .news-feature img {
        object-fit: contain;
    }
}

.news-story-section {
    padding: 0 0 24px;
}

.news-story-section:last-child {
    padding-bottom: 0;
}

.news-story-feature {
    margin-bottom: 0;
}

.news-filters {
    display: flex;
    gap: 8px;
    margin: 45px 0 28px
}

.filter-btn {
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 11px;
    cursor: pointer
}

.filter-btn.active {
    background: var(--ink);
    color: #fff
}

.news-card[hidden] {
    display: none
}

.news-card time {
    font-size: 10px;
    color: var(--ink-3)
}

.article-hero {
    padding: 90px 0 55px
}

.article-hero h1 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -.065em;
    max-width: 1000px;
    margin: 18px 0 30px
}

body.locale-en:has(.article-hero) .article-hero h1 {
    max-width: 1320px;
}

.article-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--ink-3)
}

.article-cover {
    width: min(var(--wide), calc(100% - 64px));
    height: 60vh;
    min-height: 0;
    object-fit: contain;
    background: var(--paper);
    border-radius: var(--radius);
    margin: 0 auto
}

.article-body {
    max-width: 760px;
    margin: 90px auto;
    font-size: 17px;
    line-height: 2
}

.article-body p {
    margin: 24px 0
}

.article-body h2 {
    font-size: 35px;
    line-height: 1.25;
    letter-spacing: -.04em;
    margin: 65px 0 20px
}

.article-body blockquote {
    font-size: 31px;
    line-height: 1.45;
    letter-spacing: -.04em;
    border-left: 3px solid var(--brand);
    padding-left: 28px;
    margin: 55px 0
}

.article-body .data-callout {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 50px 0
}

.data-callout div {
    background: #fff;
    padding: 22px
}

.data-callout strong {
    display: block;
    font-size: 30px
}

.data-callout span {
    font-size: 10px;
    color: var(--ink-3)
}

.article-note {
    font-size: 12px !important;
    color: var(--ink-3);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px
}

.quote-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 140px 0;
    background: var(--paper);
    color: #fff
}

.quote-section::before {
    display: none
}

.quote-section .wrap {
    position: relative;
    z-index: 1
}

.quote-section blockquote {
    font-size: clamp(38px, 6vw, 86px);
    line-height: 1.05;
    letter-spacing: -.06em;
    max-width: 1150px
}

.quote-section cite {
    display: block;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    margin-top: 35px;
    font-style: normal
}

.timeline {
    max-width: none
}

.timeline-item {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
    padding: 56px 0;
    border-top: 1px solid var(--line)
}

.history-carousel {
    position: relative;
    padding: 0 clamp(48px, 6vw, 88px)
}

.history-carousel .timeline-item {
    display: none
}

.history-carousel .timeline-item.is-active {
    display: grid
}

.history-control {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background .2s ease, color .2s ease
}

.history-control:hover {
    background: var(--ink);
    color: #fff
}

.history-prev {
    left: 0
}

.history-next {
    right: 0
}

.history-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    padding: 0 0 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #d8d8d8 transparent
}

.history-thumbs::-webkit-scrollbar {
    height: 6px
}

.history-thumbs::-webkit-scrollbar-track {
    background: transparent
}

.history-thumbs::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #d8d8d8
}

.history-thumb {
    flex: 0 0 78px;
    padding: 5px;
    border: 1px solid var(--brand);
    border-radius: 10px;
    background: var(--surface);
    color: var(--ink-2);
    cursor: pointer;
    opacity: .62;
    box-shadow: 0 0 0 1px rgba(238, 77, 45, .08);
    transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease
}

.history-thumb:hover,
.history-thumb.is-active {
    border-color: var(--brand);
    box-shadow: 0 5px 16px rgba(238, 77, 45, .18);
    opacity: 1
}

.history-thumb.is-active {
    transform: translateY(-3px)
}

.history-thumb img {
    width: 100%;
    height: 48px;
    object-fit: contain;
    background: var(--paper)
}

.history-thumb span {
    display: block;
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.2;
    white-space: nowrap
}

.about-history-section .timeline-carousel .timeline-slide:not(:first-child),
.about-history-section .timeline-carousel .timeline-control,
.about-history-section .timeline-carousel .timeline-dots {
    display: none
}

.timeline-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--surface)
}

.timeline-slides,
.timeline-slide {
    position: absolute;
    inset: 0
}

.timeline-slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .35s ease
}

.timeline-slide.is-active {
    opacity: 1
}

.timeline-control {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(17, 18, 20, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    color: var(--ink);
    font-size: 27px;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s ease, background .2s ease
}

.timeline-carousel:hover .timeline-control,
.timeline-carousel:focus-within .timeline-control {
    opacity: 1
}

.timeline-control:hover {
    background: #fff
}

.timeline-prev {
    left: 16px
}

.timeline-next {
    right: 16px
}

.timeline-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 16px;
    display: flex;
    gap: 7px;
    transform: translateX(-50%)
}

.timeline-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 18, 20, .28);
    cursor: pointer
}

.timeline-dots button.is-active {
    background: var(--brand)
}

.timeline-copy {
    min-width: 0
}

.timeline-item time {
    display: block;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 15px;
    font-weight: 650;
    white-space: nowrap
}

.timeline-en {
    display: none
}

body.vigx-language-en .about-history-section .timeline:not(.timeline-en) {
    display: none
}

body.vigx-language-en .timeline-en {
    display: block
}

.timeline-item h3 {
    font-size: clamp(24px, 2.2vw, 38px);
    line-height: 1.15;
    letter-spacing: -.04em
}

.timeline-item p {
    max-width: 480px;
    margin-top: 18px;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.8
}

.about-history-section .section-head h2 {
    white-space: nowrap;
    text-align: center
}

.about-history-section {
    background: var(--surface);
    padding-top: 0
}

.about-history-section .section-head {
    min-height: 160px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.contact-grid {
    display: grid;
    grid-template-columns:.8fr 1.2fr;
    gap: 8vw
}

.contact-aside h2 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -.055em
}

.contact-list {
    margin-top: 40px
}

.contact-list div {
    padding: 18px 0;
    border-top: 1px solid var(--line)
}

.contact-list span {
    display: block;
    font-size: 10px;
    color: var(--ink-3)
}

.contact-list b {
    font-size: 14px
}

.form-card {
    background: #fff;
    padding: 42px;
    border-radius: var(--radius)
}

.ask-form {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.ask-form .full {
    grid-column: 1/-1
}

.ask-form label {
    font-size: 11px;
    font-weight: 650
}

.ask-form input, .ask-form textarea, .ask-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 15px;
    background: #fafafa;
    outline: 0;
    margin-top: 7px
}

.ask-form input:focus, .ask-form textarea:focus, .ask-form select:focus {
    border-color: var(--brand)
}

.ask-form textarea {
    min-height: 150px;
    resize: vertical
}

.ask-form > .full:last-child {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

.ask-form > .full:last-child > .btn {
    align-self: center
}

.qa-note {
    font-size: 10px;
    color: var(--ink-3)
}

.choice-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 9px
}

.choice-chip {
    position: relative
}

.choice-chip input {
    position: absolute;
    opacity: 0
}

.choice-chip span {
    display: block;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 11px;
    cursor: pointer
}

.choice-chip input:checked + span {
    background: var(--ink);
    color: #fff
}

.legal {
    max-width: 780px;
    margin: 80px auto
}

.legal-layout {
    width: min(var(--wide), calc(100% - 64px));
    margin: 0 auto;
    padding: 112px 0 100px;
    display: grid;
    grid-template-columns: 250px minmax(0, 780px);
    gap: clamp(40px, 7vw, 110px);
    align-items: start
}

.legal-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 34px)
}

.legal-sidebar h1 {
    margin: 18px 0 30px;
    font-size: clamp(30px, 2.8vw, 42px);
    letter-spacing: -.07em;
    white-space: nowrap
}

.legal-sidebar nav {
    margin-top: 8px;
    border-left: 1px solid var(--line)
}

.legal-sidebar a {
    display: block;
    padding: 10px 16px;
    color: var(--ink-2);
    font-size: 12px;
    line-height: 1.5;
    border-left: 2px solid transparent;
    transition: color .2s, background .2s, border-color .2s
}

.legal-sidebar a:hover, .legal-sidebar a:focus, .legal-sidebar a.active {
    color: var(--ink);
    border-left-color: var(--brand);
    background: var(--surface-2)
}

.legal-content {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0
}

.legal-content section, .legal-content h2 {
    scroll-margin-top: calc(var(--nav-height) + 28px)
}

.legal-intro {
    padding-bottom: 16px
}

.legal-lead {
    font-size: 18px !important;
    color: var(--ink) !important;
    line-height: 1.8 !important
}

.legal-content strong {
    color: var(--ink);
    font-weight: 600
}

.legal-content a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px
}

.legal h1 {
    font-size: 55px;
    letter-spacing: -.06em
}

.legal h2 {
    font-size: 24px;
    margin: 45px 0 10px
}

.legal p, .legal li {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.9
}

.legal ul {
    padding-left: 20px
}

.legal .updated {
    font-size: 11px;
    color: var(--ink-3);
    margin: 15px 0 50px
}

.demo-notice {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    background: rgba(17, 18, 20, .92);
    color: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 10px;
    box-shadow: var(--shadow);
    max-width: 260px
}

.demo-notice button {
    border: 0;
    background: none;
    color: #fff;
    margin-left: 10px;
    cursor: pointer
}

/* Footer */
.footer {
    background: #151719;
    color: #fff;
    margin-top: 0
}

.footer-inner {
    width: min(var(--wide), calc(100% - 64px));
    margin: auto;
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns:2.2fr repeat(3, 1fr);
    gap: 50px
}

.footer-wordmark {
    display: block;
    width: 220px;
    height: 24px
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .48);
    max-width: 290px;
    margin: 18px 0
}

.footer-social {
    width: 220px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
}

.footer-social img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-social a:hover {
    opacity: .78;
}

.contact-social {
    display: grid;
    grid-template-columns: repeat(5, 48px);
    justify-content: center;
    gap: 10px;
    margin: 18px auto 0;
}

.contact-social a {
    display: block;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 6px;
    transition: opacity .2s, transform .2s;
}

.contact-social img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-social a:hover {
    opacity: .78;
    transform: translateY(-2px);
}

.vigx-language-en .footer-brand p {
    max-width: none;
    white-space: nowrap;
}

.company-signature {
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .06em
}

.footer-col h4 {
    font-size: 11px;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 17px
}

.footer-col a {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    padding: 6px 0
}

.footer-col a:hover {
    color: #fff
}

.footer-bottom {
    width: min(var(--wide), calc(100% - 64px));
    margin: auto;
    border-top: 1px solid var(--line-light);
    padding: 20px 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    font-size: 10px;
    color: rgba(255, 255, 255, .32)
}

.footer-icp {
    color: rgba(255, 255, 255, .48)
}

.footer-icp:hover {
    color: #fff
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s, transform .8s
}

.reveal.in-view {
    opacity: 1;
    transform: none
}

@media (max-width: 1020px) {
    .nav-links {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .nav-action {
        margin-left: auto
    }

    .nav-links.open {
        position: absolute;
        display: flex;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--paper);
        color: var(--ink);
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 32px 28px;
        gap: 0;
        border-bottom: 1px solid var(--line)
    }

    .nav-links.open a {
        padding: 13px 0;
        width: 100%;
        font-size: 15px
    }

    .nav-links.open .nav-menu {
        width: 100%;
        height: auto;
        display: block
    }

    .nav-links.open .nav-dropdown {
        position: static;
        width: 100%;
        min-width: 0;
        padding: 0 0 8px 16px;
        display: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto
    }

    .nav-links.open .nav-menu:focus-within .nav-dropdown {
        display: flex
    }

    .nav-links.open .nav-dropdown a {
        padding: 8px 0;
        font-size: 14px
    }

    .nav-links a.active::after {
        display: none
    }

    .lang-v2 {
        display: none
    }

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

    .motion-card-wide {
        grid-column: 1/-1
    }

    .product-editorial-grid, .story-section, .pocket-stage, .industry-section, .news-feature, .contact-grid {
        grid-template-columns:1fr
    }

    .news-feature {
        height: auto;
        min-height: 610px
    }

    .pocket-media, .story-visual, .industry-image {
        min-height: 580px
    }

    .product-pi {
        height: 620px
    }

    .product-h {
        height: 620px
    }

    .proof-grid, .tech-wrap {
        grid-template-columns:1fr
    }

    .tech-media img {
        height: 540px
    }

    .about-brand-lockup img {
        height: auto
    }

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

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

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

    .news-feature img {
        height: 500px
    }

    .pd-hero {
        grid-template-columns:1fr
    }

    .pd-gallery .main-img {
        height: 620px
    }

    .feature-row {
        gap: 50px
    }

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

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

    .footer-col:last-child {
        display: none
    }
}

@media (max-width: 680px) {
    .home-hero-actions {
        display: grid;
        grid-template-columns:1fr 1fr
    }

    .home-hero-actions .cta-primary {
        padding-left: 12px;
        padding-right: 12px
    }

    .legal-layout {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 92px 0 70px
    }

    .legal-sidebar {
        position: static
    }

    .legal-sidebar h1 {
        margin-bottom: 22px
    }

    .legal-sidebar nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
        border-left: 0;
        border-bottom: 1px solid var(--line)
    }

    .legal-sidebar a {
        flex: 0 0 auto;
        border-left: 0;
        border-bottom: 2px solid transparent;
        white-space: nowrap
    }

    .legal-sidebar a.active, .legal-sidebar a:hover, .legal-sidebar a:focus {
        border-bottom-color: var(--brand)
    }

    .legal-lead {
        font-size: 16px !important
    }

    .wrap, .wide-wrap, .footer-inner, .footer-bottom, .article-cover {
        width: calc(100% - 40px)
    }

    .nav-inner {
        padding: 0 20px
    }

    .nav-action {
        display: none
    }

    .vigx-wordmark {
        width: 154px;
        height: 17px
    }

    .about-history-section .section-head h2 {
        font-size: 24px;
        letter-spacing: -.06em
    }

    .section {
        padding: 78px 0
    }

    .home-hero {
        height: auto;
        min-height: 0
    }

    .home-hero-media {
        object-position: center
    }

    .home-hero-shade {
        background: linear-gradient(0deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .08) 75%)
    }

    .home-hero-copy {
        left: 13.958vw;
        top: 50%;
        bottom: auto;
        transform: translateY(-44%);
        width: 31.771vw
    }

    .home-hero-copy h1 {
        font-size: 5.625vw
    }

    .hero-summary {
        font-size: .833vw
    }

    .hero-footnote, .scroll-cue {
        display: none
    }

    .manifesto-section {
        padding: 95px 0
    }

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

    .manifesto-grid h2 {
        font-size: 48px
    }

    .manifesto-grid p:last-child {
        font-size: 16px
    }

    .pocket-stage {
        min-height: 0
    }

    .pocket-media {
        min-height: 480px
    }

    .pocket-content {
        padding: 70px 20px
    }

    .pocket-content h2 {
        font-size: 44px
    }

    .journey-stage {
        min-height: 690px
    }

    .journey-stage > img {
        object-position: 68%
    }

    .journey-copy {
        left: 20px;
        right: 20px
    }

    .journey-copy h2 {
        font-size: 49px
    }

    .intelligence-section {
        padding: 95px 0
    }

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

    .motion-card-wide {
        grid-column: auto
    }

    .motion-card {
        min-height: 510px
    }

    .story-visual, .industry-image {
        min-height: 500px
    }

    .story-copy, .industry-copy {
        padding: 75px 20px
    }

    .story-copy blockquote {
        font-size: 29px
    }

    .products-section, .proof-section {
        padding: 90px 0
    }

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

    .editorial-product {
        height: 540px
    }

    .industry-copy h2 {
        font-size: 48px
    }

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

    .proof-list {
        margin-top: 35px
    }

    .brand-finale {
        height: 560px
    }

    .brand-finale h2 {
        letter-spacing: .08em;
        margin-top: 40px
    }

    .subscribe-section {
        grid-template-columns:1fr;
        padding: 85px 20px;
        gap: 45px
    }

    .subscribe-row {
        border-radius: 16px;
        flex-direction: column;
        background: transparent;
        border: 0;
        padding: 0
    }

    .subscribe-row input {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px
    }

    .subscribe-row button {
        margin-top: 8px;
        border-radius: 12px
    }

    .page-hero {
        padding: 75px 0 62px
    }

    .page-hero h1 {
        font-size: 50px
    }

    .page-hero p {
        font-size: 15px
    }

    .category-bar {
        top: 80px;
        flex-wrap: nowrap;
        overflow: auto;
        padding-bottom: 5px
    }

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

    .pc-img {
        height: 350px
    }

    .product-banner {
        height: 78svh;
        min-height: 650px
    }

    .product-banner-copy {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 70px;
        transform: none
    }

    .product-banner h1 {
        font-size: 62px
    }

    .subnav-inner {
        width: calc(100% - 40px);
        overflow: auto
    }

    .subnav a {
        white-space: nowrap
    }

    .subnav strong {
        display: none
    }

    .pd-hero {
        padding: 45px 0;
        gap: 35px
    }

    .pd-gallery .main-img {
        height: 430px
    }

    .pd-info h1 {
        font-size: 52px
    }

    .pd-section {
        padding: 72px 0
    }

    .video-grid, .feature-row, .benefit-grid, .case-grid, .solution-grid {
        grid-template-columns:1fr
    }

    .feature-row {
        padding: 55px 0
    }

    .feature-row.rev .feature-img {
        order: 0
    }

    .feature-img img {
        height: 380px
    }

    .wa1-features .feature-img {
        height: 380px;
    }

    .q20-features .feature-img {
        height: 380px;
    }

    .p1-features .feature-img {
        height: 380px;
    }

    .y20-features .feature-img {
        height: 380px;
    }

    .benefit-card {
        padding: 30px
    }

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

    .tech-patent-stats .stat {
        min-width: 0;
    }

    .tech-patent-stats .stat-label {
        overflow-wrap: anywhere;
    }

    .stat:nth-child(2) {
        border-right: 0
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .tech-media img {
        height: 430px
    }

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

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

    .process-step {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .news-feature img {
        height: 390px
    }

    .news-feature-copy {
        padding: 50px 25px
    }

    .article-cover {
        height: 60vh;
        min-height: 0
    }

    .article-body {
        width: calc(100% - 40px);
        margin: 60px auto;
        font-size: 16px
    }

    .article-body blockquote {
        font-size: 18px
    }

    body:has(.story-quote-with-bg) .article-body blockquote.camino-quote-nowrap {
        white-space: normal;
    }

    .article-body .data-callout {
        grid-template-columns:1fr
    }

    .timeline-item {
        grid-template-columns:1fr;
        gap: 9px
    }

    .form-card {
        padding: 26px
    }

    .ask-form {
        grid-template-columns:1fr
    }

    .ask-form .full {
        grid-column: auto
    }

    .footer-inner {
        grid-template-columns:1fr 1fr;
        padding: 60px 0 40px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-col:last-child {
        display: block
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 5px
    }

    .demo-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
        text-align: center
    }
}

/* Conversion clarity and production forms */
.home-hero-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap
}

.home-hero-actions .cta-primary {
    min-width: 142px
}

.home-hero-actions .hero-secondary {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px)
}

.home-hero-actions .hero-secondary:hover {
    background: #fff;
    color: var(--ink)
}

.editorial-copy b {
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 760
}

.editorial-product:first-child .editorial-copy b {
    background: var(--brand);
    color: #fff
}

.series-block .pc-body::after {
    content: "查看产品  →";
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin-top: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 760;
    transition: .25s
}

.series-block#consumer .prod-card:first-child .pc-body::after {
    background: var(--brand)
}

.series-block#consumer .prod-card:nth-of-type(2) .pc-body::after {
    background: var(--brand);
    color: #fff
}

.series-block .prod-card:hover .pc-body::after {
    transform: translateX(3px)
}

.pd-actions .purchase-link {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 34px rgba(224, 64, 48, .3)
}

.pd-actions .purchase-link:hover {
    background: var(--brand-dark, #c93629);
    color: #fff;
    transform: translateY(-2px)
}

.product-buy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 12px;
    font-weight: 760;
    cursor: pointer;
    transition: .25s
}

.product-buy-link:hover {
    background: var(--brand-dark, #c93629);
    transform: translateX(3px)
}

.consent a {
    text-decoration: underline;
    text-underline-offset: 2px
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important
}

.form-status.is-success {
    color: #247346
}

.form-status.is-error {
    color: #b72c1d
}

button[disabled] {
    cursor: wait;
    opacity: .62
}

/* Support */
.help-hero {
    min-height: min(620px, calc(100svh - var(--nav-height)));
    background: linear-gradient(120deg, #f5f3ee 0%, #ece9e2 100%);
    display: flex;
    align-items: center
}

.help-hero-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center
}

.help-hero-content h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1;
    margin-top: 14px
}

.help-hero-content .help-search-head {
    margin: 18px 0 0
}

.help-hero-content .help-search-head h2 {
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 500;
    letter-spacing: -.04em;
    margin: 0
}

.help-hero-content em {
    color: var(--brand);
    font-style: normal
}

.help-hero-content .help-search {
    width: min(620px, 100%);
    margin-top: 30px
}

.help-hero .help-search-head {
    margin-bottom: 28px
}

.help-search-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px
}

.help-search-head h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -.055em;
    margin-top: 12px
}

.help-resources-section .section-head h2,
.help-stores-section .help-search-head h2 {
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
    font-weight: 670;
}

.help-store-description {
    margin-top: 20px;
    color: var(--ink-2);
    max-width: 660px;
    font-size: 17px;
    line-height: 1.8;
}

@media (min-width: 761px) {
    body.vigx-language-en .help-stores-section .help-search-head > div:first-child {
        min-width: 0;
    }

    body.vigx-language-en .help-stores-section .help-search-head h2,
    body.vigx-language-en .help-stores-section .help-store-description {
        max-width: none;
        white-space: nowrap;
    }
}

.store-hot-cities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.store-hot-cities > span {
    margin-right: 4px;
    color: var(--ink-3);
    font-size: 12px;
}

.store-hot-cities a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink-2);
    font-size: 12px;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.store-hot-cities a:hover,
.store-hot-cities a:focus-visible {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.help-search-hint {
    color: var(--ink-3);
    font-size: 12px
}

.help-search {
    display: flex;
    gap: 10px;
    max-width: 760px
}

.help-search input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 16px 20px;
    outline: 0;
    font-size: 14px
}

.help-search input:focus {
    border-color: var(--brand)
}

.help-search .btn {
    border: 0;
    padding-left: 25px;
    padding-right: 25px
}

.help-search-status, .help-empty {
    color: var(--ink-3);
    font-size: 12px;
    margin-top: 12px
}

.help-search-match-count {
    display: block;
    margin: 0 auto 8px;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 12px;
    cursor: pointer
}

.help-search-match-count:hover {
    color: var(--brand-dark);
    text-decoration: underline;
    text-underline-offset: 3px
}

.help-search-match-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px
}

.help-search-match {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--brand-dark);
    font: inherit;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer
}

.help-search-match:hover {
    color: var(--brand)
}

.help-faq .faq-item.is-search-target {
    background: var(--brand-soft);
    box-shadow: 0 0 0 2px var(--brand);
    scroll-margin-top: calc(var(--nav-height) + 24px)
}

.help-faq-section {
    padding-top: 100px;
    padding-bottom: 110px
}

.help-faq {
    max-width: none;
    margin-top: 52px
}

.help-faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 38px;
    color: var(--ink-2);
    font-size: 14px
}

.help-faq .faq-q {
    padding: 24px 0;
    font-size: 16px;
    text-align: left
}

.help-faq .faq-a-inner {
    max-width: 800px;
    padding-bottom: 26px;
    font-size: 14px
}

.help-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.help-resource-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 28px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    transition: transform .25s, box-shadow .25s
}

.help-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.help-resource-card > span {
    color: var(--brand);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .14em
}

.help-resource-card h3 {
    margin-top: 50px;
    font-size: 24px;
    letter-spacing: -.04em
}

.help-resource-card p {
    margin-top: 8px;
    color: var(--ink-2);
    font-size: 13px
}

.help-resource-card b {
    margin-top: auto;
    color: var(--brand);
    font-size: 12px
}

.help-stores-section {
    padding-top: 96px;
    padding-bottom: 110px
}

.help-store-tabs {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 44px 0 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px
}

.help-store-tabs button {
    border: 0;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 11px
}

.help-store-tabs span {
    color: var(--ink-3);
    font-size: 12px
}

.help-store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.help-store-grid article {
    min-height: 160px;
    padding: 24px;
    border-radius: var(--radius-sm);
    background: var(--surface-2)
}

.help-store-grid h3 {
    font-size: 17px
}

.help-store-grid p, .help-store-grid span {
    display: block;
    color: var(--ink-2);
    font-size: 12px;
    margin-top: 25px
}

.help-store-grid span {
    color: var(--ink-3);
    margin-top: 6px
}

.help-contact-section {
    padding-top: 110px;
    padding-bottom: 120px;
    scroll-margin-top: var(--nav-height)
}

.help-contact-section .contact-grid {
    grid-template-columns: 1.2fr .8fr;
    align-items: start
}

.store-list-hero,.store-detail-hero { min-height: 420px; display: flex; align-items: end; }
.store-list-hero p,.store-detail-hero p { margin-top: 20px; color: var(--ink-2); font-size: 16px; }
.store-list-section { background: var(--surface); }
.store-filters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.store-filters label { display: grid; gap: 9px; color: var(--ink-2); font-size: 12px; }
.store-filters select {
    width: 100%;
    padding: 14px 44px 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    appearance: none;
    background-color: var(--surface-2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='%23111214' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6'/%3E%3C/svg%3E");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 12px 8px;
    color: var(--ink);
    font: inherit;
}

.locale-en .series-block .pc-body::after {
    content: "View Product  →"
}
.store-result-count { color: var(--ink-3); font-size: 13px; margin-bottom: 18px; }
.store-list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.store-card { padding: 28px; background: var(--surface-2); border-radius: var(--radius-sm); min-width: 0; }
.store-card-top { display: flex; justify-content: space-between; align-items: center; }
.store-index { color: var(--ink-3); font-size: 12px; }
.store-card h2 { margin: 24px 0 26px; font-size: clamp(21px, 2vw, 30px); letter-spacing: -.04em; }
.store-card dl,.store-detail-card dl { margin: 0 0 28px; }
.store-card dl div,.store-detail-card dl div { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.store-card dt,.store-detail-card dt { color: var(--ink-3); font-size: 12px; }
.store-card dd,.store-detail-card dd { margin: 0; white-space: pre-line; color: var(--ink-2); font-size: 13px; line-height: 1.7; }
.store-detail-section { background: var(--surface); }
.store-detail-card { max-width: 860px; padding: clamp(28px, 6vw, 72px); background: var(--surface-2); border-radius: var(--radius-sm); }
.store-detail-card h2 { margin: 20px 0 34px; font-size: clamp(30px, 4vw, 54px); letter-spacing: -.05em; }
.store-detail-card dl { margin-bottom: 34px; }
.store-empty { padding: 60px 0; text-align: center; color: var(--ink-3); }
@media (max-width: 760px) { .store-filters,.store-list-grid { grid-template-columns: 1fr; } .store-list-hero,.store-detail-hero { min-height: 360px; } }

.industry-deployment-section {
    position: relative;
    isolation: isolate;
    min-height: 621px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: #fff;
    background: url("images/scene/scene-work-site.jpg") center center / cover no-repeat;
}

.industry-cases-section {
    scroll-margin-top: 72px;
}

.industry-detail-section,
#waist,
#upper,
#p1,
#research {
    scroll-margin-top: 72px;
}

.research-cta-section {
    background: var(--night);
    color: #fff;
}

.research-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 260px;
    text-align: center;
}

.research-cta-content p {
    margin: 0;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 650;
    white-space: nowrap;
}

.research-cta-content .btn {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

.research-cta-content .btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

#research .section-head {
    max-width: none;
}

#research .section-head h2 {
    white-space: nowrap;
}

.vigx-language-en #research .section-head h2 {
    font-size: clamp(32px, 3.2vw, 46px);
    line-height: .98;
    letter-spacing: -.055em;
}

#waist .section-head {
    max-width: none;
}

#waist .section-head h2 {
    white-space: nowrap;
}

.research-copy-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 56px;
    margin-top: 22px;
}

.research-copy-row p {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
}

.research-copy-row .btn {
    flex: 0 0 auto;
    margin: 0;
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.research-copy-row .btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.industry-stats-section {
    position: relative;
    isolation: isolate;
    background: url("images/scene/scene-patent.jpg") center center / cover no-repeat;
}

.industry-stats-section .stat-num,
.industry-stats-section .stat-label {
    color: #000;
}

.industry-partnership-section {
    background: var(--surface);
}

.industry-partnership-section .buy-bar {
    background: var(--paper);
}

.industry-case-grid .case-card {
    scroll-margin-top: 92px;
}

.industry-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-case-grid .case-card {
    display: flex;
    flex-direction: column;
}

.industry-case-grid .case-card img {
    height: 270px;
}

.industry-case-grid .cc-body {
    flex: 1;
}

.industry-case-grid .case-card h3 {
    line-height: 1.2;
}

.industry-deployment-section::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(35, 38, 40, .62);
    content: "";
}

.industry-deployment-section .section-head,
.industry-deployment-section .process {
    position: relative;
    z-index: 1;
}

.industry-deployment-section .section-head p,
.industry-deployment-section .process-step p {
    color: rgba(255, 255, 255, .78);
}

.industry-deployment-section .process {
    border-color: rgba(255, 255, 255, .32);
}

.industry-deployment-section .process-step {
    border-color: rgba(255, 255, 255, .24);
}

.industry-deployment-section .process-step > span {
    color: #ff5b48;
}

@media (max-width: 1320px) {
    .solution-grid {
        grid-template-columns: repeat(2, 300px);
    }
}

@media (max-width: 760px) {
    .research-copy-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .solution-grid {
        grid-template-columns: 300px;
    }

    .industry-deployment-section {
        min-height: 630px;
    }
}

.help-contact-heading {
    margin-bottom: 48px
}

.help-contact-heading h2 {
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -.055em;
    margin-top: 14px
}

.help-contact-copy {
    padding-left: 18px
}

.help-contact-channels {
    display: grid;
    gap: 14px;
    margin-top: 28px
}

.help-contact-channel {
    padding: 30px 24px;
    background: var(--surface-2);
    text-align: center
}

.help-contact-channel h3 {
    font-size: 23px;
    font-weight: 500
}

.help-contact-channel p {
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.65;
    margin-top: 12px
}

.help-contact-channel strong {
    display: block;
    color: var(--brand);
    font-size: 20px;
    font-weight: 500;
    margin-top: 12px
}

@media (max-width: 760px) {
    .help-hero {
        min-height: 560px
    }

    .help-hero-content .help-search-head h2 {
        font-size: 20px
    }

    .help-search-head {
        display: block
    }

    .help-search-hint {
        display: block;
        margin-top: 14px
    }

    .help-search {
        display: grid;
        max-width: none
    }

    .help-search .btn {
        width: 100%
    }

    .help-resource-grid, .help-store-grid {
        grid-template-columns: 1fr
    }

    .help-resource-card {
        min-height: 210px
    }

    .help-resource-card h3 {
        margin-top: 28px
    }

    .help-store-tabs {
        align-items: flex-start;
        flex-direction: column
    }

    .help-contact-section .contact-grid {
        grid-template-columns: 1fr
    }

    .help-contact-copy {
        padding-left: 0;
        margin-top: 32px
    }
}

@media (max-width: 760px) {
    .home-hero-actions {
        align-items: stretch
    }

    .home-hero-actions .cta-primary {
        min-width: 0
    }

    :root {
        --nav-height: 64px
    }

    .home-hero-actions {
        align-items: stretch
    }

    .home-hero-actions .cta-primary {
        min-width: 0
    }

    .series-block .pc-body::after {
        width: 100%
    }
}

@media (max-width: 680px) {
    .home-hero-actions {
        display: grid;
        grid-template-columns:1fr 1fr
    }

    .home-hero-actions .cta-primary {
        padding-left: 12px;
        padding-right: 12px
    }

    .demo-notice {
        bottom: 84px
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .scroll-cue span::after {
        animation: none
    }
}

/* ===== 消费产品系列：上下排布的长条卡片 ===== */
.series-block#consumer .prod-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto 1fr;
    gap: 40px
}

.series-block#consumer .prod-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 0
}

.series-block#consumer .pc-img {
    flex: 0 0 40%;
    height: auto;
    min-height: 280px
}

.series-block#consumer .pc-body {
    justify-content: center;
    padding: 32px 36px
}

.series-block#consumer .pc-meta {
    margin-top: 0
}

.series-block#consumer .pc-body::after {
    display: none
}

.product-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px
}

.product-view-link,
.product-card-actions .product-buy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0;
    padding: 10px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 12px;
    font-weight: 760;
    line-height: 1;
    cursor: pointer;
    transition: .25s
}

.product-card-actions .product-buy-link:hover,
.product-view-link:hover {
    background: var(--brand-dark, #c93629);
    transform: translateX(3px)
}

@media (max-width: 680px) {
    .series-block#consumer .prod-grid {
        grid-template-rows: auto;
        grid-auto-rows: auto;
        gap: 18px
    }

    .series-block#consumer .prod-card {
        flex-direction: column
    }

    .series-block#consumer .pc-img {
        flex: none;
        width: 100%;
        height: 350px;
        min-height: 0
    }

    .series-block#consumer .pc-body {
        justify-content: flex-start;
        padding: 25px
    }

    .series-block#consumer .pc-meta {
        margin-top: auto
    }
}

/* 消费产品页 hero 背景底图（由 quote-section 迁移而来） */
.page-hero.hero-with-bg {
    background: url("images/product/cover1.jpg") center / cover no-repeat;
    color: #fff;
    border-bottom: none;
    position: relative;
    isolation: isolate
}

.page-hero.hero-with-bg .eyebrow,
.page-hero.hero-with-bg p,
.page-hero.hero-with-bg .breadcrumb,
.page-hero.hero-with-bg .breadcrumb a {
    color: rgba(255, 255, 255, .82)
}

/* 消费产品页：中间分组标题与上方留出间距 */
.section-head--mid {
    margin: 0
}

/* 消费产品页：选购建议模块上方的细分隔线 */
.cta-rule {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 0 0 48px
}

/* 消费产品页：收紧选购模块与上方产品的间距 */
.section--consumer {
    padding-bottom: 64px
}

.section--cta {
    padding-top: 0
}

/* 消费产品页：选购建议模块改为浅色（去黑底），文字转深 */
.buy-bar {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line)
}

.buy-bar p {
    color: var(--ink-2)
}

.about-cta-section {
    background: url("images/about/cover1.jpg") center / cover no-repeat;
}

.about-contact-section .buy-bar .btn-light {
    background: var(--brand);
    color: #fff;
}

.about-contact-section .buy-bar .btn-light:hover {
    background: var(--brand-dark);
}

.page-hero.hero-with-bg h1,
.news-page-hero h1,
.about-page-hero h1 {
    color: #fff;
}

.page-hero.hero-with-bg p,
.news-page-hero p,
.about-page-hero p {
    color: rgba(255, 255, 255, .58);
}

.page-hero.hero-with-bg .breadcrumb,
.news-page-hero .breadcrumb,
.about-page-hero .breadcrumb {
    color: var(--ink-3);
}

.about-page-hero .eyebrow {
    color: var(--brand);
}

.page-hero.hero-with-bg .eyebrow {
    color: var(--brand);
}

.page-hero.hero-with-bg p {
    color: rgba(255, 255, 255, .58);
}

.page-hero.hero-with-bg .breadcrumb,
.page-hero.hero-with-bg .breadcrumb a {
    color: var(--ink-3);
}

body:has(.article-hero) .section-alt {
    background: var(--paper)
}

body:has(.article-hero) .section-alt .buy-bar {
    background: var(--paper)
}

body:has(.article-hero) .buy-bar {
    background: var(--paper);
}

body:has(.article-hero) .buy-bar .btn-light {
    background: var(--brand);
    color: #fff;
}

body:has(.article-hero) .buy-bar .btn-light:hover {
    background: var(--brand-dark);
}

.nav-inner {
    max-width: 75vw;
    padding-left: 1.667vw;
    padding-right: 1.667vw;
    gap: 1.458vw;
}

.vigx-wordmark {
    width: 9.896vw;
    height: 50%;
    aspect-ratio: 9954 / 1764;
}

.nav-links > a,
.nav-links > .nav-menu,
.nav-menu {
    width: 5.625vw;
}

.nav-links a {
    font-size: .677vw;
}

.nav-dropdown {
    padding: .521vw .208vw .417vw;
    gap: .104vw;
}

.nav-links .nav-dropdown a {
    padding: .469vw .104vw;
    font-size: .677vw;
}

.lang-v2 {
    gap: .365vw;
    font-size: .573vw;
}

.nav-action {
    font-size: .625vw;
    padding: .469vw .781vw;
}

.footer-inner,
.footer-bottom {
    width: 75vw;
}

.footer-inner {
    padding: 4.167vw 0 3.125vw;
    gap: 2.604vw;
}

.footer-wordmark {
    width: 11.458vw;
    height: 1.25vw;
}

.footer-brand p {
    font-size: .677vw;
    max-width: 15.104vw;
    margin: .938vw 0;
}

.footer-social {
    width: 11.458vw;
    gap: .417vw;
    margin-top: 1.042vw;
}

.footer-col h4 {
    font-size: .573vw;
    margin-bottom: .885vw;
}

.footer-col a {
    font-size: .625vw;
    padding: .313vw 0;
}

.footer-bottom {
    padding: 1.042vw 0 1.563vw;
    gap: 1.302vw;
    font-size: .521vw;
}

.brand-lockup img {
    width: auto !important;
    height: 50%;
    max-width: none;
    object-fit: contain;
}

.footer-brand-lockup img {
    width: 11.458vw !important;
}

@media (max-width: 1020px) {
    .nav-inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
        gap: 16px;
    }

    .vigx-wordmark {
        width: auto;
        height: 50%;
        aspect-ratio: 9954 / 1764;
    }

    .brand-lockup img {
        width: auto !important;
        height: 50%;
        max-width: none;
        object-fit: contain;
    }

    .brand-lockup {
        display: flex;
        width: auto;
        height: 50%;
        aspect-ratio: 6787 / 1953;
        align-items: center;
    }

    .footer-brand-lockup img {
        width: 220px !important;
        height: 24px;
        object-fit: fill;
    }

    .footer-brand-lockup {
        display: block;
        width: 220px;
        height: 24px;
        overflow: hidden;
    }

    .footer-wordmark {
        width: 220px;
        height: 24px;
    }

    .footer-inner,
    .footer-bottom {
        width: calc(100% - 40px);
    }

    .footer-brand p {
        font-size: 13px;
        max-width: 290px;
        margin: 18px 0;
    }

    .footer-social {
        width: 220px;
        gap: 8px;
        margin-top: 20px;
    }

    .footer-col h4 {
        font-size: 11px;
        margin-bottom: 17px;
    }

    .footer-col a {
        font-size: 12px;
        padding: 6px 0;
    }

    .footer-bottom {
        padding: 20px 0 30px;
        gap: 25px;
        font-size: 10px;
    }
}

@media (min-width: 1021px) {
    .nav-inner {
        position: relative;
        max-width: 75vw;
        padding-left: 1.667vw;
        padding-right: 1.667vw;
    }

    .nav-inner > .brand-lockup,
    .nav-inner > .vigx-wordmark {
        position: absolute;
        left: 1.667vw;
        top: 50%;
        width: auto;
        height: 50%;
        transform: translateY(-50%);
    }

    .nav-inner > .brand-lockup {
        aspect-ratio: 6787 / 1953;
    }

    .nav-inner > .vigx-wordmark {
        aspect-ratio: 9954 / 1764;
    }

    .nav-inner > .brand-lockup {
        display: flex;
        align-items: center;
    }

    .nav-inner > .brand-lockup img {
        width: auto !important;
        height: 100%;
        max-width: none;
        object-fit: contain;
    }

    .nav-inner > .nav-links {
        position: absolute;
        left: 28.125%;
        top: 0;
        height: 100%;
        margin: 0;
    }

    .nav-inner > .lang-v2 {
        position: absolute;
        right: 10vw;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-inner > .nav-action {
        position: absolute;
        right: 1.667vw;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-inner > .nav-action:hover {
        transform: translateY(-50%) !important;
    }

    .footer-brand-lockup {
        display: block;
        width: 11.458vw;
        height: 1.25vw;
        overflow: hidden;
    }

    .footer-brand-lockup img {
        width: 11.458vw !important;
        height: 1.25vw;
        object-fit: fill;
    }
}

.home-content-intro {
    padding-top: 8.519vh;
    padding-bottom: 7.593vh;
}

.home-content-intro__inner,
.home-section-heading {
    width: 64.583vw;
    max-width: none;
    padding-left: 1.667vw;
    padding-right: 1.667vw;
}

.home-content-intro h2 {
    max-width: 39.583vw;
    margin-top: .938vw;
    margin-bottom: .938vw;
    font-size: 4.271vw;
}

.home-content-intro p,
.home-section-heading p {
    font-size: .781vw;
}

.home-content-section {
    padding-top: 9.63vh;
    padding-bottom: 10.37vh;
}

.home-section-heading {
    margin-bottom: 2.188vw;
}

.home-section-heading h2 {
    margin-top: .729vw;
    margin-bottom: .521vw;
    font-size: 3.229vw;
}

.home-content-section .prod-grid {
    gap: 1.25vw;
}

.home-content-section > .wrap {
    width: 64.583vw;
    max-width: none;
}

.home-content-section .prod-card {
    border-radius: 1.25vw;
}

.home-content-section .pc-img {
    height: 14.063vw;
}

.home-content-section .pc-body {
    padding: 1.302vw;
}

.home-content-section .pc-body h3 {
    font-size: 1.25vw;
    line-height: 1.2;
}

.home-content-section .pc-body p {
    font-size: .677vw;
    margin-top: .521vw;
    margin-bottom: 1.302vw;
    line-height: 1.75;
}

.home-content-section .pc-meta {
    font-size: .573vw;
    padding-top: .833vw;
}

.subscribe-section {
    gap: 4.167vw;
    padding: 12.037vh 17.708vw;
}

.subscribe-copy h2 {
    font-size: 3.438vw;
    margin-top: .833vw;
    margin-bottom: 1.25vw;
}

.subscribe-copy > p:last-child {
    font-size: .781vw;
}

.subscribe-form > label:first-child {
    font-size: .625vw;
    margin-bottom: .521vw;
}

.subscribe-row {
    padding: .26vw;
}

.subscribe-row input {
    padding: .677vw .833vw;
    font-size: .677vw;
}

.subscribe-row button {
    padding: .625vw 1.146vw;
    font-size: .677vw;
}

.consent {
    gap: .313vw;
    font-size: .573vw;
    margin-top: .781vw;
}

.consent input {
    width: .729vw !important;
    height: .729vw;
}

@media (max-width: 680px) {
    .home-content-intro__inner,
    .home-section-heading {
        width: calc(100% - 40px);
        padding-left: 0;
        padding-right: 0;
    }

    .home-content-intro {
        padding-top: 8.519vh;
        padding-bottom: 7.593vh;
    }

    .home-content-intro h2 {
        max-width: 100%;
        font-size: clamp(42px, 11vw, 58px);
    }

    .home-content-section {
        padding-top: 78px;
        padding-bottom: 90px;
    }

    .home-content-section .prod-grid {
        grid-template-columns: 1fr;
    }

    .home-content-section > .wrap {
        width: 100%;
    }

    .home-content-section .pc-img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .subscribe-section {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 85px 20px;
    }

    .home-section-heading {
        margin-bottom: 42px;
    }

    .home-section-heading h2 {
        margin-top: 14px;
        margin-bottom: 10px;
        font-size: clamp(34px, 9vw, 52px);
    }

    .home-content-section .pc-body {
        padding: 25px;
    }

    .home-content-section .pc-body h3 {
        font-size: 24px;
    }

    .home-content-section .pc-body p {
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 25px;
        line-height: 1.75;
    }

    .home-content-section .pc-meta {
        font-size: 11px;
        padding-top: 16px;
    }
}

@media (max-width: 680px) {
    .nav-inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
        gap: 16px;
    }

    .vigx-wordmark {
        width: 154px;
        height: 17px;
    }

    .footer-inner,
    .footer-bottom {
        width: calc(100% - 40px);
    }

    .footer-wordmark {
        width: 220px;
        height: 24px;
    }

    .brand-lockup img {
        width: 154px !important;
    }

    .footer-brand-lockup img {
        width: 220px !important;
    }

    .nav-links a,
    .nav-links .nav-dropdown a {
        font-size: 13px;
    }

    .nav-action {
        font-size: 12px;
        padding: 9px 15px;
    }

    .footer-brand p {
        font-size: 13px;
        max-width: 290px;
        margin: 18px 0;
    }

    .footer-col h4 {
        font-size: 11px;
        margin-bottom: 17px;
    }

    .footer-col a {
        font-size: 12px;
        padding: 6px 0;
    }

    .footer-bottom {
        padding: 20px 0 30px;
        gap: 25px;
        font-size: 10px;
    }
}

.footer-wordmark {
    width: auto;
    height: clamp(24px, 3.5vh, 32px);
    aspect-ratio: 9954 / 1764;
}

.footer .vigx-wordmark {
    width: auto;
    height: clamp(24px, 3.5vh, 32px);
    aspect-ratio: 9954 / 1764;
}

body.vigx-language-en .footer .vigx-wordmark {
    aspect-ratio: 6787 / 1953;
}

.footer-brand-lockup {
    width: auto;
    height: clamp(24px, 3.5vh, 32px);
    aspect-ratio: 6787 / 1953;
    display: flex;
    align-items: center;
}

.footer-brand-lockup img {
    width: auto !important;
    height: 100%;
    max-width: none;
    object-fit: contain;
}

body.locale-en .footer-brand-lockup {
    width: calc(var(--nav-height) * 1.7375);
    height: calc(var(--nav-height) / 2);
    min-height: 0;
    aspect-ratio: 6787 / 1953;
    overflow: visible;
    flex: 0 0 auto;
}

body.locale-en .footer-brand-lockup img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    object-fit: fill;
}

.footer .vigx-wordmark {
    width: calc(var(--nav-height) * 1.7375);
    height: calc(var(--nav-height) / 2);
    aspect-ratio: 6787 / 1953;
    background-image: url("images/logo-en-black.png") !important;
    background-size: 100% 100%;
    background-position: left center;
    background-repeat: no-repeat;
}

body.vigx-language-en .footer .vigx-wordmark {
    width: calc(var(--nav-height) * 1.7375);
    height: calc(var(--nav-height) / 2);
    aspect-ratio: 6787 / 1953;
    background-image: url("images/logo-en-black.png") !important;
}

.footer .vigx-wordmark {
    display: block;
    position: relative;
    width: calc(var(--nav-height) * 2.821995);
    height: calc(var(--nav-height) / 2);
    aspect-ratio: 9954 / 1764;
    background: url("images/logo-shallow.png") center / 100% 100% no-repeat !important;
    font-size: 0;
    line-height: 0;
}

.footer .vigx-wordmark::before {
    display: none;
}

.footer .vigx-wordmark img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
}

.footer .vigx-wordmark:has(> img)::before {
    display: none;
}

body.vigx-language-en .footer .vigx-wordmark {
    width: calc(var(--nav-height) * 2.821995);
    height: calc(var(--nav-height) / 2);
    aspect-ratio: 9954 / 1764;
    background-image: url("images/logo-en-black.png") !important;
}

.footer .vigx-wordmark,
.footer .footer-brand-lockup {
    display: block !important;
    width: 220px !important;
    height: 32px !important;
    min-height: 32px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
}

.footer .vigx-wordmark {
    background-image: url("images/logo-shallow.png") !important;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer .vigx-wordmark img,
.footer .footer-brand-lockup img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.vigx-language-en .footer .vigx-wordmark,
body.locale-en .footer .footer-brand-lockup {
    background-image: url("images/logo-en-black.png") !important;
}
.vigx-cdn-pending {
    color: transparent !important;
    background-color: #eee8da !important;
    background-image: linear-gradient(100deg, #eee8da 20%, #f7f3e9 40%, #eee8da 60%) !important;
    background-size: 200% 100% !important;
    animation: vigx-cdn-loading 1.35s ease-in-out infinite;
}

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

:root {}

@media (max-width: 760px) {
    body.mobile-nav-revised .mobile-quickbar {
        display: none !important;
    }

    body.mobile-nav-revised .nav-inner {
        justify-content: flex-start;
    }

    body.mobile-nav-revised .nav-inner .lang-v2 {
        display: flex !important;
        margin-left: auto;
    }

    body.mobile-nav-revised .nav-inner .nav-toggle {
        margin-left: 0;
    }

    body.mobile-nav-revised .nav-inner .lang-v2 {
        gap: 8px;
        font-size: 14px;
        line-height: 1;
    }

    body.mobile-nav-revised .nav-inner .lang-v2 a,
    body.mobile-nav-revised .nav-inner .lang-v2 b {
        display: inline-flex;
        align-items: center;
        min-width: 20px;
        min-height: 24px;
        justify-content: center;
    }

    body.mobile-nav-revised .nav-inner .brand-lockup img {
        width: auto !important;
        height: 27px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 680px) {
    body:has(#subscribe) .subscribe-section {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 68px 20px 76px;
        align-items: stretch;
    }

    body:has(#subscribe) .subscribe-copy h2 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.08;
        margin: 10px 0 12px;
        white-space: normal;
    }

    body:has(#subscribe) .subscribe-copy > p:last-child {
        font-size: 14px;
        line-height: 1.7;
    }

    body:has(#subscribe) .subscribe-form > label:first-child {
        font-size: 11px;
        margin-bottom: 8px;
    }

    body:has(#subscribe) .subscribe-row {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    body:has(#subscribe) .subscribe-row input,
    body:has(#subscribe) .subscribe-row button {
        width: 100%;
        min-height: 48px;
        box-sizing: border-box;
        font-size: 15px;
        border-radius: 14px;
    }

    body:has(#subscribe) .subscribe-row input {
        padding: 12px 16px;
        border: 1px solid var(--line);
        background: #fff;
    }

    body:has(#subscribe) .subscribe-row button {
        margin-top: 2px;
        padding: 13px 16px;
        background: var(--brand);
        color: #fff;
        font-weight: 720;
    }

    body:has(#subscribe) .subscribe-row button:hover {
        background: var(--brand-dark);
        color: #fff;
    }

    body:has(#subscribe) .subscribe-form .consent {
        gap: 7px;
        margin-top: 12px;
        font-size: 12.5px;
        line-height: 1.5;
    }

    body:has(#subscribe) .subscribe-form .consent input {
        width: 16px !important;
        height: 16px;
        flex: 0 0 auto;
    }
}

@media (min-width: 1021px) {
    .home-content-intro,
    .home-content-section,
    .subscribe-section {
        width: 1920px;
        max-width: 100%;
        margin-inline: auto;
        box-sizing: border-box;
    }

    .home-content-intro {
        padding-top: 92px;
        padding-bottom: 82px;
    }

    .home-content-intro__inner,
    .home-section-heading {
        width: 1240px;
        max-width: none;
        padding-left: 32px;
        padding-right: 32px;
        box-sizing: border-box;
    }

    .home-content-intro h2 {
        max-width: 760px;
        margin-top: 18px;
        margin-bottom: 18px;
        font-size: 82px;
    }

    .home-content-intro p,
    .home-section-heading p {
        font-size: 15px;
    }

    .home-content-section {
        padding-top: 104px;
        padding-bottom: 112px;
    }

    .home-section-heading {
        margin-bottom: 42px;
    }

    .home-section-heading h2 {
        margin-top: 14px;
        margin-bottom: 10px;
        font-size: 62px;
    }

    .home-content-section > .wrap {
        width: 1240px;
        max-width: none;
    }

    .home-content-section .prod-grid {
        gap: 24px;
    }

    .home-content-section .prod-card {
        border-radius: 24px;
    }

    .home-content-section .pc-img {
        height: 270px;
    }

    .home-content-section .pc-body {
        padding: 25px;
    }

    .home-content-section .pc-body h3 {
        font-size: 24px;
    }

    .home-content-section .pc-body p {
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .home-content-section .pc-meta {
        font-size: 11px;
        padding-top: 16px;
    }

    .subscribe-section {
        gap: 80px;
        padding: 130px 340px;
    }

    .subscribe-copy h2 {
        font-size: 66px;
        margin-top: 16px;
        margin-bottom: 24px;
    }

    .subscribe-copy > p:last-child {
        font-size: 15px;
    }

    .subscribe-form > label:first-child {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .subscribe-row {
        padding: 5px;
    }

    .subscribe-row input {
        padding: 13px 16px;
        font-size: 13px;
    }

    .subscribe-row button {
        padding: 12px 22px;
        font-size: 13px;
    }

    .consent {
        gap: 6px;
        font-size: 11px;
        margin-top: 15px;
    }

    .consent input {
        width: 14px !important;
        height: 14px;
    }
}

@media (max-width: 760px) {
    body.mobile-nav-revised .nav-inner {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        padding: 0 20px;
        gap: 16px;
    }

    body.mobile-nav-revised .nav-inner > .vigx-wordmark,
    body.mobile-nav-revised .nav-inner > .brand-lockup {
        flex: 0 0 auto;
        width: auto;
        height: 27px;
        min-height: 27px;
        aspect-ratio: auto;
        align-items: center;
    }

    body.mobile-nav-revised .nav-inner > .brand-lockup img {
        display: block;
        width: auto !important;
        height: 27px !important;
        max-width: 154px;
        object-fit: contain !important;
    }

    body.mobile-nav-revised .nav-inner > .vigx-wordmark {
        width: 154px;
        background-size: contain;
    }

    body.mobile-nav-revised .nav-inner > .lang-v2 {
        display: flex !important;
        flex: 0 0 auto;
        margin-left: auto;
        gap: 8px;
        font-size: 14px;
        line-height: 1;
    }

    body.mobile-nav-revised .nav-inner > .lang-v2 a,
    body.mobile-nav-revised .nav-inner > .lang-v2 b {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 20px;
        min-height: 27px;
    }

    body.mobile-nav-revised .nav-inner > .nav-toggle {
        display: block;
        flex: 0 0 32px;
        margin-left: 0;
    }

    body.mobile-nav-revised .footer-inner {
        width: calc(100% - 40px);
        grid-template-columns: 1fr 1fr;
        padding: 60px 0 40px;
        gap: 28px 24px;
    }

    body.mobile-nav-revised .footer-brand {
        grid-column: 1 / -1;
    }

    body.mobile-nav-revised .footer .vigx-wordmark,
    body.mobile-nav-revised .footer .footer-brand-lockup {
        width: 220px;
        height: 27px;
        min-height: 27px;
        aspect-ratio: auto;
    }

    body.mobile-nav-revised .footer .vigx-wordmark img,
    body.mobile-nav-revised .footer .footer-brand-lockup img {
        width: auto !important;
        height: 27px !important;
        max-width: 220px;
        object-fit: contain !important;
    }

    body.mobile-nav-revised .footer-bottom {
        display: block;
        width: calc(100% - 40px);
        padding: 20px 0 30px;
        font-size: 10px;
    }

    body.mobile-nav-revised .footer-bottom span,
    body.mobile-nav-revised .footer-bottom a {
        display: block;
        margin-bottom: 5px;
    }
}

@media (max-width: 760px) {
    body.mobile-nav-revised {
        overflow-x: hidden;
    }

    body.mobile-nav-revised main,
    body.mobile-nav-revised section,
    body.mobile-nav-revised .wrap,
    body.mobile-nav-revised .wide-wrap,
    body.mobile-nav-revised .subnav-inner,
    body.mobile-nav-revised .article-cover,
    body.mobile-nav-revised .article-body,
    body.mobile-nav-revised .content-wrap {
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    body.mobile-nav-revised img,
    body.mobile-nav-revised video,
    body.mobile-nav-revised iframe {
        max-width: 100%;
    }

    body.mobile-nav-revised .page-hero h1,
    body.mobile-nav-revised main h1,
    body.mobile-nav-revised main h2,
    body.mobile-nav-revised main h3,
    body.mobile-nav-revised main p,
    body.mobile-nav-revised main blockquote,
    body.mobile-nav-revised .page-hero p,
    body.mobile-nav-revised .section-head h2,
    body.mobile-nav-revised .section-head p,
    body.mobile-nav-revised .consumer-series-title,
    body.mobile-nav-revised .consumer-product-nowrap,
    body.mobile-nav-revised .contact-hero-nowrap,
    body.mobile-nav-revised .about-hero-description {
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    body.mobile-nav-revised .about-history-section .section-head h2,
    body.mobile-nav-revised .tech-patent-section .section-head h2,
    body.mobile-nav-revised .tech-patent-section .section-head p {
        white-space: normal;
    }

    body.mobile-nav-revised .prod-grid,
    body.mobile-nav-revised .prod-card,
    body.mobile-nav-revised .pc-img,
    body.mobile-nav-revised .pc-body,
    body.mobile-nav-revised .series-block,
    body.mobile-nav-revised .section-head {
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    body.mobile-nav-revised .series-block#consumer .prod-grid {
        width: 100%;
    }

    body.mobile-nav-revised .series-block#consumer .pc-img {
        height: min(350px, 82vw);
    }

    body.mobile-nav-revised .pc-img {
        height: min(350px, 82vw);
    }

    body.mobile-nav-revised .pc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body.mobile-nav-revised .product-banner {
        min-height: min(650px, 145vw);
    }

    body.mobile-nav-revised .pd-gallery .main-img {
        height: min(430px, 98vw);
    }

    body.mobile-nav-revised .pd-info h1 {
        font-size: clamp(36px, 12vw, 52px);
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.mobile-nav-revised .feature-img img,
    body.mobile-nav-revised .wa1-features .feature-img,
    body.mobile-nav-revised .q20-features .feature-img,
    body.mobile-nav-revised .p1-features .feature-img,
    body.mobile-nav-revised .y20-features .feature-img {
        height: min(380px, 86vw);
    }

    body.mobile-nav-revised .tech-media img,
    body.mobile-nav-revised .news-feature img {
        height: min(430px, 92vw);
    }

    body.mobile-nav-revised .store-list-hero,
    body.mobile-nav-revised .store-detail-hero {
        min-height: clamp(260px, 78vw, 360px);
    }

    body.mobile-nav-revised .page-hero.hero-with-bg,
    body.mobile-nav-revised .page-hero.industry-page-hero,
    body.mobile-nav-revised .page-hero.tech-hero,
    body.mobile-nav-revised .page-hero.about-page-hero {
        overflow: hidden;
        background-position: 65% center !important;
    }

    body.mobile-nav-revised .page-hero.news-page-hero {
        background-position: 52% center !important;
    }

    body.mobile-nav-revised .subnav-inner {
        width: calc(100% - 40px);
        overflow-x: auto;
    }

    body.mobile-nav-revised .history-thumbs {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    body.mobile-nav-revised .about-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.mobile-nav-revised .about-proof-item {
        min-width: 0;
        padding: clamp(14px, 4vw, 24px) clamp(10px, 3vw, 20px);
    }

    body.mobile-nav-revised .about-proof-item p {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    body.mobile-nav-revised .contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(28px, 8vw, 50px);
    }

    body.mobile-nav-revised .form-card {
        width: 100%;
        padding: clamp(18px, 6vw, 26px);
    }

    body.mobile-nav-revised .ask-form {
        grid-template-columns: minmax(0, 1fr);
    }

    body.mobile-nav-revised .ask-form input,
    body.mobile-nav-revised .ask-form textarea,
    body.mobile-nav-revised .ask-form select {
        box-sizing: border-box;
        max-width: 100%;
    }

    body.mobile-nav-revised .subscribe-section,
    body.mobile-nav-revised .contact-grid,
    body.mobile-nav-revised .ask-form,
    body.mobile-nav-revised .form-card,
    body.mobile-nav-revised .buy-bar {
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.footer-brand-lockup {
    width: auto !important;
    height: 32px !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
}

.footer-brand-lockup img {
    display: block !important;
    width: auto !important;
    height: 32px !important;
    max-width: 220px !important;
    object-fit: contain !important;
}

@media (max-width: 760px) {
    .footer-brand-lockup {
        height: 27px !important;
    }

    .footer-brand-lockup img {
        height: 27px !important;
        max-width: 220px !important;
    }
}

.footer .footer-brand-lockup {
    width: max-content !important;
    max-width: 100% !important;
}

.footer .footer-brand-lockup img,
body.locale-en .footer .footer-brand-lockup img {
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
}

.pd-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.pd-note p {
    margin: 3px 0;
}

.page-hero.hero-with-bg > .wrap > p {
    color: #000;
}

.page-hero.hero-with-bg,
.page-hero.tech-hero,
.page-hero.news-page-hero,
.page-hero.about-page-hero {
    position: relative;
    isolation: isolate;
}

.page-hero.hero-with-bg::before,
.page-hero.tech-hero::before,
.page-hero.news-page-hero::before,
.page-hero.about-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(10, 14, 18, .64) 0%, rgba(10, 14, 18, .4) 38%, rgba(10, 14, 18, .1) 70%, transparent 100%);
}

.page-hero.hero-with-bg > .wrap,
.page-hero.tech-hero > .wrap,
.page-hero.news-page-hero > .wrap,
.page-hero.about-page-hero > .wrap {
    position: relative;
    z-index: 1;
}

.page-hero.hero-with-bg h1,
.page-hero.tech-hero h1,
.page-hero.news-page-hero h1,
.page-hero.about-page-hero h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.page-hero.industry-page-hero::before,
.page-hero.hero-with-bg::before,
.page-hero.tech-hero::before,
.page-hero.news-page-hero::before,
.page-hero.about-page-hero::before {
    z-index: 0;
}

.page-hero.industry-page-hero p,
.page-hero.hero-with-bg > .wrap > p,
.page-hero.tech-hero p,
.page-hero.news-page-hero p,
.page-hero.about-page-hero p {
    color: rgba(255, 255, 255, .9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

.page-hero.industry-page-hero .breadcrumb,
.page-hero.industry-page-hero .breadcrumb a,
.page-hero.hero-with-bg .breadcrumb,
.page-hero.hero-with-bg .breadcrumb a,
.page-hero.tech-hero .breadcrumb,
.page-hero.tech-hero .breadcrumb a,
.page-hero.news-page-hero .breadcrumb,
.page-hero.news-page-hero .breadcrumb a,
.page-hero.about-page-hero .breadcrumb,
.page-hero.about-page-hero .breadcrumb a {
    color: rgba(255, 255, 255, .86);
    text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
}

.buy-bar .product-buy-link {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.buy-bar .product-buy-link:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

@media (min-width: 1021px) {
    .home-content-section--company .prod-grid {
        grid-template-columns: repeat(2, 600px);
        gap: 24px;
    }

    .home-content-section--company .news-card {
        width: 600px;
    }

    .home-content-section--company .news-card .pc-img {
        width: 600px;
        height: 320px;
    }
}

.product-cta-bar {
    padding: 0;
    text-align: left;
    background: transparent;
    border: 0;
}

.product-spec-table {
    margin-top: 42px;
}

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

.product-cta-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.product-cta-bar--english .product-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-cta-card {
    display: flex;
    min-height: 220px;
    box-sizing: border-box;
    flex-direction: column;
    padding: 30px 32px 26px;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * .8);
    background: var(--paper);
    color: var(--ink);
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-cta-card:hover {
    border-color: var(--brand);
    box-shadow: 0 14px 30px rgba(18, 22, 28, .08);
    transform: translateY(-3px);
}

.product-cta-kicker {
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.product-cta-card h3 {
    margin: 34px 0 10px;
    font-size: clamp(24px, 2.1vw, 36px);
    letter-spacing: -.04em;
}

.product-cta-card p {
    max-width: 34em;
    margin: 0;
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.7;
}

.product-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 700;
}

.product-cta-link b {
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 700px) {
    .product-spec-table {
        margin-top: 28px;
    }

    .product-cta-bar {
        padding: 16px;
    }

    .product-cta-grid {
        grid-template-columns: 1fr;
    }

    .product-cta-card {
        min-height: 190px;
        padding: 24px;
    }

    .product-cta-card h3 {
        margin-top: 24px;
        font-size: 25px;
    }
}

@media (max-width: 1020px) {
    body:has(.page-hero.hero-with-bg) .nav-inner {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        padding: 0 20px;
        gap: 16px;
    }

    body:has(.page-hero.hero-with-bg) .nav-inner > .brand-lockup {
        display: flex;
        flex: 0 0 auto;
        width: 154px;
        height: 27px;
        min-width: 0;
        aspect-ratio: 6787 / 1953;
        align-items: center;
        overflow: hidden;
    }

    body:has(.page-hero.hero-with-bg) .nav-inner > .brand-lockup img {
        display: block;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: contain !important;
    }

    body:has(.page-hero.hero-with-bg) .nav-inner > .lang-v2 {
        display: flex !important;
        flex: 0 0 auto;
        margin-left: auto;
        gap: 8px;
        font-size: 14px;
        line-height: 1;
    }

    body:has(.page-hero.hero-with-bg) .nav-inner > .lang-v2 a,
    body:has(.page-hero.hero-with-bg) .nav-inner > .lang-v2 b {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 20px;
        min-height: 27px;
    }

    body:has(.page-hero.hero-with-bg) .nav-inner > .nav-action {
        display: none;
    }

    body:has(.page-hero.hero-with-bg) .nav-inner > .nav-toggle {
        display: block;
        flex: 0 0 32px;
        margin-left: 0;
    }
}

@media (max-width: 1020px) {
    body:has(.page-hero.hero-with-bg) .page-hero.hero-with-bg {
        background-position: 82% center !important;
    }
}

@media (max-width: 760px) {
    body:has(.page-hero.hero-with-bg) .page-hero.hero-with-bg {
        height: auto;
        aspect-ratio: auto;
        min-height: min(66svh, 560px);
        padding: 108px 0 46px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background-position: 62% center;
        background-size: cover;
    }

    body:has(.page-hero.hero-with-bg) .page-hero.hero-with-bg > .wrap {
        width: calc(100% - 40px);
        height: auto;
        max-width: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    body:has(.page-hero.hero-with-bg) .page-hero.hero-with-bg .eyebrow {
        font-size: 11px;
    }

    body:has(.page-hero.hero-with-bg) .page-hero.hero-with-bg h1 {
        margin: 14px 0 16px;
        font-size: clamp(33px, 9.6vw, 46px);
        line-height: 1.02;
        letter-spacing: -.05em;
    }

    body:has(.page-hero.hero-with-bg) .page-hero.hero-with-bg p {
        max-width: 560px;
        font-size: 15px;
        line-height: 1.65;
    }

    body:has(.page-hero.hero-with-bg) .page-hero.hero-with-bg .breadcrumb {
        gap: 6px;
        margin-top: 18px;
        font-size: 10.5px;
    }

    body.locale-en:has(.page-hero.hero-with-bg) .page-hero.hero-with-bg h1 {
        line-height: 1.02;
    }
}

.home-product-panel {
    width: 1920px;
    max-width: 100%;
    height: 750px;
    margin-inline: auto;
    box-sizing: border-box;
    overflow: hidden;
    border-bottom: 1px solid rgba(20, 22, 24, .12);
    background: var(--paper);
}

.home-product-panel__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 740px;
    align-items: center;
    gap: 48px;
    height: 100%;
    padding: 79px 268px;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
}

.home-product-panel__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.home-product-panel__copy h2 {
    max-width: 1000px;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 82px;
    font-weight: 650;
    line-height: .98;
    letter-spacing: -.065em;
}

.home-product-panel--industry .home-product-panel__copy h2 {
    color: var(--ink);
}

.home-product-panel--industry .home-product-panel__copy p {
    color: var(--ink-2);
}

.home-product-panel__copy p {
    max-width: 880px;
    margin: 0;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
}

.home-product-panel__media {
    width: 740px;
    height: 592px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    background: var(--paper);
    aspect-ratio: 5 / 4;
}

.home-product-panel__media img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.home-product-panel__link--reverse {
    grid-template-columns: 740px minmax(0, 1fr);
}

.home-product-panel__link:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: -3px;
}

@media (min-width: 1021px) and (max-width: 1920px) {
    .home-product-panel {
        height: min(750px, 39.0625vw);
    }

    .home-product-panel__copy {
        padding: 0;
    }

    .home-product-panel__copy h2 {
        margin-bottom: .938vw;
        font-size: 4.271vw;
    }

    .home-product-panel__copy p {
        font-size: .781vw;
    }

    .home-product-panel__link {
        grid-template-columns: minmax(0, 1fr) 38.542vw;
        gap: 2.5vw;
        padding: 4.115vw 13.958vw;
    }

    .home-product-panel__link--reverse {
        grid-template-columns: 38.542vw minmax(0, 1fr);
    }

    .home-product-panel__media {
        width: 38.542vw;
        height: 30.729vw;
    }
}

@media (min-width: 681px) and (max-width: 1020px) {
    .home-product-panel {
        height: min(750px, 39.0625vw);
    }

    .home-product-panel__link {
        grid-template-columns: minmax(0, 1fr) 38.542vw;
        gap: 3vw;
        padding: 4.115vw 8vw;
    }

    .home-product-panel__link--reverse {
        grid-template-columns: 38.542vw minmax(0, 1fr);
    }

    .home-product-panel__media {
        width: 38.542vw;
        height: 30.729vw;
    }

    .home-product-panel__copy h2 {
        margin-bottom: .8vw;
        font-size: clamp(28px, 4.271vw, 44px);
        line-height: .9;
    }

    .home-product-panel__copy p {
        font-size: clamp(11px, .781vw, 15px);
        line-height: 1.3;
    }
}

@media (max-width: 680px) {
    .home-product-panel {
        height: 750px;
        min-height: 750px;
    }

    .home-product-panel__link {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr) 54%;
        gap: 12px;
        padding: 16px 20px;
    }

    .home-product-panel__link--reverse {
        grid-template-columns: 54% minmax(0, 1fr);
    }

    .home-product-panel__copy h2 {
        margin-bottom: 14px;
        font-size: clamp(28px, 8vw, 42px);
        line-height: .98;
    }

    .home-product-panel__copy p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.55;
    }

    .home-product-panel__media {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 4;
    }
}

@media (min-width: 1021px) {
    html[lang="zh-CN"] .page-hero.hero-with-bg,
    html[lang="zh-CN"] .page-hero.industry-page-hero,
    html[lang="zh-CN"] .page-hero.tech-hero,
    html[lang="zh-CN"] .page-hero.about-page-hero,
    html[lang="zh-CN"] .page-hero.news-page-hero {
        width: 1920px;
        max-width: 100%;
        height: 548px;
        min-height: 548px;
    }

    html[lang="zh-CN"] .page-hero.hero-with-bg h1,
    html[lang="zh-CN"] .page-hero.industry-page-hero h1,
    html[lang="zh-CN"] .page-hero.tech-hero h1,
    html[lang="zh-CN"] .page-hero.about-page-hero h1,
    html[lang="zh-CN"] .page-hero.news-page-hero h1 {
        font-size: clamp(40px, 3.75vw, 60px);
    }
}

@media (max-width: 760px) {
    body.home-v2 {
        overflow-x: hidden;
    }

    body.home-v2 .home-hero {
        width: 100%;
        aspect-ratio: 1920 / 860;
    }

    body.home-v2 .home-hero-media {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body.home-v2 .home-hero-copy {
        left: 14vw;
        width: 72vw;
        top: 50%;
        transform: translateY(-44%);
    }

    body.home-v2 .home-hero-copy h1 {
        font-size: clamp(28px, 7.6vw, 38px);
        line-height: .94;
    }

    body.home-v2 .hero-statement {
        max-width: 100%;
        margin-top: 10px;
        font-size: clamp(13px, 3.5vw, 18px);
        line-height: 1.2;
    }

    body.home-v2 .hero-summary {
        max-width: 100%;
        margin: 8px 0 16px;
        font-size: clamp(10px, 2.4vw, 13px);
        line-height: 1.35;
    }

    body.home-v2 .home-hero-actions {
        display: flex;
        gap: 8px;
    }

    body.home-v2 .home-hero-actions .cta-primary {
        min-width: 0;
        padding: 8px 13px;
        font-size: 11px;
    }

    body.home-v2 .home-product-panel {
        width: 100%;
        height: 39.0625vw;
        min-height: 0;
    }

    body.home-v2 .home-product-panel__link,
    body.home-v2 .home-product-panel__link--reverse {
        grid-template-columns: minmax(0, 1fr) 38.542vw;
        gap: 2.5vw;
        padding: 4.115vw 13.958vw;
    }

    body.home-v2 .home-product-panel__link--reverse {
        grid-template-columns: 38.542vw minmax(0, 1fr);
    }

    body.home-v2 .home-product-panel__copy h2 {
        margin-bottom: .938vw;
        font-size: clamp(20px, 4.271vw, 44px);
        line-height: .98;
    }

    body.home-v2 .home-product-panel__copy p {
        max-width: 100%;
        font-size: clamp(9px, .781vw, 15px);
        line-height: 1.35;
    }

    body.home-v2 .home-product-panel__media {
        width: 38.542vw;
        height: 30.729vw;
        aspect-ratio: 5 / 4;
        border-radius: clamp(10px, 1.25vw, 24px);
    }

    body.home-v2 .home-content-section {
        padding: 6.25vw 0 7vw;
    }

    body.home-v2 .home-section-heading {
        width: 72vw;
        margin: 0 auto 4vw;
        padding: 0;
    }

    body.home-v2 .home-section-heading h2 {
        margin: 1.6vw 0 1.2vw;
        font-size: clamp(26px, 5.6vw, 38px);
        line-height: 1.04;
    }

    body.home-v2 .home-section-heading p {
        font-size: clamp(11px, 2.7vw, 14px);
        line-height: 1.5;
    }

    body.home-v2 .home-content-section .prod-grid {
        width: calc(100% - 40px);
        margin-inline: auto;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    body.home-v2 .home-content-section .prod-card {
        min-width: 0;
    }

    body.home-v2 .home-content-section .pc-img {
        height: auto;
        aspect-ratio: 15 / 8;
    }

    body.home-v2 .home-content-section .pc-body {
        padding: 18px 20px 22px;
    }

    body.home-v2 .home-content-section .pc-body h3 {
        font-size: clamp(15px, 3.3vw, 22px);
        line-height: 1.15;
    }

    body.home-v2 .home-content-section .pc-body p {
        font-size: clamp(10px, 2.3vw, 13px);
        line-height: 1.55;
    }

    body.home-v2 .home-stories-more {
        justify-content: flex-start;
        width: 72vw;
        margin: 4vw auto 0;
    }

    body.home-v2 .subscribe-section {
        grid-template-columns: 1fr;
        gap: 5vw;
        padding: 8vw 20px 9vw;
    }

    body.home-v2 .subscribe-copy h2 {
        font-size: clamp(32px, 8vw, 42px);
    }
}

@media (max-width: 760px) {
    body:has(.home-hero) {
        overflow-x: hidden;
    }

    body:has(.home-hero) .home-hero {
        width: 100%;
        height: auto;
        aspect-ratio: 1920 / 860;
        min-height: 0;
    }

    body:has(.home-hero) .home-hero-media {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body:has(.home-hero) .home-hero-copy {
        left: 14vw;
        width: 72vw;
        top: 50%;
        transform: translateY(-44%);
    }

    body:has(.home-hero) .home-hero-copy h1 {
        font-size: clamp(28px, 7.6vw, 38px);
        line-height: .94;
    }

    body:has(.home-hero) .hero-statement {
        max-width: 100%;
        margin-top: 10px;
        font-size: clamp(13px, 3.5vw, 18px);
        line-height: 1.2;
    }

    body:has(.home-hero) .hero-summary {
        max-width: 100%;
        margin: 8px 0 16px;
        font-size: clamp(10px, 2.4vw, 13px);
        line-height: 1.35;
    }

    body:has(.home-hero) .home-hero-actions {
        display: flex;
        gap: 8px;
    }

    body:has(.home-hero) .home-hero-actions .cta-primary {
        min-width: 0;
        padding: 8px 13px;
        font-size: 11px;
    }

    body:has(.home-hero) .home-product-panel {
        width: 100%;
        height: 39.0625vw;
        min-height: 0;
    }

    body:has(.home-hero) .home-product-panel__link,
    body:has(.home-hero) .home-product-panel__link--reverse {
        grid-template-columns: minmax(0, 1fr) 38.542vw;
        gap: 2.5vw;
        padding: 4.115vw 13.958vw;
    }

    body:has(.home-hero) .home-product-panel__link--reverse {
        grid-template-columns: 38.542vw minmax(0, 1fr);
    }

    body:has(.home-hero) .home-product-panel__copy h2 {
        margin-bottom: .938vw;
        font-size: clamp(20px, 4.271vw, 44px);
        line-height: .98;
    }

    body:has(.home-hero) .home-product-panel__copy p {
        max-width: 100%;
        font-size: clamp(9px, .781vw, 15px);
        line-height: 1.35;
    }

    body:has(.home-hero) .home-product-panel__media {
        width: 38.542vw;
        height: 30.729vw;
        aspect-ratio: 5 / 4;
        border-radius: clamp(10px, 1.25vw, 24px);
    }

    body:has(.home-hero) .home-content-section {
        padding: 6.25vw 0 7vw;
    }

    body:has(.home-hero) .home-section-heading {
        width: 72vw;
        margin: 0 auto 4vw;
        padding: 0;
    }

    body:has(.home-hero) .home-section-heading h2 {
        margin: 1.6vw 0 1.2vw;
        font-size: clamp(26px, 5.6vw, 38px);
        line-height: 1.04;
    }

    body:has(.home-hero) .home-section-heading p {
        font-size: clamp(11px, 2.7vw, 14px);
        line-height: 1.5;
    }

    body:has(.home-hero) .home-content-section .prod-grid {
        width: calc(100% - 40px);
        margin-inline: auto;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    body:has(.home-hero) .home-content-section .pc-img {
        height: auto;
        aspect-ratio: 15 / 8;
    }

    body:has(.home-hero) .home-content-section .pc-body {
        padding: 18px 20px 22px;
    }

    body:has(.home-hero) .home-content-section .pc-body h3 {
        font-size: clamp(15px, 3.3vw, 22px);
        line-height: 1.15;
    }

    body:has(.home-hero) .home-content-section .pc-body p {
        font-size: clamp(10px, 2.3vw, 13px);
        line-height: 1.55;
    }

    body:has(.home-hero) .home-stories-more {
        justify-content: flex-start;
        width: calc(100% - 40px);
        margin: 4vw auto 0;
    }

    body:has(.home-hero) .subscribe-section {
        grid-template-columns: 1fr;
        gap: 5vw;
        padding: 8vw 20px 9vw;
    }

    body:has(.home-hero) .subscribe-copy h2 {
        font-size: clamp(32px, 8vw, 42px);
    }
}

@media (max-width: 760px) {
    body.home-v2 .home-product-panel,
    body:has(.home-hero) .home-product-panel {
        height: auto;
        min-height: 0;
    }

    body.home-v2 .home-product-panel__link,
    body.home-v2 .home-product-panel__link--reverse,
    body:has(.home-hero) .home-product-panel__link,
    body:has(.home-hero) .home-product-panel__link--reverse {
        height: auto;
        min-height: 39.0625vw;
        grid-template-columns: minmax(0, 1fr) 38.542vw;
        gap: 2.5vw;
        padding: 4.115vw 13.958vw;
    }

    body.home-v2 .home-product-panel__link--reverse,
    body:has(.home-hero) .home-product-panel__link--reverse {
        grid-template-columns: 38.542vw minmax(0, 1fr);
    }

    body.home-v2 .home-product-panel__copy,
    body:has(.home-hero) .home-product-panel__copy {
        min-width: 0;
    }

    body.home-v2 .home-product-panel__copy h2,
    body:has(.home-hero) .home-product-panel__copy h2 {
        overflow-wrap: anywhere;
    }

    body.home-v2 .footer-inner,
    body.home-v2 .footer-bottom,
    body:has(.home-hero) .footer-inner,
    body:has(.home-hero) .footer-bottom {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        min-width: 0;
        box-sizing: border-box;
    }

    body.home-v2.vigx-language-en .footer-brand p,
    body:has(.home-hero).vigx-language-en .footer-brand p {
        max-width: 100%;
        white-space: normal;
    }
}

@media (max-width: 360px) {
    body.home-v2 .home-product-panel__link,
    body.home-v2 .home-product-panel__link--reverse,
    body:has(.home-hero) .home-product-panel__link,
    body:has(.home-hero) .home-product-panel__link--reverse {
        min-height: 168px;
        padding: 14px 24px;
    }

    body.home-v2 .home-product-panel__copy h2,
    body:has(.home-hero) .home-product-panel__copy h2 {
        font-size: clamp(18px, 6.25vw, 24px);
        line-height: 1;
    }

    body.home-v2 .home-product-panel__copy p,
    body:has(.home-hero) .home-product-panel__copy p {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* ============================================================
   栏目页移动端适配层（products / scenes / tech / news / contact / about，中英共用）
   仅在 ≤760px 生效，层叠于文件末尾以获得最高优先级
   ============================================================ */
@media (max-width: 760px) {

    /* ---------- 基础版式 ---------- */
    .wrap, .wide-wrap {
        width: calc(100% - 40px);
    }

    .section {
        padding: clamp(56px, 14vw, 76px) 0;
    }

    .section-head h2, .section-heading h2 {
        font-size: clamp(27px, 7.6vw, 36px);
        letter-spacing: -.045em;
        line-height: 1.08;
    }

    .section-head p, .section-heading > p:last-child {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .eyebrow {
        font-size: 11px;
    }

    /* ---------- 页面 Hero：从"矮横幅"改为沉浸式首屏 ---------- */
    .page-hero {
        min-height: min(66svh, 560px);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 108px 0 46px;
    }

    .page-hero h1 {
        font-size: clamp(33px, 9.6vw, 46px);
        letter-spacing: -.05em;
        line-height: 1.02;
        margin: 14px 0 16px;
    }

    .page-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    /* 带背景图的 Hero 增加底部渐变压暗，保证文字可读 */
    .page-hero.hero-with-bg,
    .page-hero.about-page-hero,
    .page-hero.news-page-hero,
    .page-hero.tech-hero {
        position: relative;
        isolation: isolate;
    }

    .page-hero.hero-with-bg::after,
    .page-hero.about-page-hero::after,
    .page-hero.news-page-hero::after,
    .page-hero.tech-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(180deg, rgba(10, 12, 14, .18) 0%, rgba(10, 12, 14, .34) 46%, rgba(10, 12, 14, .72) 100%);
    }

    /* 窄屏下解除各类 nowrap 溢出 */
    .news-hero-title,
    .contact-hero-nowrap,
    .about-hero-description,
    .consumer-series-title,
    .consumer-product-nowrap {
        white-space: normal !important;
    }

    .about-hero-description {
        max-width: 560px !important;
    }

    .breadcrumb {
        font-size: 10.5px;
        flex-wrap: wrap;
    }

    /* ---------- 消费产品页 ---------- */
    .prod-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pc-img {
        height: min(58vw, 300px);
    }

    .pc-body {
        padding: 20px 18px 22px;
    }

    .pc-body h3 {
        font-size: 21px;
    }

    .pc-body p {
        font-size: 13.5px;
        margin: 8px 0 18px;
    }

    .prod-card .btn, .product-card-actions .btn, .product-view-link, .product-buy-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .product-card-actions {
        gap: 10px;
    }

    /* 规格表：取消横向滑动，完整显示（列宽固定 + 文字换行 + 紧凑字号） */
    .products-comparison-wrap {
        position: relative;
        margin-inline: 0;
        padding-inline: 0;
        overflow-x: visible;
    }

    .products-comparison-wrap::after {
        display: none;
    }

    .spec-table {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100%;
        table-layout: fixed;
    }

    .spec-table th,
    .spec-table td {
        white-space: normal !important;
        overflow-wrap: break-word;
        padding: 12px 10px;
        font-size: 12px;
        line-height: 1.6;
        vertical-align: top;
    }

    .spec-table th {
        color: var(--ink-3);
        font-weight: 550;
        font-size: 11.5px;
    }

    .spec-table .spec-shared td[colspan="2"] {
        text-align: center;
    }

    .products-comparison-table thead th {
        font-size: 12.5px;
        font-weight: 700;
        padding: 12px 8px;
    }

    .products-comparison-table tbody th {
        text-align: left;
    }

    .products-comparison-table tbody td {
        padding-inline: 10px;
    }

    .buy-bar {
        padding: 34px 20px 32px;
    }

    .buy-bar h3 {
        font-size: clamp(25px, 7.6vw, 33px);
    }

    .buy-bar p {
        font-size: 13.5px;
        margin: 10px 0 20px;
    }

    .buy-row {
        flex-direction: column;
        align-items: stretch;
    }

    .buy-btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .series-title {
        padding: 14px 0;
        margin: 16px 0;
        font-size: 11px;
    }

    /* ---------- 行业产品页 ---------- */
    .page-hero.industry-page-hero {
        min-height: min(62svh, 520px);
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .solution-card {
        margin-bottom: 0;
    }

    .solution-copy h3 {
        font-size: 21px;
    }

    .solution-copy p {
        font-size: 13.5px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
        padding: 0;
    }

    .stat-num {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -.05em;
    }

    .stat-label {
        font-size: 11.5px;
    }

    .process {
        gap: 18px;
    }

    .process-step {
        padding-left: 0;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cc-body {
        padding: 18px;
    }

    .research-copy-row {
        flex-direction: column;
        gap: 14px;
    }

    .industry-partnership-cta {
        padding: 30px 20px;
    }

    /* ---------- 技术页 ---------- */
    .feature-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-row.rev .feature-img {
        order: -1;
    }

    .feature-img {
        height: min(62vw, 320px);
    }

    .feature-row h3 {
        font-size: clamp(22px, 6.4vw, 28px);
        letter-spacing: -.04em;
    }

    .feature-row p, .feature-row li {
        font-size: 14px;
        line-height: 1.75;
    }

    .patent-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .patent-card {
        padding: 18px 14px;
    }

    /* 技术页专利模块：背景证书照片与文字相互干扰，移动端加重白色蒙版保证可读 */
    .tech-patent-section {
        background:
            linear-gradient(rgba(255, 255, 255, .93), rgba(255, 255, 255, .93)),
            url("images/tech/background2.jpg") center / cover no-repeat;
    }

    .tech-patent-section .section-head h2,
    .vigx-language-en .tech-patent-section .section-head h2,
    body.vigx-language-en .tech-patent-section .section-head h2 {
        font-size: clamp(27px, 7.6vw, 36px);
        letter-spacing: -.045em;
        line-height: 1.08;
        white-space: normal;
    }

    .tech-patent-section .section-head p {
        color: var(--ink);
        white-space: normal;
        font-size: 14.5px;
        line-height: 1.7;
    }

    .tech-patent-stats {
        margin-top: 28px;
    }

    .tech-patent-stats .stat-value {
        font-size: clamp(30px, 9vw, 42px);
    }

    /* ---------- 用户故事页 ---------- */
    .news-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .news-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 8px 16px;
        font-size: 12.5px;
    }

    .news-feature-copy {
        padding: 22px 18px;
    }

    .news-feature-copy h2, .news-feature-copy h3 {
        font-size: clamp(22px, 6.6vw, 30px);
        letter-spacing: -.04em;
    }

    /* ---------- 服务与支持页 ---------- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .form-card {
        padding: 24px 18px;
    }

    .ask-form input, .ask-form select, .ask-form textarea {
        min-height: 48px;
        font-size: 15px;
    }

    .ask-form .btn {
        min-height: 50px;
        font-size: 15px;
        width: 100%;
    }

    .choice-group {
        gap: 8px;
    }

    .choice-chip {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 13px;
    }

    .form-honeypot {
        position: absolute !important;
        left: -9999px !important;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .help-resource-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .help-contact-channels {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .help-search input {
        min-height: 48px;
        font-size: 15px;
    }

    .faq-q {
        padding: 16px 14px;
        font-size: 14.5px;
    }

    .faq-a-inner {
        font-size: 13.5px;
    }

    /* ---------- 关于 VIGX 页 ---------- */
    .about-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-proof-item {
        padding: 18px 14px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-card {
        padding: 22px 18px;
    }

    .quote-section {
        padding: clamp(48px, 13vw, 68px) 0;
    }

    .quote-section blockquote {
        font-size: clamp(20px, 5.8vw, 26px);
        line-height: 1.4;
    }

    .tech-wrap {
        flex-direction: column;
        gap: 22px;
    }

    .timeline {
        padding-left: 0;
    }

    /* 历史时间线缩略图：横向滑动 */
    .history-thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding-bottom: 8px;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .history-thumbs::-webkit-scrollbar {
        display: none;
    }

    .history-thumb {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: 88px;
    }

    .history-thumb img {
        width: 100%;
        height: 64px;
        object-fit: cover;
    }

    .history-control {
        width: 40px;
        height: 40px;
    }

    /* ---------- 通用收尾 ---------- */
    .demo-notice {
        font-size: 11px;
        padding: 8px 14px;
    }

    .btn {
        min-height: 46px;
    }
}

@media (max-width: 380px) {
    .page-hero h1 {
        font-size: clamp(28px, 9.4vw, 36px);
    }

    .about-proof-grid {
        grid-template-columns: 1fr;
    }
}
