@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
#R26042109120782751 {
    display: none;
}
/* ===== Reset & Base ===== */
.robotics-lp *, .robotics-lp *::before, .robotics-lp *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* [FIX] 變數收斂在 .robotics-lp 底下，不污染全域；顏色一律走變數 */
.robotics-lp {
    /* 基本色 */
    --color-white: #fff;
    --color-black: #000;
    --color-text: #292B38;
    --color-gray: #777a7d;
    /* 藍色系（依用途命名） */
    --color-blue: #0071c1; /* subnav 底色、hero dot、CTA 文字 */
    --color-blue-vivid: #006eff; /* 主要按鈕／標題強調 */
    --color-blue-line: #008ad0; /* 框線、下拉選單選中底色 */
    --color-blue-line-rgb: 0, 138, 208;
    --color-blue-link: #4399f0; /* link-arrow、use case tab 選中 */
    --color-blue-hover: #5ba8ff; /* hover 文字色 */
    --color-blue-navy: #00225e; /* subnav 選中 */
    --color-blue-hover-dark: #1558b0; /* link-arrow hover */
    /* 其他 */
    --color-chip-bg: #1e262d; /* use case 產業標籤底色 */
    --overlay-white-03: rgba(255, 255, 255, 0.03);
    --overlay-white-05: rgba(255, 255, 255, 0.05);
    /* 尺寸與動態 */
    --max-width: 1200px;
    --max-width-inner: 1068px;
    --section-padding: 50px 0;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-text);
    background-color: var(--color-black);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.robotics-lp img {
    max-width: 100%;
    height: auto;
    display: block;
}
.robotics-lp a {
    text-decoration: none;
    color: inherit;
}
.robotics-lp ul {
    list-style: none;
}
.robotics-lp .d-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
}
/* [FIX] .container → .rlp-container，避免和母站的 .container 衝突 */
.robotics-lp .rlp-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
}
/* ===== Typography ===== */
.robotics-lp h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.robotics-lp h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.robotics-lp h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.robotics-lp h4 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}
/* ===== Link Arrow ===== */
.robotics-lp .link-arrow {
    display: inline-block;
    font-weight: 500;
    font-size: 78%;
    color: var(--color-blue-link);
    transition: var(--transition);
    line-height: normal;
}
.robotics-lp .link-arrow:hover {
    color: var(--color-blue-hover);
}
/* ===== Hero Section ===== */
.robotics-lp .hero {
    position: relative;
    /* [FIX] 用 calc 扣掉母站 header 高度，避免溢出 */
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-black);
}
.robotics-lp .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.robotics-lp .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.3;
}
.robotics-lp .hero-bg .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.robotics-lp .hero-bg .hero-video.active {
    opacity: 0.3;
}
.robotics-lp .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 43, 56, 0.85) 0%, rgba(41, 43, 56, 0.4) 60%, rgba(41, 43, 56, 0.2) 100%);
}
.robotics-lp .hero-content {
    z-index: 2;
    max-width: 100%;
    text-align: center;
}
/* Hero Carousel */
.robotics-lp .hero-slides {
    position: relative;
    z-index: 2;
}
.robotics-lp .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}
.robotics-lp .hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
.robotics-lp .hero-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 15px;
}
.robotics-lp .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}
.robotics-lp .hero-dot.active {
    background: var(--color-blue);
    transform: scale(1.3);
}
.robotics-lp .hero h1 {
    color: transparent;
    background: linear-gradient(105deg, rgba(122, 132, 148, 0.7) 0%, rgba(212, 218, 228, 0.85) 12%, rgba(240, 242, 245, 0.9) 20%, rgba(160, 170, 184, 0.7) 30%, rgba(200, 207, 217, 0.85) 40%, rgba(245, 247, 250, 0.95) 48%, rgba(184, 194, 208, 0.8) 55%, rgba(136, 146, 164, 0.7) 65%, rgba(224, 228, 234, 0.9) 75%, rgba(248, 249, 251, 0.95) 82%, rgba(168, 178, 192, 0.8) 90%, rgba(122, 132, 148, 0.7) 100%), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(180, 190, 205, 0.08) 1px, rgba(255, 255, 255, 0.02) 2px, rgba(160, 170, 185, 0.06) 3px, transparent 4px), repeating-linear-gradient(90deg, rgba(200, 210, 225, 0.04) 0px, rgba(255, 255, 255, 0.06) 2px, rgba(140, 150, 165, 0.05) 3px, transparent 5px), linear-gradient(180deg, #8a95a8 0%, #a8b2c0 50%, #8a95a8 100%);
    background-size: 200% 100%, auto, auto, auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: rlp-metalShine 4s ease-in-out infinite;
    margin-bottom: 24px;
    white-space: nowrap;
    font-size: clamp(2.16rem, 7.4vw, 4.28rem);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.15)) drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.3));
    line-height: normal;
}
.robotics-lp .hero h1.hero-h1-multiline {
    white-space: normal;
    margin-bottom: 0;
}
/* [FIX] keyframes 加前綴，避免和母站命名衝突 */
@keyframes rlp-metalShine {
    0% {
        background-position: 100% 50%, 0 0, 0 0, 0 0;
    }
    50% {
        background-position: 0% 50%, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 100% 50%, 0 0, 0 0, 0 0;
    }
}
/* ===== Sub Navigation (Sticky Menu) ===== */
.robotics-lp .subnav {
    background: var(--color-blue);
    position: sticky;
    top: 0px;
    z-index: 99;
    display: block;
    margin: 0;
    padding: 0;
    height: 50px;
    line-height: 1;
}
.robotics-lp .subnav-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    height: 50px;
}
.robotics-lp .subnav-inner a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 50px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
    transition: background 0.3s;
    position: relative;
    border: none;
    background: transparent;
    line-height: 50px;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
}
.robotics-lp .subnav-inner a:hover {
    background: rgba(2, 41, 89, 0.5);
}
.robotics-lp .subnav-inner a.active {
    background: var(--color-blue-navy);
    color: var(--color-white);
}
.robotics-lp .subnav-inner a.subnav-cta {
    margin-left: auto;
    color: var(--color-blue);
    background: var(--color-white);
    border: none;
    padding: 0 24px;
    flex-shrink: 0;
}
.robotics-lp .subnav-inner a.subnav-cta:hover {
    background: rgb(2, 25, 70);
}
/* ===== #AdlinkRobotics ===== */
.robotics-lp #AdlinkRobotics {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 2560px auto;
    background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/AdlinkRobotics_bg.webp);
    padding-bottom: 0;
}
.robotics-lp #AdlinkRobotics h2 + p {
    margin: 0 auto 4em;
}
.robotics-lp #AdlinkRobotics .rlp-container, .robotics-lp .sensor-fusion-module .rlp-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.robotics-lp #AdlinkRobotics article {
    margin: 0 auto;
    max-width: var(--max-width-inner);
    padding-bottom: 2.5em;
}
.robotics-lp ul.capabilities {
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
}
.robotics-lp ul.capabilities li {
    color: var(--color-blue-vivid);
}
.robotics-lp ul.capabilities li figure {
    margin: 0 auto 0.5em;
    aspect-ratio: 1 / 1;
    max-width: 156px;
    border-radius: 500px;
    background: linear-gradient(to bottom, rgba(17, 44, 74, 1) 0%, rgba(17, 44, 74, 0.5) 50%, rgba(17, 44, 74, 0) 100%);
}
.robotics-lp ul.capabilities li strong {
    display: block;
    line-height: normal;
    margin: 0 auto;
}
.robotics-lp ul.capabilities li strong span {
    display: inline-block;
}
/* ===== .sensor-fusion-module ===== */
.robotics-lp .sensor-fusion-module {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 2560px auto;
    background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/sensor-fusion-module_bg.webp);
    padding-bottom: 0 !important;
}
.robotics-lp .sensor-fusion-module .rlp-container {
    padding-bottom: 2.4em;
}
.robotics-lp .sensor-fusion-module h2 + p {
    margin: 0 auto 4.5em;
}
.robotics-lp .sensor-fusion-module article:nth-of-type(1) {
    margin: 0 auto;
    max-width: var(--max-width-inner);
    padding-bottom: 2.5em;
}
.robotics-lp .sensor-fusion-module article figure.Robot {
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    width: fit-content;
}
/* 機器人圖上的特徵標註 */
.robotics-lp .feature-box {
    position: absolute;
    display: flex;
    align-items: center;
}
.robotics-lp .text-content {
    display: flex;
    flex-direction: column;
}
.robotics-lp .text-content.left-aligned {
    text-align: right;
}
.robotics-lp .text-content.right-aligned {
    text-align: left;
}
.robotics-lp .feature-box h4 {
    margin: 0 0 0.2em 0;
    font-size: 130%;
    font-weight: 300;
}
.robotics-lp .feature-box ul {
    list-style: none;
    color: var(--color-white);
    font-size: 80%;
    margin: 0;
    padding: 0;
}
.robotics-lp .feature-box ul li {
    line-height: normal;
}
/* 客製化列表項目圓點 */
.robotics-lp .feature-box li span {
    display: inline-flex;
    position: relative;
    padding-left: 0.9375em;
    line-height: 0;
    align-items: center;
}
.robotics-lp .feature-box .right-aligned ul li span {
    padding-left: 0;
}
.robotics-lp .feature-box li span::before {
    content: "•";
    font-size: 150%;
    line-height: 0;
    padding-right: .2em;
}
.robotics-lp .feature-box.head li span::before {
    color: rgb(var(--theme-rgb));
}
.robotics-lp .feature-box.torso li span::before {
    color: rgb(var(--theme-rgb));
}
.robotics-lp .feature-box.hand li span::before {
    color: rgb(var(--theme-rgb));
}
.robotics-lp .feature-box.base li span::before {
    color: rgb(var(--theme-rgb));
}
/* 呼吸燈圖示容器 */
.robotics-lp .breathing-circle-container {
    position: relative;
    width: 4em;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 擴散共用樣式 (改用 box-shadow) */
.robotics-lp .circle {
    position: absolute;
    width: 0.9em; /* 保持中心實心圓大小為 0.9em */
    height: 0.9em;
    border-radius: 50%;
    background-color: rgb(var(--theme-rgb));
    animation: rlp-rippleShadow 3s linear infinite;
}
.robotics-lp .circle::before, .robotics-lp .circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: rlp-rippleShadow 3s linear infinite;
}
.robotics-lp .circle::before {
    animation-delay: 1s; /* 第二層延遲 1 秒發出 */
}
.robotics-lp .circle::after {
    animation-delay: 2s; /* 第三層延遲 2 秒發出 */
}
@keyframes rlp-rippleShadow {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--theme-rgb), 0.8);
    }
    100% {
        /* 稍微擴大最大範圍至 1.5em，讓三層波紋有空間展開 */
        box-shadow: 0 0 0 1.5em rgba(var(--theme-rgb), 0);
    }
}
/* --- Hand --- */
.robotics-lp .hand {
    top: 20.5em;
    left: 0.15em;
    --theme-rgb: 46, 204, 113;
    pointer-events: none;
}
.robotics-lp .hand h4 {
    color: rgb(var(--theme-rgb));
}
/* --- Head --- */
.robotics-lp .head {
    top: 0.75em;
    right: 7.2em;
    flex-direction: row-reverse;
    --theme-rgb: 72, 201, 176;
}
.robotics-lp .head h4 {
    color: rgb(var(--theme-rgb));
}
/* --- Torso --- */
.robotics-lp .torso {
    top: 6.625em;
    right: 4.2em;
    flex-direction: row-reverse;
    --theme-rgb: 154, 205, 50;
}
.robotics-lp .torso .text-content {
    padding-left: .5em;
}
.robotics-lp .torso h4 {
    color: rgb(var(--theme-rgb));
}
/* --- Base/Feet --- */
.robotics-lp .base {
    top: 30.125em;
    left: 2.125em;
    --theme-rgb: 91, 192, 222;
}
.robotics-lp .base h4 {
    color: rgb(var(--theme-rgb));
}
.robotics-lp .sensor-fusion-module small {
    display: block;
    color: var(--color-gray);
    line-height: normal;
    font-size: 74%;
    margin: 0 auto 2.6em;
}
.robotics-lp .CameraEcosystemPartners {
    margin: -13em auto 0;
    position: relative;
    z-index: 5;
    max-width: 980px;
}
.robotics-lp .CameraEcosystemPartners div {
    background-color: rgba(119, 122, 125, .18);
    padding: 1em;
}
.robotics-lp .CameraEcosystemPartners div a {
    display: block;
    color: var(--color-white);
    background-color: var(--color-blue-vivid);
    padding: 0.7em 2em;
    font-size: 100%;
    line-height: normal;
    max-width: 350px;
    margin: 0 auto;
    border: 1px solid var(--color-blue-vivid);
    font-weight: 500;
}
.robotics-lp .CameraEcosystemPartners div a:hover {
    background: var(--color-white);
    color: var(--color-blue-vivid);
}
.robotics-lp .CameraEcosystemPartners ul {
    margin: 0 auto 1.2em;
    display: flex;
    gap: 1.7em;
    justify-content: center;
    align-items: center;
}
.robotics-lp .CameraEcosystemPartners ul:after {
    content: none;
}
.robotics-lp .CameraEcosystemPartners ul li img {
    width: 100%;
}
/* [FIX] 廠商 logo 尺寸限定在本區塊內，避免影響母站其他同 alt 的圖 */
.robotics-lp .CameraEcosystemPartners img[alt="LEOPARD"] {
    max-width: 100px;
}
.robotics-lp .CameraEcosystemPartners img[alt="ORBBEC"] {
    max-width: 118px;
}
.robotics-lp .CameraEcosystemPartners img[alt="oToBrite"] {
    max-width: 82px;
}
.robotics-lp .CameraEcosystemPartners img[alt="SENSING"] {
    max-width: 90px;
}
.robotics-lp .CameraEcosystemPartners img[alt="StereoLabs"] {
    max-width: 120px;
}
.robotics-lp .CameraEcosystemPartners img[alt="TIERIV"] {
    max-width: 82px;
}
/* ===== Section Intro ===== */
.robotics-lp .section-intro {
    padding: var(--section-padding);
    text-align: center;
    overflow-x: hidden;
}
.robotics-lp .section-intro h2 {
    color: var(--color-white);
    margin: 0 auto .5em;
}
.robotics-lp .section-intro p {
    color: var(--color-gray);
    font-size: 1.6rem;
    max-width: 960px;
    margin: 0 auto;
    line-height: 1.5;
}
/* ===== Use Cases ===== */
.robotics-lp .use-cases {
    padding: var(--section-padding);
}
/* ===== More Use Cases ===== */
.robotics-lp .moreUseCases {
    padding: 2em 0 3em;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 2560px auto;
    background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/MoreUseCases_bg.webp);
}
.robotics-lp .UseCaseSlides {
    margin: 0 auto;
    max-width: 1100px;
    border: 1px solid var(--color-blue-line);
}
.robotics-lp .use-case-tabs {
    display: flex;
    background: var(--color-black);
    overflow: hidden;
    border-bottom: 1px solid var(--color-blue-line);
}
.robotics-lp .use-case-tab {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.robotics-lp .use-case-tab:nth-of-type(2) {
    border-left: 1px solid var(--color-blue-line);
    border-right: 1px solid var(--color-blue-line);
}
.robotics-lp .use-case-tab:hover {
    color: var(--color-blue-hover);
    background: var(--overlay-white-05);
}
.robotics-lp .use-case-tab.active {
    background: var(--color-blue-link);
    pointer-events: none;
}
/* ===== 手機版下拉選單（預設隱藏，<=768px 時取代 tabs） ===== */
.robotics-lp .use-case-dropdown {
    display: none;
    position: relative;
    z-index: 20;
    background: var(--color-black);
}
/* iOS/觸控裝置：確保按鈕可正常接收點擊 */
.robotics-lp .use-case-dropdown-toggle, .robotics-lp .use-case-dropdown-item {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    touch-action: manipulation;
    cursor: pointer;
}
.robotics-lp .use-case-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-blue-line);
    border-radius: 0;
    color: var(--color-white);
    font-family: inherit;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    transition: background 0.3s;
}
.robotics-lp .use-case-dropdown-toggle[aria-expanded="false"] {
    background-color: var(--color-blue-line);
}
.robotics-lp .use-case-dropdown.is-open .use-case-dropdown-toggle {
    background: var(--overlay-white-05);
}
@media (hover: hover) {
    .robotics-lp .use-case-dropdown-toggle:hover {
        background: var(--overlay-white-05);
    }
}
.robotics-lp .use-case-dropdown-label, .robotics-lp .use-case-dropdown-arrow {
    pointer-events: none;
}
.robotics-lp .use-case-dropdown-arrow {
    display: block;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
    transition: transform 0.3s ease, margin 0.3s ease;
}
.robotics-lp .use-case-dropdown.is-open .use-case-dropdown-arrow {
    margin-top: 4px;
    transform: rotate(-135deg);
}
.robotics-lp .use-case-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--color-black);
    border-bottom: 1px solid var(--color-blue-line);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}
.robotics-lp .use-case-dropdown.is-open .use-case-dropdown-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, visibility 0s;
}
.robotics-lp .use-case-dropdown-menu li + li .use-case-dropdown-item {
    border-top: 1px solid rgba(var(--color-blue-line-rgb), 0.4);
}
.robotics-lp .use-case-dropdown-item {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--color-white);
    font-family: inherit;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    transition: background 0.3s, color 0.3s;
}
@media (hover: hover) {
    .robotics-lp .use-case-dropdown-item:hover {
        color: var(--color-blue-hover);
        background: var(--overlay-white-05);
    }
}
.robotics-lp .use-case-dropdown-item.is-selected {
    background: var(--color-blue-line);
    color: var(--color-white);
}
.robotics-lp .use-case-slider {
    position: relative;
	background-color: var(--color-black);
}
.robotics-lp .use-case-slide {
    display: none;
    background: var(--overlay-white-03);
    overflow: hidden;
    height: 392px;
    position: relative;
    text-align: left;
    align-items: stretch;
}
.robotics-lp .use-case-slide.active {
    display: flex;
}
.robotics-lp .use-case-slide > article {
    position: relative;
    width: 100%;
    display: none;
    align-items: center;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
}
.robotics-lp .use-case-slide[data-uc-slide="0"] article.FactoryAutomation {
    background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/use-case-slider_img1.webp);
}
.robotics-lp .use-case-slide[data-uc-slide="0"] article.SmartFactory {
    background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/use-case-slider_img1-1.webp);
}
.robotics-lp .use-case-slide[data-uc-slide="1"] article {
    background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/use-case-slider_img2.webp);
}
.robotics-lp .use-case-slide[data-uc-slide="2"] article {
    background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/use-case-slider_img3.webp);
}
.robotics-lp .use-case-slide > article.active {
    display: flex;
}
.robotics-lp .use-case-background-outgoing {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
/* 只有一篇 article 時不顯示輪播分頁 */
.robotics-lp .use-case-slide:not(.is-carousel) .tab-pagination {
    display: none;
}
.robotics-lp .tab-pagination {
    position: absolute;
    bottom: 0.8em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 136%;
    line-height: normal;
    font-weight: bold;
}
.robotics-lp .tab-pagination :is(i, strong) {
    display: inline-block;
}
.robotics-lp .tab-pagination :is(.fa-chevron-left, .fa-chevron-right) {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: color 0.3s;
}
.robotics-lp .tab-pagination :is(.fa-chevron-left, .fa-chevron-right):hover {
    color: var(--color-blue-hover);
}
.robotics-lp .tab-pagination .fa-chevron-left {
    padding-right: .3em;
}
.robotics-lp .tab-pagination .fa-chevron-right {
    padding-left: .3em;
}
.robotics-lp .tab-pagination span {
    padding: 0 .25em;
}
.robotics-lp .tab-pagination .tab-pagination__total {
    font-size: 66%;
}
/* 分隔線與總數單獨齊底（其餘元素維持置中） */
.robotics-lp .tab-pagination .tab-pagination-separator, .robotics-lp .tab-pagination .tab-pagination__total {
    align-self: flex-end;
    position: relative;
    bottom: 0.1em;
}
.robotics-lp .tab-pagination .tab-pagination-separator {
    font-size: 42%;
    bottom: 0.4em;
}
.robotics-lp .use-case-slide-text {
    position: relative;
    z-index: 1;
    padding: 0 0 0 3.4em;
    max-width: 610px;
}
/* 只讓文字內容進場，背景圖、手機文字底色與分頁控制保持穩定。 */
.robotics-lp .use-case-slide.active > article.active .use-case-slide-text > * {
    animation: rlp-ucTextIn 0.2s ease-out;
}
@keyframes rlp-ucTextIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .robotics-lp .use-case-slide.active > article.active .use-case-slide-text > * {
        animation: none;
    }
}
.robotics-lp .use-case-industries {
    margin: 1em 0 1.5em;
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
}
.robotics-lp .use-case-industries span {
    display: inline-block;
    padding: .4em 1.2em;
    border-radius: 50px;
    background: var(--color-chip-bg);
    color: var(--color-gray);
    font-size: 74%;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.robotics-lp .use-case-slide-text h3 {
    color: var(--color-white);
    font-size: 166%;
    margin-bottom: 0.6em;
    line-height: normal;
}
.robotics-lp .use-case-slide-text p {
    color: var(--color-white);
    font-size: 100%;
    line-height: 1.75;
}
@media (max-width: 768px) {
    .robotics-lp .use-case-slide {
        height: auto;
    }
    .robotics-lp .use-case-slide-text {
        padding: 32px 32px 3em;
        height: 100%;
        background-color: rgba(0, 0, 0, .5);
    }
    .robotics-lp .use-case-tabs {
        display: none;
    }
    .robotics-lp .use-case-dropdown {
        display: block;
    }
    .robotics-lp .use-case-slide[data-uc-slide="0"] article.FactoryAutomation {
        background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/use-case-slider_img1_m.webp);
    }
    .robotics-lp .use-case-slide[data-uc-slide="0"] article.FactoryAutomation .use-case-slide-text {
        padding: 32px 32px 3.4em;
    }
    .robotics-lp .use-case-slide[data-uc-slide="0"] article.SmartFactory {
        background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/use-case-slider_img1-1_m.webp);
    }
    .robotics-lp .use-case-slide[data-uc-slide="1"] article {
        background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/use-case-slider_img2_m.webp);
    }
    .robotics-lp .use-case-slide[data-uc-slide="2"] article {
        background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/use-case-slider_img3_m.webp);
    }
}
/* ===== Featured Use Case ===== */
.robotics-lp .uc-featured {
    overflow: hidden;
}
.robotics-lp .uc-featured-img {
    width: 100%;
    overflow: hidden;
    max-width: 770px;
    margin: 0 auto;
}
.robotics-lp .uc-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}
.robotics-lp .uc-featured-body {
    padding: 2.5em 0 0;
    text-align: center;
}
.robotics-lp .uc-featured-title {
    color: var(--color-blue-vivid);
    font-size: 120%;
    font-weight: 500;
    margin-bottom: 5px;
}
.robotics-lp .uc-featured-body p {
    color: var(--color-gray);
    font-size: 90%;
    line-height: 1.5;
    max-width: 886px;
    margin: 0 auto 2.5em;
}
.robotics-lp .uc-featured-btn {
    display: block;
    color: var(--color-white);
    background-color: var(--color-blue-vivid);
    padding: 0.7em 2em;
    font-size: 94%;
    line-height: normal;
    max-width: fit-content;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 1px solid var(--color-blue-vivid);
    font-weight: 500;
}
.robotics-lp .uc-featured-btn:hover {
    background: var(--color-white);
    color: var(--color-blue-vivid);
}
@media (max-width: 768px) {
    .robotics-lp .uc-featured-body {
        padding: 28px 24px;
    }
    .robotics-lp .uc-featured-title {
        font-size: 2rem;
    }
}
/* ===== Featured Products ===== */
.FeaturedProducts section {
    padding: 50px 0 0;
}
.FeaturedProducts section:last-of-type {
    padding-bottom: 50px;
}
.FeaturedProducts h2 {
    text-align: center;
    margin: 0 auto 25px;
}
ul.FeaturedProducts-slider {
    --ps-gutter: 16px; /* 首尾留白＋卡片間距 */
    --ps-card-w: 44%; /* 卡片寬（600–767px：一次約 2 張） */
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}
ul.FeaturedProducts-slider:after {
    content: none;
}
/* <768px：與 ul.product-slider-module-products-slider 相同的橫向捲動卡片列 */
@media screen and (max-width: 599.98px) {
    ul.FeaturedProducts-slider {
        --ps-card-w: 72%; /* 手機：一次 1 張＋露出下一張 */
    }
}
@media screen and (max-width: 767.98px) {
    ul.FeaturedProducts-slider {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: stretch;
        /* 首尾留白改用卡片 margin，不用容器 padding／gap：
           Chromium 會把尾端的 gap/padding 算進 scrollWidth，捲到底時右邊會多一塊空白 */
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 0 8px !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-left: var(--ps-gutter);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    ul.FeaturedProducts-slider::-webkit-scrollbar {
        display: none;
    }
    ul.FeaturedProducts-slider > li {
        flex: 0 0 var(--ps-card-w) !important;
        width: var(--ps-card-w) !important;
        max-width: var(--ps-card-w) !important;
        padding: 0 !important;
        margin-right: var(--ps-gutter) !important;
/*        scroll-snap-align: start;*/
        /* 卡片齊高：li 撐滿列高，a 再撐滿 li */
        height: auto !important;
        align-self: stretch !important;
    }
    ul.FeaturedProducts-slider > li > a {
        height: 100% !important;
        flex: 1 1 auto !important;
    }
    ul.FeaturedProducts-slider > li:first-child {
        margin-left: var(--ps-gutter) !important;
    }
    /* 只有 1~2 張卡時不需要橫向滑動，維持置中 */
    ul.FeaturedProducts-slider.is-not-scrollable {
        justify-content: center;
    }
}
ul.FeaturedProducts-slider li {
    display: flex;
    height: 100%;
}
ul.FeaturedProducts-slider li a {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex: 1 1 auto;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 10%);
    border: 1px solid #ccc;
    min-height: 250px;
    box-sizing: border-box;
}
ul.FeaturedProducts-slider li a :is(strong,span) {
	display: block;
}
ul.FeaturedProducts-slider li a strong, ul.FeaturedProducts-slider li a:hover strong {
 font-size: 2rem;
    font-weight: normal;
    margin: .8em 0 .25em;
	color: #444;
}
ul.FeaturedProducts-slider li a span.productImg {
	padding: 0;
}
ul.FeaturedProducts-slider li a span.product-status-txt, ul.FeaturedProducts-slider li a:hover span.product-status-txt {
    margin-bottom: 30px;
    color: #444;
}
ul.FeaturedProducts-slider li a .cta_btn_ghost_red {
    margin: auto auto 0;
    color: #00609c !important;
    border-color: #00609c !important;
    transition: .3s ease-in-out;
}
ul.FeaturedProducts-slider li a:hover .cta_btn_ghost_red {
    color: #fff !important;
    background-color: #00609c !important;
}
ul.FeaturedProducts-slider li a:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background-color: #00609c;
    transition: .3s ease-in-out;
}
.FeaturedProducts .adlink-container {
    width: 100%;
}
@media screen and (max-width: 1680px) {
ul.FeaturedProducts-slider li a strong {
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 996px) {
    ul.FeaturedProducts-slider li a:hover:before {
        width: 0%;
    }
}
@media screen and (min-width: 996px) {
    .FeaturedProducts .adlink-container {
        width: 1100px;
    }
}
@media screen and (max-width: 680px) {
    .FeaturedProducts h3 {
        margin-bottom: 15px;
    }
}
/* ===== Scroll Animations ===== */
.robotics-lp .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.robotics-lp .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .robotics-lp {
        --section-padding: 80px 0;
    }
    .robotics-lp ul.capabilities {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        max-width: 548px;
        gap: 2em 1em;
    }
}
@media (max-width: 871px) {
    .robotics-lp .sensor-fusion-module {
        background-position: center 63%;
        background-size: 100% auto;
        background-image: url(https://cdn-source.adlinktech.com/WebUpd/en/Upload/robotics/sensor-fusion-module_bg_m.webp);
    }
    .robotics-lp .sensor-fusion-module article figure.Robot {
        font-size: 2.1vw;
        transform: translateX(1.5em);
    }
    .robotics-lp .sensor-fusion-module .rlp-container {
        padding: 0;
    }
    .robotics-lp .sensor-fusion-module :is(h2, p, small) {
        padding: 0 24px;
    }
    .robotics-lp .CameraEcosystemPartners {
        margin: -30% auto 0;
    }
    .robotics-lp .CameraEcosystemPartners div {
        margin: 0 auto;
        width: calc(100% - 24px);
    }
    .robotics-lp .torso {
        right: 3.7em;
    }
    .robotics-lp .torso .text-content {
        padding-left: 1em;
    }
    .robotics-lp .use-case-slide-text h3 br {
        display: none;
    }
}
@media (max-width: 768px) {
    .robotics-lp ul.capabilities {
        max-width: 400px;
    }
    .robotics-lp ul.capabilities li figure {
        max-width: 100px;
    }
    .robotics-lp ul.capabilities li strong {
        max-width: 150px;
        font-size: 90%;
    }
    .robotics-lp .CameraEcosystemPartners ul {
        flex-wrap: wrap;
        gap: 0;
        max-width: 380px;
    }
    .robotics-lp .CameraEcosystemPartners ul li {
        width: calc(100% / 2);
        text-align: center;
        padding: 1em;
    }
    .robotics-lp .CameraEcosystemPartners ul li img {
        margin: 0 auto;
    }
    .robotics-lp .section-intro, .robotics-lp .use-cases {
        padding: 50px 0;
    }
    .robotics-lp .hero {
        min-height: calc(90vh - 120px);
    }
    .robotics-lp .scrollbar {
        display: inline-flex;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        cursor: grab;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        background: var(--color-blue);
    }
    .robotics-lp .scrollbar::-webkit-scrollbar {
        display: none;
    }
}
@media (min-width: 767px) and (max-width: 1023px) {
    .robotics-lp .hero h1 {
        font-size: 6vw;
    }
}
@media (min-width: 768px) {
    .robotics-lp .hero {
        min-height: inherit;
        height: 39.5vw;
    }
}
@media (min-width: 1025px) {
    .robotics-lp .hero h1 {
        font-size: 400%;
    }
}
/* =========================================================
   Product Slider（CMS 模組，位於 .robotics-lp 之外）
   < 768px 改為橫向滑動卡片列，仿 Apple Store 的 .rf-cards-scroller

   ★ 一組設定共用給頁面上所有 ul.product-slider-module-products-slider，
     不綁 #R... 區塊 id，之後 CMS 新增的模組會自動套用。
     要調整只改下面這兩個變數即可。
   ========================================================= */
ul.product-slider-module-products-slider {
    --ps-gutter: 16px; /* 首尾留白＋卡片間距 */
    --ps-card-w: 44%; /* 卡片寬（600–767px：一次約 2 張） */
}
@media screen and (max-width: 599.98px) {
    ul.product-slider-module-products-slider {
        --ps-card-w: 72%; /* 手機：一次 1 張＋露出下一張 */
    }
}
@media screen and (max-width: 767.98px) {
    ul.product-slider-module-products-slider .product-slider-module-products-list .items-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: stretch;
        /* 首尾留白改用卡片 margin，不用容器 padding／gap：
           Chromium 會把尾端的 gap/padding 算進 scrollWidth，捲到底時右邊會多一塊空白 */
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 0 8px !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-left: var(--ps-gutter);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    ul.product-slider-module-products-slider .product-slider-module-products-list .items-row::-webkit-scrollbar {
        display: none;
    }
    ul.product-slider-module-products-slider .product-slider-module-products-list .items-row article {
        flex: 0 0 var(--ps-card-w) !important;
        width: var(--ps-card-w) !important;
        max-width: var(--ps-card-w) !important;
        padding: 0 !important;
        margin-right: var(--ps-gutter) !important;
/*        scroll-snap-align: start;*/
    }
    ul.product-slider-module-products-slider .product-slider-module-products-list .items-row article:first-child {
        margin-left: var(--ps-gutter) !important;
    }
    /* 只有 1~2 張卡時不需要橫向滑動，維持置中 */
    ul.product-slider-module-products-slider .product-slider-module-products-list .items-row.is-not-scrollable {
        justify-content: center;
    }
    .revamp .adlink-container {
        width: 100%;
    }
    .revamp h2 {
        padding: 0 15px;
    }
    .revamp ul.slider_items_nav {
        margin: 0 auto 15px;
        width: 84%;
    }
    .revamp ul.slider_items_nav li span {
        font-size: 16px;
    }
    .revamp ul.product-slider-module-products-slider:after {
        content: none;
    }
}
/* ===== Camera support modal ===== */
.camera-support-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    background: rgb(0 16 38 / 72%);
    backdrop-filter: blur(0.27778em);
    opacity: 0;
    transition: opacity 220ms ease;
}
.camera-support-overlay[hidden] {
    display: none !important;
}
.camera-support-overlay.is-visible {
    opacity: 1;
}
.camera-support-dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 0;
    width: min(65.55556em, calc(100% - 2.66667em));
    max-width: none;
    max-height: calc(100dvh - 2.66667em);
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #292b38;
    box-shadow: 0 1.33333em 5em #00143359;
    font-size: 1em;
    line-height: normal;
    overflow: hidden;
}
.camera-support-dialog {
    opacity: 0;
    transform: translateY(1.11111em) scale(.98);
    transition: opacity 220ms ease, transform 220ms cubic-bezier(.2, .7, .2, 1);
}
/* Fragment navigation may focus the dialog itself. */
.camera-support-dialog:focus,
.camera-support-dialog:focus-visible {
    outline: none;
}
.camera-support-dialog.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
    .camera-support-dialog, .camera-support-overlay {
        transition: none;
        transform: none;
    }
}
.camera-support-header {
    display: flex;
    justify-content: space-between;
    gap: 1.11111em;
    padding: 0.83333em 1.77778em;
    background: linear-gradient(120deg, #00225e, #0071c1);
    color: #fff;
    flex-shrink: 0;
}
.camera-support-header h3 {
    color: #fff;
    font-size: clamp(1.27778em, 3vw, 1.33333em);
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
}
.camera-support-close {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    place-items: center;
    justify-content: center;
    width: 1.28205em;
    height: 1.28205em;
    padding: 0;
    border: 0.04274em solid #ffffff66;
    border-radius: 50%;
    background: #ffffff14;
    color: #fff;
    cursor: pointer;
    line-height: 1.28205em;
    font-size: 1.3em;
    margin: 0;
}
.camera-support-close:hover {
    background: #ffffff30;
}
.camera-support-table-wrap {
    min-height: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior: contain;
    margin: 1.33333em 1.55556em 0;
    border: 0.05556em solid #ccd6e9;
}
.camera-support-table {
    width: 100%;
    min-width: 70.71429em;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.77778em;
    line-height: 1.6;
}
.camera-support-table th, .camera-support-table td {
    padding: 0.92857em 1em;
    border: 0;
    border-bottom: 0.07143em solid #ccd6e9;
    border-right: 0.07143em solid #ccd6e9;
    vertical-align: middle;
    text-align: center;
}
.camera-support-table thead th {
    background: #edf4fb;
    color: #00225e;
    font-weight: 500;
}
.camera-support-table thead tr:first-child th {
    background: #dcebf9;
    font-weight: 700;
    letter-spacing: .04em;
}
.camera-support-table thead tr:first-child th:last-child, .camera-support-table tr > :nth-child(2), .camera-support-table tr > :nth-child(n+4) {
    text-align: center;
}
.camera-support-table tbody td {
    white-space: nowrap;
}
.camera-support-table tbody td:nth-of-type(1) {
    font-weight: 500;
    overflow-wrap: anywhere;
    max-width: 10.14286em;
}
.camera-support-table tbody tr, .camera-support-table tbody tr:hover {
    background: #fff;
}
.camera-support-table tbody tr:nth-child(even), .camera-support-table tbody tr:nth-child(even):hover {
    background: #f7f9fc;
}
.camera-support-table tr > :last-child {
    border-right: 0;
}
.camera-support-table tbody tr:last-child > * {
    border-bottom: 0;
}
.camera-supported {
    display: inline-grid;
    place-items: center;
    width: 1.73333em;
    height: 1.73333em;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-blue-vivid, #006eff) 10%, transparent);
    color: var(--color-blue-vivid, #006eff);
    font-size: 1.07143em;
    font-weight: 700;
}
.camera-support-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0.88889em 1.55556em 1.22222em;
    flex-shrink: 0;
}
.camera-support-footer small {
    font-size: 0.8em;
    color: #d0343a;
}
.camera-support-close:focus,
.camera-support-close:focus-visible {
    outline: none;
    box-shadow: none;
}
.camera-support-trigger:focus,
.camera-support-trigger:focus-visible {
    outline: none;
    box-shadow: none;
}
.camera-support-table-wrap:focus-visible {
    outline: 0.16667em solid #55bfff;
    outline-offset: 0.16667em;
}
@media (max-width: 37.5em) {
	.camera-support-table th, .camera-support-table td {
    padding: 0.6em 1em;
}
    .camera-support-dialog {
        width: calc(100% - 1.33333em);
        max-height: calc(100dvh - 1.33333em);
    }
    .camera-support-header {
        padding: 1.11111em;
    }
    .camera-support-table-wrap {
        margin: 0.88889em 0.77778em 0;
    }
    .camera-support-footer {
        padding: 0.77778em;
    }
}
@media (min-width: 37.5em) {
    .camera-support-table-wrap {
        overflow-y: auto;
    }
    .camera-support-table thead {
        position: sticky;
        top: 0;
        z-index: 1;
    }
}
