/* Copied from SCG manual inline theme for visual consistency. */
:root {
            --brand-orange: #ef7d22;
            --brand-orange-soft: #fff2e8;
            --brand-teal: #149d97;
            --brand-teal-soft: #e9f8f6;
            --brand-ink: #17394a;
            --brand-line: #d9e8ea;
            --brand-warn: #d94b45;
            --brand-warn-soft: #fff1f0;
            --brand-gold: #d9a441;
        }
        html { scroll-behavior: smooth; }
        body {
            padding-top: 70px;
            background:
                radial-gradient(circle at top right, rgba(20, 157, 151, 0.07), transparent 22%),
                radial-gradient(circle at top left, rgba(239, 125, 34, 0.08), transparent 18%),
                var(--bg-light);
        }
        .manual-top-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1200;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 70px;
            padding: 0 36px;
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid #e1e9ef;
            box-shadow: 0 8px 24px rgba(22, 57, 74, 0.06);
        }
        .manual-top-banner::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: linear-gradient(90deg, #17394a 0%, var(--brand-teal) 55%, var(--brand-orange) 100%);
        }
        .manual-banner-title {
            color: #162536;
            font-size: 1.05rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .manual-banner-tools {
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 0;
        }
        .manual-search {
            position: relative;
            display: flex;
            align-items: center;
            width: min(260px, 28vw);
            min-width: 190px;
        }
        .manual-search::before {
            content: "";
            position: absolute;
            left: 16px;
            width: 13px;
            height: 13px;
            border: 1.8px solid #64748b;
            border-radius: 50%;
            box-sizing: border-box;
        }
        .manual-search::after {
            content: "";
            position: absolute;
            left: 28px;
            width: 7px;
            height: 1.8px;
            background: #64748b;
            border-radius: 999px;
            transform: translate(1px, 7px) rotate(45deg);
        }
        .manual-search input {
            width: 100%;
            height: 40px;
            padding: 0 44px 0 42px;
            border: 1px solid #cbd8e4;
            border-radius: 999px;
            color: #172335;
            background: #fff;
            font-size: 0.95rem;
            outline: none;
            box-shadow: inset 0 1px 2px rgba(22, 57, 74, 0.04);
        }
        .manual-search input:focus {
            border-color: rgba(20, 157, 151, 0.72);
            box-shadow: 0 0 0 3px rgba(20, 157, 151, 0.12);
        }
        .manual-search kbd {
            position: absolute;
            right: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 20px;
            height: 20px;
            border: 1px solid #cad6e2;
            border-radius: 7px;
            color: #64748b;
            background: #fbfdff;
            font: 700 0.72rem/1 "Segoe UI", sans-serif;
        }
        .manual-search-highlight {
            border-radius: 3px;
            background: rgba(255, 214, 76, 0.72);
            color: inherit;
            scroll-margin-top: 92px;
        }
        .manual-search-highlight.is-current {
            background: #ef7d22;
            color: #fff;
            box-shadow: 0 0 0 2px rgba(239, 125, 34, 0.22);
        }
        .sidebar {
            top: 70px;
            height: calc(100vh - 70px);
            background: linear-gradient(180deg, #16384a 0%, #1b4654 100%);
            border-right: 1px solid rgba(255, 255, 255, 0.06);
        }
        .sidebar .eyebrow {
            margin: 0 0 15px;
            color: #90ddd8;
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }
        .sidebar h2 {
            margin-top: 0;
        }
        .sidebar .rev {
            display: inline-block;
            margin-bottom: 18px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(239, 125, 34, 0.16);
            color: #ffd3ad;
            font-size: 0.84rem;
        }
        .sidebar li { margin: 9px 0; }
        .sidebar .toc li > a::before { content: none; }
        .sidebar .toc-sub {
            margin-left: 14px;
            padding-left: 10px;
            border-left: 1px solid rgba(144, 221, 216, 0.22);
        }
        .sidebar .toc-sub a {
            padding-left: 18px;
            font-size: 0.84rem;
            color: #d0dae2;
        }
        .content {
            max-width: 1320px;
            background: linear-gradient(180deg, #ffffff 0%, #fcfefe 100%);
            counter-reset: manual-section;
        }
        .content > section {
            position: relative;
            margin: 0 0 28px;
            padding: 26px 30px 30px;
            background:
                linear-gradient(180deg, rgba(20, 157, 151, 0.02), rgba(255, 255, 255, 0.98) 28%),
                #fff;
            border: 1px solid #e2ecef;
            border-radius: 24px;
            box-shadow: 0 8px 24px rgba(22, 57, 74, 0.045);
            counter-increment: manual-section;
        }
        .content > section::before {
            content: none;
            display: none;
            position: absolute;
            left: 30px;
            right: 30px;
            top: 0;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--brand-teal) 0%, rgba(20, 157, 151, 0.18) 35%, rgba(239, 125, 34, 0.22) 70%, var(--brand-orange) 100%);
        }
        .content > section > h2 {
            display: flex;
            align-items: center;
            gap: 14px;
            margin: 0 0 22px;
            padding: 14px 18px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(20, 157, 151, 0.08), rgba(239, 125, 34, 0.08));
            border: 1px solid #dbe9eb;
            color: var(--brand-ink);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        .content > section > h2::before {
            content: none;
        }
        .content > section:nth-of-type(even) > h2::before {
            content: none;
        }
        h3 {
            display: flex;
            align-items: center;
            gap: 0;
            margin-top: 26px;
            padding: 10px 14px 10px 16px;
            border-left: 4px solid var(--brand-orange);
            border-radius: 14px;
            background: linear-gradient(90deg, rgba(239, 125, 34, 0.08), rgba(255, 255, 255, 0.98));
            box-shadow: inset 0 0 0 1px rgba(239, 125, 34, 0.08);
        }
        h3::before {
            content: none;
            display: none;
        }
        .header-box {
            align-items: center;
            border-bottom: 0;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 28px;
            margin-bottom: 42px;
            padding: 28px 30px 34px 24px;
            background:
                linear-gradient(135deg, rgba(20, 157, 151, 0.08), transparent 44%),
                linear-gradient(225deg, rgba(239, 125, 34, 0.09), transparent 36%),
                #fff;
            border: 1px solid var(--brand-line);
            border-radius: 22px;
            box-shadow: 0 10px 26px rgba(22, 57, 74, 0.07);
            position: relative;
        }
        .language-switch {
            display: inline-flex;
            vertical-align: middle;
            gap: 6px;
            padding: 4px;
            border: 1px solid var(--brand-line);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            box-shadow: 0 8px 20px rgba(22, 57, 74, 0.08);
        }
        .language-switch a {
            min-width: 44px;
            padding: 7px 10px;
            border-radius: 999px;
            color: var(--brand-ink);
            font-size: 0.82rem;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            letter-spacing: 0.04em;
        }
        .language-switch a.active {
            background: #153f62;
            color: #fff;
            box-shadow: 0 6px 14px rgba(21, 63, 98, 0.24);
        }
        .header-text {
            position: relative;
            z-index: 1;
            text-align: left;
            padding-right: 0;
        }
        .title-row {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }
        .title-row .model-title {
            margin-bottom: 0;
        }
        .header-visual-group {
            justify-self: end;
            margin-left: 0;
        }
        .header-box::after {
            content: none;
            display: none;
            position: absolute;
            left: 30px;
            right: 30px;
            bottom: 0;
            height: 5px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--brand-teal) 0%, var(--brand-orange) 100%);
        }
        .hero-note,
        .summary-card,
        .image-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 24px;
            margin: 22px 0;
        }
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
            margin: 24px 0 10px;
        }
        .summary-card strong {
            display: block;
            color: var(--primary-color);
            font-size: 1rem;
            margin-bottom: 8px;
        }
        .meta-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .pill {
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            background: #fafcfd;
            font-size: 0.9rem;
        }
        .category-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 0 0 10px;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(20, 157, 151, 0.1);
            color: var(--brand-teal);
            font-weight: 700;
            letter-spacing: 0.04em;
        }
        .category-label::before {
            content: "";
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background:
                radial-gradient(circle at 50% 50%, #fff 0 18%, transparent 19%),
                radial-gradient(circle at 50% 50%, var(--brand-teal) 0 56%, transparent 57%),
                radial-gradient(circle at 50% 50%, rgba(20, 157, 151, 0.18) 0 100%);
        }
        .model-title {
            display: block;
            margin: 0 0 10px;
            padding: 0;
            text-align: left;
        }
        .model-title::after {
            content: none;
        }
        .table-container {
            overflow-x: auto;
            margin: 22px 0;
            padding-bottom: 10px;
            scrollbar-gutter: stable both-edges;
        }
        .table-container::-webkit-scrollbar {
            height: 12px;
        }
        .table-container::-webkit-scrollbar-track {
            background: #eef5f6;
            border-radius: 999px;
        }
        .table-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, rgba(20, 157, 151, 0.7), rgba(239, 125, 34, 0.7));
            border-radius: 999px;
            border: 2px solid #eef5f6;
        }
        .spec-table-stack {
            margin: 0;
            border-radius: 0;
            border-top: 0;
            box-shadow: none;
        }
        .spec-table-stack table {
            table-layout: auto;
            width: max-content;
            min-width: 100%;
        }
        .spec-table-stack th,
        .spec-table-stack td {
            min-width: 168px;
            white-space: normal;
            word-break: keep-all;
            overflow-wrap: break-word;
            line-height: 1.45;
            vertical-align: top;
            padding: 9px 10px;
        }
        .spec-table-stack th:first-child,
        .spec-table-stack td:first-child {
            min-width: 132px;
        }
        .spec-table-stack th {
            font-size: 0.88rem;
            white-space: nowrap;
            word-break: normal;
            overflow-wrap: normal;
            text-align: center;
        }
        .spec-table-stack td {
            font-size: 0.84rem;
        }
        .spec-table-stack td:first-child,
        .spec-table-stack th:first-child {
            position: sticky;
            left: 0;
            z-index: 2;
            background: #f8fbfc;
            box-shadow: 8px 0 12px rgba(22, 57, 74, 0.05);
        }
        .spec-table-stack th:first-child {
            z-index: 3;
            background: #eef7f7;
        }
        .spec-table-stack tr:nth-child(even) td:first-child {
            background: #f4f9fa;
        }
        .spec-table-stack + .spec-table-stack {
            margin-top: -1px;
        }
        .spec-table-stack.spec-table-stack-first {
            margin-top: 22px;
            border-top: 1px solid #dce9ec;
            border-top-left-radius: 14px;
            border-top-right-radius: 14px;
            overflow-x: auto;
            overflow-y: hidden;
        }
        .spec-table-stack.spec-table-stack-middle {
            overflow-x: auto;
            overflow-y: hidden;
        }
        .spec-table-stack.spec-table-stack-last {
            margin-bottom: 22px;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
            overflow-x: auto;
            overflow-y: hidden;
            box-shadow: 0 4px 14px rgba(22, 57, 74, 0.03);
        }
        .spec-table-stack + .spec-table-stack table thead th {
            border-top: 1px solid #dce9ec;
        }
        .spec-table-stack.spec-table-source-hidden {
            display: none;
        }
        .spec-model-list {
            display: grid;
            gap: 12px;
            margin: 22px 0;
        }
        .spec-model-card {
            background: #fff;
            border: 1px solid #dce9ec;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(22, 57, 74, 0.05);
        }
        .spec-model-card[open] {
            border-color: rgba(20, 157, 151, 0.42);
            box-shadow: 0 8px 22px rgba(22, 57, 74, 0.08);
        }
        .spec-model-summary {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin: 0;
            padding: 16px 20px;
            color: var(--brand-ink);
            cursor: pointer;
            font-size: 1.08rem;
            font-weight: 700;
            background: linear-gradient(90deg, rgba(239, 125, 34, 0.08), rgba(20, 157, 151, 0.05));
            list-style: none;
        }
        .spec-model-summary::-webkit-details-marker {
            display: none;
        }
        .spec-model-summary::after {
            content: "";
            width: 10px;
            height: 10px;
            flex: 0 0 auto;
            border-right: 2px solid var(--brand-teal);
            border-bottom: 2px solid var(--brand-teal);
            transform: rotate(45deg);
            transition: transform 0.18s ease;
        }
        .spec-model-card[open] .spec-model-summary {
            border-bottom: 1px solid #dce9ec;
        }
        .spec-model-card[open] .spec-model-summary::after {
            transform: rotate(225deg);
        }
        .spec-model-card table {
            width: 100%;
            table-layout: fixed;
        }
        .spec-model-card th,
        .spec-model-card td {
            padding: 12px 16px;
            border-top: 1px solid #e4ecef;
            vertical-align: top;
            white-space: normal;
            word-break: keep-all;
            overflow-wrap: anywhere;
            line-height: 1.55;
        }
        .spec-model-card tr:first-child th,
        .spec-model-card tr:first-child td {
            border-top: 0;
        }
        .spec-model-card th {
            width: 220px;
            text-align: left;
            color: #24445b;
            background: #f8fbfc;
            font-size: 0.95rem;
        }
        .spec-model-card td {
            font-size: 0.93rem;
        }
        .feature-list {
            list-style: none;
            margin: 14px 0 10px;
            padding: 0;
        }
        .feature-list li {
            position: relative;
            margin: 10px 0;
            padding: 11px 14px 11px 44px;
            border: 1px solid #e4edef;
            border-radius: 14px;
            background: linear-gradient(90deg, rgba(20, 157, 151, 0.045), rgba(255, 255, 255, 0.96));
            box-shadow: 0 3px 10px rgba(22, 57, 74, 0.025);
        }
        .feature-list li::before {
            content: "";
            position: absolute;
            left: 14px;
            top: 50%;
            width: 11.5px;
            height: 11.5px;
            margin-top: -5.75px;
            border-radius: 50%;
            background:
                radial-gradient(circle at 50% 50%, #fff 0 26%, transparent 27%),
                linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-orange) 100%);
            box-shadow: 0 0 0 3px rgba(20, 157, 151, 0.08);
        }
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
            margin: 20px 0 28px;
            justify-items: center;
        }
        .image-card {
            padding: 16px;
            width: 100%;
        }
        .image-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .image-card > p:first-child {
            margin: 0 0 12px;
            padding: 12px 14px;
            border-radius: 12px;
            background: linear-gradient(90deg, rgba(239, 125, 34, 0.08), rgba(20, 157, 151, 0.05));
            border: 1px solid #ebeff2;
            font-size: 0.96rem;
            line-height: 1.6;
        }
        .image-card > p:first-child strong {
            display: inline-block;
            color: var(--brand-ink);
        }
        .image-card > p:last-child {
            margin: 12px 0 0;
            padding: 10px 12px;
            border-radius: 12px;
            background: #f8fbfc;
            color: #36505e;
            font-size: 0.94rem;
            line-height: 1.55;
            border: 1px dashed #d8e7ea;
        }
        .image-grid > .image-card:only-child {
            max-width: 860px;
        }
        .image-card img.img-interface {
            max-width: 360px;
            margin: 0 auto;
        }
        .connector-layout {
            display: grid;
            grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
            gap: 18px;
            margin: 20px 0 28px;
            align-items: stretch;
        }
        .connector-figure {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 18px;
        }
        .connector-figure img {
            width: 100%;
            height: auto;
            display: block;
        }
        .lut-figure {
            margin: 22px 0 28px;
            text-align: center;
        }
        .lut-figure img {
            width: min(100%, 520px);
            height: auto;
            display: inline-block;
        }
        .diagram-stack {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
            margin: 20px 0 28px;
        }
        .diagram-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 18px;
            width: 100%;
            max-width: 920px;
            margin: 0 auto;
        }
        .diagram-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .diagram-card .caption {
            margin-top: 10px;
            text-align: center;
            color: var(--text-color);
            line-height: 1.45;
        }
        .inline-ui-line {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin: 8px 0;
            line-height: 1.6;
        }
        .inline-ui-line strong {
            font-weight: 700;
        }
        .inline-ui-img {
            display: inline-block;
            height: auto;
            vertical-align: middle;
        }
        .inline-ui-img.tabs {
            max-width: 280px;
        }
        .inline-ui-img.icon {
            max-width: 26px;
        }
        .defect-example {
            display: grid;
            grid-template-columns: 64px minmax(0, 1fr) 180px;
            gap: 8px;
            align-items: start;
            margin: 18px 0 28px;
        }
        .defect-flow-col {
            display: grid;
            grid-template-rows: 136px 40px 40px;
        }
        .defect-flow-step {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
        }
        .defect-flow-step span {
            color: #2f6fb0;
            font-weight: 700;
            font-size: 0.95rem;
        }
        .defect-curve {
            width: 34px;
            height: 34px;
        }
        .defect-arrow-col {
            display: grid;
            grid-template-rows: 96px 20px 20px 40px 40px 40px;
            gap: 0;
        }
        .defect-arrow-spacer,
        .defect-flow-spacer {
            height: 100%;
        }
        .defect-arrow {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 40px;
            color: var(--text-color);
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .defect-arrow::before {
            content: "";
            width: 46px;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 0;
            border-left: 46px solid #5c97d1;
            transform: scaleX(-1);
        }
        .defect-arrow.factory::before {
            border-left-color: #f0bb97;
        }
        .decimation-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0;
            max-width: 1040px;
            margin: 18px auto 24px;
            align-items: center;
        }
        .decimation-card {
            margin: 0;
            padding: 18px 18px 14px;
            border: 0;
            border-radius: 0;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .decimation-card + .decimation-card {
            border-left: 1px solid var(--border-color);
        }
        .decimation-card img {
            width: auto;
            max-width: 100%;
            height: 192px;
            margin: 0 auto;
            object-fit: contain;
        }
        .decimation-card .caption {
            margin: 0;
            color: var(--text-color);
            font-size: 0.92rem;
            font-weight: 700;
            line-height: 1.5;
            text-align: center;
        }
        .decimation-card .caption span {
            display: block;
        }
        .pattern-grid,
        .mode-grid,
        .format-grid {
            display: grid;
            gap: 18px;
            margin: 20px 0 28px;
        }
        .pattern-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .mode-grid {
            grid-template-columns: 1fr;
        }
        .format-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .pattern-card,
        .mode-card,
        .format-card,
        .reverse-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 18px;
        }
        .mode-card {
            max-width: 940px;
            width: 100%;
            margin: 0 auto;
        }
        .pattern-card img,
        .mode-card img,
        .format-card img,
        .reverse-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .pattern-card .caption,
        .mode-card .caption,
        .format-card .caption,
        .reverse-card .caption {
            margin-top: 10px;
            text-align: center;
            color: var(--text-color);
            line-height: 1.45;
        }
        .reverse-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin: 20px 0 28px;
        }
        .reverse-grid.reverse-grid-four {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
        .reverse-card {
            padding: 14px;
        }
        .reverse-card img {
            margin-bottom: 10px;
        }
        .format-card h4,
        .mode-card h4 {
            margin: 0 0 10px;
            color: var(--primary-color);
            font-size: 1rem;
        }
        .format-card p,
        .mode-card p {
            margin: 6px 0;
        }
        .format-card.format-wide {
            grid-column: 1 / -1;
        }
        .content p,
        .content li,
        .content td,
        .content th,
        .content .caption {
            color: #111827;
        }
        .inline-note-title {
            margin: 18px 0 10px;
            font-weight: 800;
            line-height: 1.45;
        }
        .inline-note-title.note,
        .inline-note-title.warning {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            max-width: 100%;
            box-sizing: border-box;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            color: #9f2520;
            box-shadow: none;
        }
        .inline-note-title.note::before,
        .inline-note-title.warning::before {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.12em;
            height: 1.12em;
            flex: 0 0 1.12em;
            border-radius: 50%;
            background: #ffe1df;
            color: #9f2520;
            font-size: 0.76em;
            font-weight: 800;
            line-height: 1;
        }
        .inline-note-title.note::before {
            content: "!";
        }
        .inline-note-title.warning {
            color: #8f2824;
        }
        .inline-note-title.warning::before {
            content: "!";
        }
        .inline-note-callout {
            margin: 18px 0 20px;
            padding: 16px 18px;
            border: 1px solid rgba(217, 75, 69, 0.2);
            border-radius: 8px;
            background: #fff8f7;
            color: #8f2824;
            box-shadow: none;
        }
        .inline-note-callout.note {
            border-color: rgba(217, 75, 69, 0.18);
            background: #fffaf9;
        }
        .inline-note-callout > .inline-note-title.note,
        .inline-note-callout > .inline-note-title.warning {
            margin: 0 0 10px;
            padding: 0;
            border: 0;
            background: transparent;
            box-shadow: none;
        }
        .inline-note-callout p,
        .inline-note-callout li,
        .inline-note-callout td,
        .inline-note-callout th {
            color: #111827;
        }
        .inline-note-callout p {
            margin: 8px 0;
        }
        .inline-note-callout > :last-child {
            margin-bottom: 0;
        }
        .inline-note-callout .feature-list {
            margin: 10px 0;
        }
        .inline-note-callout .feature-list li {
            padding: 0;
            border: 0;
            background: transparent;
            box-shadow: none;
        }
        .inline-note-callout .feature-list li::before {
            content: none;
            display: none;
        }
        #1-5-주의사항 p,
        #1-5-주의사항 li,
        #1-5-주의사항 strong,
        #1-5-주의사항 .caption,
        #1-5-주의사항 .image-card > p:last-child,
        #1-5-주의사항 .image-card > p:first-child {
            color: #111827;
        }
        #1-5-주의사항 .feature-list li,
        #1-5-주의사항 .image-card > p:first-child,
        #1-5-주의사항 .image-card > p:last-child {
            background: linear-gradient(90deg, rgba(255, 247, 246, 0.98), rgba(255, 255, 255, 0.98));
            border-color: rgba(217, 75, 69, 0.12);
        }
        #1-5-주의사항 .feature-list {
            margin: 8px 0;
        }
        #1-5-주의사항 .feature-list li {
            margin: 6px 0;
            padding: 9px 14px;
            border-left: 3px solid rgba(217, 75, 69, 0.58);
            border-radius: 8px;
            box-shadow: none;
            line-height: 1.55;
        }
        #1-5-주의사항 .feature-list li::before {
            content: none;
            display: none;
        }
        .sidebar::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 160px;
            background:
                radial-gradient(circle at top left, rgba(20, 157, 151, 0.2), transparent 45%),
                radial-gradient(circle at top right, rgba(239, 125, 34, 0.18), transparent 42%);
            pointer-events: none;
        }
        .sidebar::-webkit-scrollbar {
            width: 10px;
        }
        .sidebar::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 999px;
            border: 2px solid transparent;
            background-clip: padding-box;
        }
        .sidebar .back-link {
            padding: 8px 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.03);
        }
        .sidebar .back-link:hover {
            color: #fff;
            background: rgba(20, 157, 151, 0.16);
            border-color: rgba(20, 157, 151, 0.3);
        }
        .sidebar .toc > li > a {
            border-left: 3px solid transparent;
            border-radius: 10px;
            padding: 8px 10px;
            transition: all 0.25s ease;
        }
        .sidebar .toc > li > a:hover {
            color: #fff;
            border-left-color: var(--brand-orange);
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(2px);
        }
        .sidebar .toc-sub a {
            border-radius: 8px;
            padding-top: 4px;
            padding-bottom: 4px;
            transition: all 0.25s ease;
        }
        .sidebar .toc-sub a:hover {
            color: #aaf0ea;
            background: rgba(20, 157, 151, 0.08);
            transform: translateX(2px);
        }
        .content {
            border-left: 1px solid rgba(20, 157, 151, 0.06);
        }
        .header-visual-group {
            position: absolute;
            right: 30px;
            top: 10px;
            z-index: 1;
        }
        .goog-te-banner-frame.skiptranslate,
        .goog-te-gadget-icon {
            display: none !important;
        }
        .goog-te-gadget {
            color: transparent !important;
            font-size: 0 !important;
        }
        .goog-te-gadget .goog-te-combo {
            height: 34px;
            padding: 6px 34px 6px 12px;
            border: 1px solid #d8e8ea;
            border-radius: 999px;
            background: #fff;
            color: var(--brand-ink);
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 4px 14px rgba(22, 57, 74, 0.06);
            outline: none;
        }
        body {
            top: 0 !important;
        }
        .header-visual-group::before {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            right: 18px;
            top: 34px;
            background: radial-gradient(circle, rgba(20, 157, 151, 0.12), rgba(20, 157, 151, 0));
            border-radius: 50%;
            pointer-events: none;
        }
        .header-camera-main {
            filter: drop-shadow(0 12px 24px rgba(22, 57, 74, 0.08));
        }
        .meta-strip {
            margin-top: 22px;
        }
        .pill {
            position: relative;
            overflow: hidden;
        }
        .pill::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 4px;
            background: linear-gradient(180deg, var(--brand-teal) 0%, var(--brand-orange) 100%);
        }
        h3 {
            position: relative;
            overflow: hidden;
        }
        h3::after {
            content: "";
            position: absolute;
            inset: 0 0 0 auto;
            width: 84px;
            background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.45));
            pointer-events: none;
        }
        .table-container {
            border: 1px solid #dce9ec;
            border-radius: 14px;
            overflow-x: auto;
            overflow-y: hidden;
            background: #fff;
            box-shadow: 0 4px 14px rgba(22, 57, 74, 0.03);
        }
        table {
            border-collapse: collapse;
            background: #fff;
        }
        th {
            position: relative;
            font-weight: 700;
        }
        th::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(20,157,151,0.05), rgba(239,125,34,0.16), rgba(20,157,151,0.05));
        }
        .image-card,
        .connector-figure,
        .diagram-card,
        .pattern-card,
        .mode-card,
        .format-card,
        .reverse-card {
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
        }
        .image-card:hover,
        .connector-figure:hover,
        .diagram-card:hover,
        .pattern-card:hover,
        .mode-card:hover,
        .format-card:hover,
        .reverse-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(22, 57, 74, 0.07);
            border-color: #cfe4e6;
        }
        .image-card figcaption,
        .diagram-card figcaption,
        .pattern-card .caption,
        .mode-card .caption,
        .format-card .caption,
        .reverse-card .caption {
            font-size: 0.96rem;
            margin-top: 12px;
            padding: 10px 12px;
            border-radius: 12px;
            background: linear-gradient(90deg, rgba(20, 157, 151, 0.045), rgba(255, 255, 255, 0.96));
            border: 1px solid #e6eef0;
            text-align: center;
        }
        .image-grid {
            justify-items: center;
            align-items: stretch;
        }
        .image-grid:has(> .image-card:nth-of-type(2):last-of-type),
        .noise-filter-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 34px;
            padding: 0 12px;
        }
        .image-grid:has(> .image-card:nth-of-type(2):last-of-type) > .image-card,
        .noise-filter-grid > .image-card {
            max-width: 500px;
        }
        .led-status-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 20px 0 28px;
            align-items: start;
        }
        .led-status-card {
            display: grid;
            gap: 12px;
        }
        .led-status-state,
        .led-status-note {
            margin: 0;
            padding: 14px 16px;
            border-radius: 16px;
            border: 1px solid #d7e5ea;
            background: linear-gradient(90deg, rgba(239, 125, 34, 0.06), rgba(20, 157, 151, 0.05));
            box-shadow: 0 6px 18px rgba(22, 57, 74, 0.04);
        }
        .led-status-state strong {
            display: block;
            color: var(--brand-ink);
        }
        .led-status-state strong + strong {
            margin-top: 4px;
        }
        .led-status-figure {
            margin: 0;
            padding: 12px 14px;
            min-height: 170px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 18px;
            box-shadow: 0 10px 24px rgba(22, 57, 74, 0.06);
        }
        .led-status-figure img {
            width: auto;
            height: 150px;
            max-width: 100%;
            object-fit: contain;
            display: block;
        }
        .led-status-note {
            color: #415260;
            line-height: 1.6;
            min-height: 110px;
            display: flex;
            align-items: flex-start;
        }
        .manual-step-list {
            display: grid;
            gap: 24px;
            margin: 20px 0 28px;
        }
        .manual-step-card {
            display: grid;
            gap: 14px;
            padding: 22px;
            border: 1px solid #dce9ec;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(239, 125, 34, 0.05), rgba(20, 157, 151, 0.04) 58%, rgba(255, 255, 255, 0.98));
            box-shadow: 0 10px 24px rgba(22, 57, 74, 0.05);
        }
        .manual-step-title {
            margin: 0;
            color: var(--brand-ink);
            font-size: 1.08rem;
            font-weight: 800;
        }
        .manual-step-path {
            margin: 0;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid #d7e5ea;
            background: rgba(255, 255, 255, 0.92);
            color: #415260;
            line-height: 1.7;
        }
        .manual-step-figure {
            margin: 0;
            padding: 16px;
            border-radius: 18px;
            border: 1px solid var(--border-color);
            background: #fff;
            box-shadow: 0 10px 22px rgba(22, 57, 74, 0.05);
        }
        .manual-step-figure img {
            width: 100%;
            max-width: 860px;
            height: auto;
            display: block;
            margin: 0 auto;
            object-fit: contain;
        }
        .manual-step-caption {
            margin: 12px 0 0;
            text-align: center;
            color: #6d7c87;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .io-circuit-list {
            max-width: 760px;
            margin: 20px auto 28px;
        }
        .io-circuit-list .manual-step-card {
            gap: 16px;
        }
        .io-circuit-list .manual-step-title {
            text-align: center;
        }
        .io-circuit-list .manual-step-figure img {
            max-width: 540px;
        }
        .image-grid > .image-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 920px;
        }
        .image-card img.img-full,
        .diagram-card img,
        .connector-figure img,
        .lut-figure img {
            width: auto;
            max-width: 100%;
            max-height: 420px;
            margin-left: auto;
            margin-right: auto;
            object-fit: contain;
        }
        .image-grid > .image-card:not(:only-child) img.img-full {
            max-height: 260px;
        }
        #preparation .image-card img.img-full {
            height: 128px;
            width: auto;
        }
        .pattern-card img,
        .reverse-card img,
        .mode-card img,
        .format-card img {
            width: 100%;
            object-fit: contain;
        }
        .pattern-card img {
            height: 180px;
        }
        .reverse-card img {
            height: 170px;
        }
        .reverse-grid-four .reverse-card img {
            height: 150px;
        }
        .mode-card img {
            height: 150px;
            margin-top: auto;
        }
        .format-card img {
            height: 46px;
            margin-top: 12px;
        }
        .connector-figure img,
        .lut-figure img {
            max-height: 260px;
        }
        #appearance .image-card img.img-full {
            max-height: 620px;
        }
        #appendix-a .image-card img.img-full,
        #appendix-b .image-card img.img-full {
            max-height: 560px;
        }
        #preparation .image-grid:first-of-type {
            grid-template-columns: repeat(2, minmax(320px, 1fr));
        }
        #preparation .image-grid:first-of-type .image-card img.img-full {
            width: 100%;
            height: auto;
            max-width: 520px;
            max-height: 240px;
        }
        #preparation .image-grid:not(:first-of-type) .image-card img.img-full {
            height: 150px;
        }
        .connector-figure img,
        .lut-figure img {
            max-height: 300px;
        }
        .connector-layout {
            grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
        }
        .connector-figure img {
            width: 240px;
            max-width: 100%;
        }
        .decimation-card img.img-full {
            width: auto;
            height: 210px;
            max-width: 100%;
            max-height: none;
            object-fit: contain;
            object-position: center center;
            display: block;
            margin: 0 auto;
        }
        .reverse-grid.reverse-grid-four {
            grid-template-columns: repeat(2, minmax(260px, 320px));
            justify-content: center;
        }
        .reverse-grid.reverse-grid-four .reverse-card {
            width: 100%;
            max-width: 320px;
        }
        .reverse-grid-four .reverse-card img {
            width: auto;
            height: 230px;
            max-width: 100%;
        }
        .format-card img {
            width: auto;
            height: 72px;
            max-width: 100%;
        }
        .format-card.format-wide img {
            height: 86px;
        }
        .mode-card img {
            width: 100%;
            height: auto;
            max-height: 230px;
        }
        #appearance .image-card img.img-full {
            max-height: 520px;
        }
        #appendix-b .image-card img.img-full {
            max-height: 500px;
        }
        .inline-note-title {
            width: fit-content;
        }
        .decimation-grid,
        .reverse-grid,
        .pattern-grid,
        .format-grid,
        .mode-grid {
            position: relative;
        }
        .decimation-grid::before,
        .reverse-grid::before,
        .pattern-grid::before,
        .format-grid::before,
        .mode-grid::before {
            content: "";
            position: absolute;
            inset: -8px;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(20, 157, 151, 0.03), rgba(239, 125, 34, 0.025));
            z-index: 0;
        }
        .decimation-grid > *,
        .reverse-grid > *,
        .pattern-grid > *,
        .format-grid > *,
        .mode-grid > * {
            position: relative;
            z-index: 1;
        }
        .toc > li > a::before {
            color: #9fe6e0;
        }
        .connector-figure,
        .diagram-card,
        .image-card,
        .pattern-card,
        .mode-card,
        .format-card,
        .reverse-card {
            position: relative;
        }
        .connector-figure::before,
        .diagram-card::before,
        .image-card::before,
        .pattern-card::before,
        .mode-card::before,
        .format-card::before,
        .reverse-card::before {
            content: "";
            position: absolute;
            top: 12px;
            right: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-teal) 100%);
            opacity: 0.75;
        }
        @media screen and (max-width: 1024px) {
            .manual-top-banner {
                padding: 0 18px;
                gap: 14px;
            }
            .manual-banner-title {
                font-size: 0.94rem;
            }
            .manual-banner-tools {
                gap: 10px;
            }
            .manual-search {
                width: min(230px, 34vw);
                min-width: 150px;
            }
            .header-box {
                display: block;
                padding-left: 30px;
            }
            .header-visual-group {
                position: relative;
                right: auto;
                top: auto;
            }
            .sidebar .eyebrow,
            .sidebar .rev,
            .sidebar .back-link span {
                display: none;
            }
            .content > section {
                padding: 22px 20px 24px;
            }
            .content > section::before {
                left: 20px;
                right: 20px;
            }
            .content > section > h2 {
                padding: 12px 14px;
            }
            .content a {
                overflow-wrap: anywhere;
            }
            .spec-model-card table {
                table-layout: auto;
                width: 100%;
                min-width: 0;
            }
            .spec-model-card th,
            .spec-model-card td {
                display: block;
                width: 100%;
                min-width: 0;
                box-sizing: border-box;
            }
            .spec-model-card td {
                border-top: 0;
                overflow-wrap: break-word;
            }
            .decimation-grid {
                grid-template-columns: 1fr;
            }
            .decimation-card + .decimation-card {
                border-left: 0;
                border-top: 1px solid var(--border-color);
            }
            .pattern-grid,
            .format-grid,
            .reverse-grid,
            .reverse-grid.reverse-grid-four,
            .connector-layout,
            .defect-example {
                grid-template-columns: 1fr;
            }
            .defect-flow-col,
            .defect-arrow-col {
                grid-template-rows: auto;
            }
        }
        @media screen and (max-width: 720px) {
            body {
                padding-top: 116px;
            }
            .manual-top-banner {
                align-items: flex-start;
                flex-direction: column;
                height: 116px;
                padding: 14px 16px 16px;
            }
            .manual-banner-tools {
                width: 100%;
                justify-content: space-between;
            }
            .manual-search {
                flex: 1;
                width: auto;
                min-width: 0;
            }
            .language-switch a {
                min-width: 40px;
                padding: 7px 9px;
            }
            .sidebar {
                top: 116px;
                height: calc(100vh - 116px);
            }
        }

/* CL Polarization manual additions */
.language-switch.single a { pointer-events: none; }
.hero-model-name {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 18px 0 0;
    padding: 10px 16px;
    border: 1px solid var(--brand-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--brand-ink);
    font-size: 1.02rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(22, 57, 74, 0.055);
}
.header-box {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
}
.header-visual-group {
    position: relative;
    right: auto;
    top: auto;
    z-index: 1;
    width: 100%;
    max-width: 320px;
}
.header-visual-group::before {
    right: 0;
    top: 42px;
}
.header-logo {
    width: 150px;
    max-width: 100%;
}
.header-camera-main {
    width: 320px;
    max-width: 100%;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin: 20px 0;
}
.contact-card {
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(22, 57, 74, 0.04);
}
.contact-card h3 { margin-top: 0; }
.figure-pair,
.figure-trio,
.figure-quad {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}
.figure-pair { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.figure-trio { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.figure-quad { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.pdf-figure-grid.figure-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pdf-figure-grid.figure-quad { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.figure-card {
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    padding: 16px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(22, 57, 74, 0.04);
}
.figure-card img,
.figure-wide img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.figure-card figcaption,
.figure-wide figcaption {
    margin-top: 12px;
    color: var(--caption-text);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}
.pdf-figure-grid {
    align-items: stretch;
}
.pdf-figure-grid .figure-card {
    margin: 0;
}
.mirror-x {
    transform: scaleX(-1);
}
.image-row td {
    text-align: center;
    vertical-align: middle;
    background: #fff;
}
.image-row img,
.pixel-format-table img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 12px auto 0;
}
.image-row img {
    max-height: 150px;
}
.pixel-format-table th,
.pixel-format-table td {
    vertical-align: top;
}
.pixel-format-table th {
    width: 28%;
}
.pixel-format-table img {
    max-height: 120px;
    object-fit: contain;
}
.figure-wide {
    border: 1px solid var(--brand-line);
    border-radius: 18px;
    padding: 18px;
    background: #fff;
    margin: 24px 0;
    box-shadow: 0 8px 20px rgba(22, 57, 74, 0.04);
}
.parameter-list td:first-child,
.parameter-list th:first-child { white-space: nowrap; }
.spec-model-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
    gap: 18px;
    margin: 22px 0;
}
.spec-model-card {
    border: 1px solid var(--brand-line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(22, 57, 74, 0.04);
}
.spec-model-summary {
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 800;
    color: var(--brand-ink);
    background: linear-gradient(135deg, rgba(20, 157, 151, 0.08), rgba(239, 125, 34, 0.08));
}
.spec-model-card table { min-width: 0; }
.spec-table-source-hidden { display: none; }
@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
    .figure-pair,
    .figure-trio,
    .figure-quad { grid-template-columns: 1fr; }
    .sidebar {
        display: none;
    }
    .content {
        margin-left: 0;
        width: 100%;
        max-width: none;
        padding: 28px 16px 42px;
        box-shadow: none;
    }
    .manual-banner-tools {
        gap: 10px;
        justify-content: flex-start;
    }
    .manual-search {
        flex: 0 0 220px;
        width: 220px;
        max-width: calc(100vw - 150px);
    }
    .header-box {
        padding: 22px 18px 26px;
    }
    .header-box {
        grid-template-columns: 1fr;
    }
    .title-row .model-title,
    .model-title {
        font-size: 1.55rem;
        line-height: 1.16;
        width: 100%;
        max-width: 290px;
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
    }
    .title-row {
        display: block;
        min-width: 0;
        max-width: 100%;
    }
    .title-row .model-title {
        flex: 1 1 100%;
    }
    .model-subtitle {
        font-size: 1.05rem;
    }
    .hero-model-name {
        max-width: 100%;
        border-radius: 16px;
        font-size: 0.95rem;
        line-height: 1.45;
    }
    .header-visual-group {
        justify-self: center;
    }
    .header-logo {
        width: 130px;
    }
    .header-camera-main {
        width: 220px;
    }
    .content > section {
        border-radius: 18px;
        padding: 20px 16px 22px;
    }
    .content > section > h2 {
        font-size: 1.55rem;
    }
}


/* GigE Polarization manual additions */
.figure-label {
    color: var(--brand-ink);
    font-weight: 800;
    text-align: center;
    margin: 24px 0 10px;
}
.pdf-figure {
    break-inside: avoid;
}
.pdf-figure img {
    object-fit: contain;
}
.parameter-table {
    font-size: 0.84rem;
}
.parameter-table th,
.parameter-table td {
    vertical-align: middle;
}
.parameter-table td:nth-child(5) {
    min-width: 300px;
}
.table-container table td,
.table-container table th {
    white-space: normal;
}
.feature-list li,
.inline-note-callout,
.inline-note-callout p,
.inline-note-callout li,
.table-container td,
.table-container th {
    overflow-wrap: anywhere;
    word-break: keep-all;
}
.inline-note-callout.warning {
    border-color: rgba(217, 75, 69, 0.28);
    background: #fff6f5;
}
.inline-note-callout.warning > .inline-note-title.warning {
    color: #8f2824;
}
