:root {
    --dpx-black: #070809;
    --dpx-ink: #0b0d10;
    --dpx-panel: #111419;
    --dpx-panel-raised: #171b21;
    --dpx-white: #f7f5f1;
    --dpx-muted: #aeb1b7;
    --dpx-line: rgba(255, 255, 255, 0.13);
    --dpx-orange: #ff5a00;
    --dpx-orange-soft: #ff7933;
    --dpx-shell-height: 108px;
    --blue: #ff5a00;
    --primary: #ff5a00;
    --secondary: #ff5a00;
}

html.dpx-cinematic-template,
.dpx-cinematic-template body,
.dpx-cinematic-template #page-wrapper,
.dpx-cinematic-template #content-wrapper,
.dpx-cinematic-template #content,
.dpx-cinematic-template main,
.dpx-cinematic-template .page,
.dpx-cinematic-template .content,
.dpx-cinematic-template .container-fluid,
.dpx-cinematic-template .breadcrumb-wrapper {
    background-color: var(--dpx-black);
    color: var(--dpx-white);
}

html.dpx-cinematic-template body.dpx-cinematic-shell #page-wrapper,
html.dpx-cinematic-template body.dpx-cinematic-shell #main-wrapper,
html.dpx-cinematic-template body.dpx-cinematic-shell #content-wrapper,
html.dpx-cinematic-template body.dpx-cinematic-shell #content,
html.dpx-cinematic-template body.dpx-cinematic-shell main {
    background-color: var(--dpx-black) !important;
    color: var(--dpx-white);
}

.dpx-cinematic-template button.btn-hidden-default.btn-hidden,
.dpx-cinematic-template a[href^="view-source:"],
.dpx-cinematic-template img[src^="view-source:"] {
    display: none !important;
}

.dpx-cinematic-template body {
    overflow-x: clip;
    overflow-y: visible;
    font-family: "Segoe UI", Arial, sans-serif;
}

.dpx-cinematic-template #header-top-bar,
.dpx-cinematic-template #jtl-nav-wrapper,
.dpx-cinematic-template #footer {
    display: none !important;
}

.dpx-site-header {
    position: sticky;
    z-index: 1050;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 89, 0, 0.3);
    color: var(--dpx-white);
    background: linear-gradient(180deg, rgba(5, 6, 8, 0.99) 0%, rgba(18, 12, 9, 0.985) 48%, rgba(76, 27, 7, 0.97) 100%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(255, 111, 35, 0.12);
    backdrop-filter: blur(18px) saturate(118%);
}

.dpx-announcement {
    display: flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 6vw, 72px);
    padding: 5px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}

.dpx-header-main {
    display: grid;
    width: min(1580px, calc(100% - 48px));
    min-height: 79px;
    grid-template-columns: minmax(180px, 0.78fr) auto minmax(210px, 0.78fr);
    gap: 34px;
    align-items: center;
    margin: 0 auto;
}

.dpx-brand {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    width: clamp(182px, 15vw, 246px);
    align-items: center;
}

.dpx-brand img,
.dpx-footer-brand img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.dpx-logo-glow {
    position: relative;
    isolation: isolate;
}

.dpx-logo-glow::before {
    position: absolute;
    z-index: 0;
    inset: -8% -7% -5%;
    border-radius: 50%;
    background: radial-gradient(ellipse at 48% 52%, rgba(255, 158, 92, 0.96) 0%, rgba(255, 90, 0, 0.8) 34%, rgba(255, 90, 0, 0.38) 58%, rgba(255, 90, 0, 0) 78%);
    content: "";
    filter: blur(17px) saturate(1.25);
    opacity: 0.88;
    transform: translate3d(0, 1px, 0) scale(0.98);
    animation: dpxLogoShimmer 5.8s ease-in-out infinite both;
    pointer-events: none;
}

.dpx-logo-glow img {
    filter: drop-shadow(0 0 4px rgba(255, 158, 92, 0.58)) drop-shadow(0 0 16px rgba(255, 90, 0, 0.34)) drop-shadow(0 5px 14px rgba(0, 0, 0, 0.32));
}

.dpx-desktop-nav,
.dpx-header-actions {
    display: flex;
    align-items: center;
}

.dpx-desktop-nav {
    justify-content: center;
    gap: clamp(20px, 2.3vw, 38px);
}

.dpx-desktop-nav a,
.dpx-mobile-menu a,
.dpx-icon-command {
    position: relative;
    border: 0;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease-out, transform 180ms ease-out;
}

.dpx-desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    background: var(--dpx-orange);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease-out;
}

.dpx-desktop-nav a[aria-current="page"],
.dpx-mobile-menu a[aria-current="page"] {
    color: var(--dpx-orange-soft);
}

.dpx-desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.dpx-header-actions {
    justify-content: flex-end;
    gap: 22px;
}

.dpx-icon-command {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.dpx-icon-command svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.dpx-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--dpx-line);
    border-radius: 3px;
    color: var(--dpx-white);
    background: rgba(255, 255, 255, 0.025);
}

.dpx-menu-toggle > span:not(.dpx-sr-only) {
    width: 18px;
    height: 1px;
    background: currentColor;
}

.dpx-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dpx-mobile-menu {
    display: none;
    padding: 10px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(8, 9, 11, 0.99) 0%, rgba(18, 12, 9, 0.99) 54%, rgba(58, 21, 7, 0.99) 100%);
}

.dpx-mobile-menu.is-open {
    display: grid;
}

.dpx-mobile-menu a {
    padding: 17px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.dpx-page-host {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: var(--dpx-black);
}

.dpx-cinematic-template:not(.dpx-custom-route) #main-wrapper {
    min-height: 62vh;
}

.dpx-cinematic-template .breadcrumb,
.dpx-cinematic-template .breadcrumb-item,
.dpx-cinematic-template .breadcrumb a,
.dpx-cinematic-template .text-muted,
.dpx-cinematic-template small {
    color: var(--dpx-muted);
}

.dpx-cinematic-template #content h1,
.dpx-cinematic-template #content h2,
.dpx-cinematic-template #content h3,
.dpx-cinematic-template #content h4,
.dpx-cinematic-template .product-title,
.dpx-cinematic-template .productbox-title,
.dpx-cinematic-template .card-title {
    color: var(--dpx-white);
}

.dpx-cinematic-template .card,
.dpx-cinematic-template .box,
.dpx-cinematic-template .panel,
.dpx-cinematic-template .tab-content,
.dpx-cinematic-template .tab-pane,
.dpx-cinematic-template .product-wrapper,
.dpx-cinematic-template .productdetails,
.dpx-cinematic-template .productbox,
.dpx-cinematic-template .productbox-inner,
.dpx-cinematic-template .dropdown-menu,
.dpx-cinematic-template .modal-content {
    border-color: var(--dpx-line);
    background-color: var(--dpx-panel);
    color: var(--dpx-white);
}

.dpx-cinematic-template .form-control,
.dpx-cinematic-template .custom-select,
.dpx-cinematic-template input,
.dpx-cinematic-template textarea,
.dpx-cinematic-template select {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: #0c0e12;
    color: var(--dpx-white);
}

.dpx-cinematic-template .form-control:focus,
.dpx-cinematic-template .custom-select:focus,
.dpx-cinematic-template input:focus,
.dpx-cinematic-template textarea:focus,
.dpx-cinematic-template select:focus {
    border-color: var(--dpx-orange);
    background-color: #0c0e12;
    color: var(--dpx-white);
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.15);
}

html.dpx-cinematic-template body.dpx-cinematic-shell #content form .d-flex.flex-column-reverse > label.col-form-label {
    background: transparent !important;
    color: var(--dpx-white) !important;
    box-shadow: none !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell #content form .d-flex.flex-column-reverse > label.col-form-label::before,
html.dpx-cinematic-template body.dpx-cinematic-shell #content form .d-flex.flex-column-reverse > label.col-form-label::after {
    background: transparent !important;
    box-shadow: none !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell #content form label.col-form-label .optional {
    color: var(--dpx-muted) !important;
}

.dpx-cinematic-template .btn-primary,
.dpx-cinematic-template .badge-primary,
.dpx-cinematic-template .bg-primary,
.dpx-cinematic-template button[type="submit"] {
    border-color: var(--dpx-orange);
    background-color: var(--dpx-orange);
    color: #090a0c;
}

.dpx-cinematic-template .pagination .page-link {
    border-color: var(--dpx-line);
    background: var(--dpx-panel);
    color: var(--dpx-white);
}

.dpx-cinematic-template .pagination .page-item.active .page-link {
    border-color: var(--dpx-orange);
    background: var(--dpx-orange);
    color: #090a0c;
}

/* Native JTL pages share the same single orange accent as the cinematic routes. */
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content a:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content a:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .btn-link:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .btn-link:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .dropdown-item:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .dropdown-item:focus {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox-title a,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox-title {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox-price,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .price {
    color: var(--dpx-orange-soft) !important;
    font-weight: 750;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price.h1,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price.h1 [itemprop="priceSpecification"] {
    color: var(--dpx-orange-soft) !important;
}

/* Normalize legacy blue inline formatting inside imported product descriptions. */
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #tab-description [style*="52, 152, 219"],
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #tab-description [style*="#3498db" i],
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #tab-description font[color="#3498db" i] {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox-title a:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox-title a:focus {
    color: var(--dpx-orange) !important;
}

.dpx-cinematic-template .btn-outline-primary,
.dpx-cinematic-template .btn-outline-secondary,
.dpx-cinematic-template #ed_list,
.dpx-cinematic-template #ed_gallery {
    border-color: rgba(255, 90, 0, 0.78) !important;
    color: var(--dpx-white) !important;
    background-color: var(--dpx-panel) !important;
    box-shadow: none !important;
}

.dpx-cinematic-template .btn-outline-primary:hover,
.dpx-cinematic-template .btn-outline-primary:focus,
.dpx-cinematic-template .btn-outline-primary:not(:disabled):not(.disabled):active,
.dpx-cinematic-template .btn-outline-primary:not(:disabled):not(.disabled).active,
.dpx-cinematic-template .btn-outline-secondary:hover,
.dpx-cinematic-template .btn-outline-secondary:focus,
.dpx-cinematic-template .btn-outline-secondary:not(:disabled):not(.disabled):active,
.dpx-cinematic-template .btn-outline-secondary:not(:disabled):not(.disabled).active,
.dpx-cinematic-template #ed_list:hover,
.dpx-cinematic-template #ed_list:focus,
.dpx-cinematic-template #ed_list.active,
.dpx-cinematic-template #ed_gallery:hover,
.dpx-cinematic-template #ed_gallery:focus,
.dpx-cinematic-template #ed_gallery.active {
    border-color: var(--dpx-orange) !important;
    color: #090a0c !important;
    background-color: var(--dpx-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.14) !important;
}

.dpx-cinematic-template .btn-secondary,
.dpx-cinematic-template .badge-secondary,
.dpx-cinematic-template .bg-secondary,
.dpx-cinematic-template .progress-bar,
.dpx-cinematic-template .dropdown-item.active,
.dpx-cinematic-template .dropdown-item:active,
.dpx-cinematic-template .list-group-item.active,
.dpx-cinematic-template .nav-pills .nav-link.active,
.dpx-cinematic-template .nav-pills .show > .nav-link {
    border-color: var(--dpx-orange) !important;
    background-color: var(--dpx-orange) !important;
    color: #090a0c !important;
}

.dpx-cinematic-template .nav-tabs .nav-link.active,
.dpx-cinematic-template .nav-tabs .nav-item.show .nav-link {
    border-color: transparent transparent var(--dpx-orange) !important;
    color: var(--dpx-white) !important;
}

.dpx-cinematic-template aside .nav-panel > .nav > .active > .nav-link {
    border-bottom-color: var(--dpx-orange) !important;
}

.dpx-cinematic-template .noUi-connect,
.dpx-cinematic-template .noUi-handle,
.dpx-cinematic-template .custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--dpx-orange) !important;
    background-color: var(--dpx-orange) !important;
}

.dpx-cinematic-template .noUi-handle {
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.17), 0 0 18px rgba(255, 90, 0, 0.18) !important;
}

.dpx-cinematic-template .page-link:hover,
.dpx-cinematic-template .page-link:focus {
    border-color: var(--dpx-orange) !important;
    color: var(--dpx-orange-soft) !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.13) !important;
}

.dpx-cinematic-template .text-primary,
.dpx-cinematic-template a.text-primary:hover,
.dpx-cinematic-template a.text-primary:focus {
    color: var(--dpx-orange-soft) !important;
}

.dpx-cinematic-template .border-primary {
    border-color: var(--dpx-orange) !important;
}

.dpx-cinematic-template :focus-visible {
    outline-color: var(--dpx-orange) !important;
}

.dpx-cinematic-template .productbox {
    overflow: hidden;
    border: 1px solid var(--dpx-line);
    border-radius: 5px;
}

.dpx-cinematic-template .productbox-image,
.dpx-cinematic-template .product-image,
.dpx-cinematic-template .product-gallery {
    background: #050607 !important;
}

.dpx-cinematic-template .productbox-images .second-wrapper {
    background: transparent !important;
}

.dpx-cinematic-template .productbox-images img.first {
    opacity: 1 !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) .productbox,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) .productbox-inner,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) .product-wrapper {
    background: #0b0d10 !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) .productbox-inner::before {
    background: #0b0d10 !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) .productbox {
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.24);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
    html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) .productbox:hover {
        border-color: rgba(255, 90, 0, 0.58);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34), 0 0 28px rgba(255, 90, 0, 0.1);
        transform: translateY(-3px);
    }
}

.dpx-cinematic-template .box-categories .snippets-categories-collapse,
.dpx-cinematic-template #sidebox-categories-124 .snippets-categories-collapse {
    border-left: 2px solid rgba(255, 90, 0, 0.72);
    background: #0b0d10 !important;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.dpx-cinematic-template .box-categories .snippets-categories-collapse .nav-link,
.dpx-cinematic-template .box-categories .snippets-categories-collapse a {
    background: transparent !important;
    color: var(--dpx-white) !important;
}

.dpx-cinematic-template .box-categories .snippets-categories-collapse .nav-link:hover,
.dpx-cinematic-template .box-categories .snippets-categories-collapse .nav-link:focus,
.dpx-cinematic-template .box-categories .snippets-categories-collapse a:hover,
.dpx-cinematic-template .box-categories .snippets-categories-collapse a:focus {
    background: rgba(255, 90, 0, 0.1) !important;
    color: var(--dpx-orange-soft) !important;
}

/* Keep every collapsed top-level category readable against the dark sidebar. */
.dpx-cinematic-template .box-categories .nav-panel .nav-link,
.dpx-cinematic-template .box-categories .nav-panel a,
.dpx-cinematic-template #sidebox-categories-124 .nav-panel .nav-link,
.dpx-cinematic-template #sidebox-categories-124 .nav-panel a {
    background-color: transparent !important;
    color: var(--dpx-white) !important;
    opacity: 1 !important;
}

.dpx-cinematic-template .box-categories .nav-panel .nav-link:hover,
.dpx-cinematic-template .box-categories .nav-panel .nav-link:focus,
.dpx-cinematic-template .box-categories .nav-panel a:hover,
.dpx-cinematic-template .box-categories .nav-panel a:focus,
.dpx-cinematic-template #sidebox-categories-124 .nav-panel .nav-link:hover,
.dpx-cinematic-template #sidebox-categories-124 .nav-panel .nav-link:focus,
.dpx-cinematic-template #sidebox-categories-124 .nav-panel a:hover,
.dpx-cinematic-template #sidebox-categories-124 .nav-panel a:focus {
    background-color: rgba(255, 90, 0, 0.08) !important;
    color: var(--dpx-orange-soft) !important;
}

/* Bootstrap Select replaces JTL variation selects with its own light button. */
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select > .dropdown-toggle,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select > .dropdown-toggle.btn-light,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select.show > .dropdown-toggle,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select > .dropdown-toggle:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select > .dropdown-toggle:focus {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background-color: #0c0e12 !important;
    color: var(--dpx-white) !important;
    box-shadow: none !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select > .dropdown-toggle .filter-option,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select > .dropdown-toggle .filter-option-inner,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select > .dropdown-toggle .filter-option-inner-inner {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select > .dropdown-toggle::after {
    border-top-color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select .dropdown-menu,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select .dropdown-menu.inner {
    border-color: rgba(255, 255, 255, 0.16) !important;
    background-color: #111419 !important;
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select .dropdown-item {
    background-color: transparent !important;
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select .dropdown-item:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select .dropdown-item:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select .dropdown-item.active,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .productbox .bootstrap-select .selected > .dropdown-item {
    background-color: rgba(255, 90, 0, 0.14) !important;
    color: var(--dpx-orange-soft) !important;
}

/* Product-detail variation controls use the same dark treatment as product cards. */
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select > .dropdown-toggle,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select > .dropdown-toggle.btn-light,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select.show > .dropdown-toggle,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select > .dropdown-toggle:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select > .dropdown-toggle:focus {
    border-color: rgba(255, 255, 255, 0.24) !important;
    background: #0c0e12 !important;
    color: var(--dpx-white) !important;
    box-shadow: none !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select > .dropdown-toggle .filter-option,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select > .dropdown-toggle .filter-option-inner,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select > .dropdown-toggle .filter-option-inner-inner {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select > .dropdown-toggle::after {
    border-top-color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select .dropdown-menu,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select .dropdown-menu.inner {
    border-color: rgba(255, 255, 255, 0.16) !important;
    background: #111419 !important;
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select .dropdown-item {
    background: transparent !important;
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select .dropdown-item:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select .dropdown-item:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select .dropdown-item.active,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .bootstrap-select .selected > .dropdown-item {
    background: rgba(255, 90, 0, 0.14) !important;
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-buy .choose-variations.alert-info {
    border: 1px solid rgba(255, 90, 0, 0.42) !important;
    background: #0c0e12 !important;
    color: var(--dpx-orange-soft) !important;
    box-shadow: 0 0 24px rgba(255, 90, 0, 0.08) !important;
    font-weight: 700;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-tabs .nav-link,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #product-tabs .nav-link {
    color: rgba(247, 245, 241, 0.68) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-tabs .nav-link:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-tabs .nav-link:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #product-tabs .nav-link:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #product-tabs .nav-link:focus {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-tabs .nav-link.active,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #product-tabs .nav-link.active {
    border-color: transparent transparent var(--dpx-orange) !important;
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #product-tabs .nav-link.active::after {
    border-bottom-color: var(--dpx-orange) !important;
}

/* Keep native JTL shop copy readable on the cinematic dark surfaces. */
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left .box-normal-link,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left .productlist-filter-headline,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left a,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left button,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left .text-truncate,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left .word-break {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left a:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left a:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left button:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left button:focus {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-info .info-essential,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-info .info-essential a,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price-note,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price-note .vat_info,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price-note .shipment,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .question,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .question span,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .text-muted {
    color: var(--dpx-muted) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-info .info-essential strong,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price-note .discount {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-info .info-essential a:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-info .info-essential a:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price-note .shipment:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price-note .shipment:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .question:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .question:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .question:hover span,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .question:focus span {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .product-offer .price-note .text-danger {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .hr-sect {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper a,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper .price_label,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper .base-price {
    color: var(--dpx-muted) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper a:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper a:focus {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper .price,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper .productbox-price,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .recommendations .product-wrapper [itemprop="price"] {
    color: var(--dpx-orange-soft) !important;
}

.dpx-cinematic-template .content-cats-small {
    row-gap: 22px;
}

.dpx-cinematic-template .sub-categories {
    height: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 5px;
    background: #0b0d10;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dpx-cinematic-template .sub-categories > a,
.dpx-cinematic-template .sub-categories a {
    color: var(--dpx-white) !important;
}

.dpx-cinematic-template .subcategories-image {
    display: flex !important;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    background: #050607 !important;
}

.dpx-cinematic-template .subcategories-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #050607;
    opacity: 1;
    transition: opacity 220ms ease, transform 260ms ease;
}

.dpx-cinematic-template .sub-categories.dpx-category-preview-loading .subcategories-image img {
    opacity: 0.7;
}

@media (hover: hover) and (pointer: fine) {
    .dpx-cinematic-template .sub-categories:hover {
        border-color: rgba(255, 90, 0, 0.62);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 90, 0, 0.09);
        transform: translateY(-3px);
    }

    .dpx-cinematic-template .sub-categories:hover .subcategories-image img {
        transform: scale(1.035);
    }
}

@media (max-width: 575.98px) {
    .dpx-cinematic-template .content-cats-small > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .dpx-cinematic-template .sub-categories {
        padding: 9px;
    }

    .dpx-cinematic-template .subcategories-image {
        min-height: 104px;
    }

    .dpx-cinematic-template .subcategories-image img {
        height: 104px;
    }
}

.dpx-site-footer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.6fr);
    gap: clamp(46px, 8vw, 130px);
    padding: clamp(64px, 8vw, 112px) max(24px, calc((100vw - 1460px) / 2));
    border-top: 1px solid rgba(255, 89, 0, 0.24);
    color: var(--dpx-muted);
    background: linear-gradient(180deg, #090a0c 0%, #12100e 44%, #3d1808 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), inset 0 54px 90px rgba(0, 0, 0, 0.16);
}

.dpx-footer-brand {
    max-width: 330px;
}

.dpx-footer-brand img {
    max-width: 260px;
}

.dpx-footer-logo {
    width: min(278px, 100%);
}

@keyframes dpxLogoShimmer {
    0%, 100% { opacity: 0.76; transform: translate3d(-2px, 2px, 0) scale(0.96); }
    19% { opacity: 0.94; transform: translate3d(2px, 0, 0) scale(1.015); }
    27% { opacity: 0.82; transform: translate3d(0, 2px, 0) scale(0.985); }
    54% { opacity: 1; transform: translate3d(-1px, -1px, 0) scale(1.045); }
    67% { opacity: 0.8; transform: translate3d(2px, 2px, 0) scale(0.99); }
    83% { opacity: 0.92; transform: translate3d(0, 0, 0) scale(1.025); }
}

@media (prefers-reduced-motion: reduce) {
    .dpx-logo-glow::before {
        animation: none;
        opacity: 0.88;
        transform: none;
    }
}

.dpx-footer-brand p {
    margin: 24px 0 0;
    font-size: 15px;
    line-height: 1.7;
}

.dpx-footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 72px);
}

.dpx-footer-links div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
}

.dpx-footer-links h2 {
    margin: 0 0 10px;
    color: var(--dpx-white);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.dpx-footer-links a,
.dpx-footer-bottom a {
    color: var(--dpx-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 180ms ease-out, transform 180ms ease-out;
}

.dpx-footer-bottom {
    display: flex;
    grid-column: 1 / -1;
    gap: 18px 28px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.dpx-withdrawal-row {
    display: flex;
    grid-column: 1 / -1;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 90, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dpx-withdrawal-row > div {
    display: grid;
    gap: 4px;
}

.dpx-withdrawal-row strong {
    color: var(--dpx-white);
    font-size: 16px;
}

.dpx-withdrawal-row span {
    color: var(--dpx-muted);
    font-size: 13px;
}

.dpx-withdrawal-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid var(--dpx-orange);
    border-radius: 3px;
    color: #08090a !important;
    background: var(--dpx-orange);
    box-shadow: 0 10px 30px rgba(255, 90, 0, 0.16);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out;
}

.dpx-withdrawal-button:focus-visible {
    outline: 2px solid var(--dpx-white);
    outline-offset: 4px;
}

.dpx-search-dialog {
    width: min(720px, calc(100% - 30px));
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(255, 90, 0, 0.48);
    border-radius: 4px;
    color: var(--dpx-white);
    background: #0d0f12;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
}

.dpx-search-dialog::backdrop {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
}

.dpx-search-dialog label {
    display: block;
    margin: 20px 0;
    color: var(--dpx-white);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.dpx-search-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.dpx-search-field input,
.dpx-search-field button {
    min-height: 56px;
    border-radius: 0;
}

.dpx-search-field input {
    padding: 0 18px;
}

.dpx-search-field button {
    padding: 0 24px;
    border: 1px solid var(--dpx-orange);
    background: var(--dpx-orange);
    color: #08090a;
    font-weight: 900;
    text-transform: uppercase;
}

.dpx-dialog-close {
    float: right;
    border: 0;
    color: var(--dpx-muted);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
    .dpx-desktop-nav a:hover,
    .dpx-icon-command:hover,
    .dpx-footer-links a:hover,
    .dpx-footer-bottom a:hover {
        color: var(--dpx-orange-soft);
    }

    .dpx-desktop-nav a:hover::after {
        transform: scaleX(1);
    }

    .dpx-icon-command:hover {
        transform: translateY(-2px);
    }

    .dpx-footer-links a:hover {
        transform: translateX(3px);
    }

    .dpx-withdrawal-button:hover {
        color: #08090a !important;
        background: var(--dpx-orange-soft);
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(255, 90, 0, 0.3);
    }
}

@media (max-width: 1180px) {
    .dpx-header-main {
        grid-template-columns: minmax(150px, 0.62fr) auto minmax(170px, 0.62fr);
        gap: 20px;
    }

    .dpx-desktop-nav {
        gap: 17px;
    }

    .dpx-desktop-nav a,
    .dpx-icon-command {
        font-size: 12px;
    }

    .dpx-header-actions {
        gap: 14px;
    }
}

@media (max-width: 900px) {
    :root {
        --dpx-shell-height: 114px;
    }

    .dpx-announcement {
        min-height: 35px;
        flex-direction: column;
        gap: 1px;
        padding: 4px 14px;
        font-size: 8px;
        line-height: 1.25;
    }

    .dpx-announcement span:nth-child(2) {
        display: inline;
    }

    .dpx-header-main {
        width: calc(100% - 28px);
        min-height: 68px;
        grid-template-columns: minmax(128px, 1fr) auto;
    }

    .dpx-brand {
        width: clamp(144px, 38vw, 196px);
    }

    .dpx-desktop-nav {
        display: none;
    }

    .dpx-menu-toggle {
        display: flex;
    }

    .dpx-cart-command span {
        display: none;
    }

    .dpx-site-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .dpx-header-actions {
        gap: 10px;
    }

    .dpx-icon-command {
        gap: 5px;
        font-size: 11px;
    }

    .dpx-icon-command svg {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
    }

    .dpx-site-footer {
        gap: 38px;
        padding: 52px 20px;
    }

    .dpx-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 22px;
    }

    .dpx-footer-links div:last-child {
        grid-column: 1 / -1;
    }

    .dpx-withdrawal-row {
        align-items: stretch;
        flex-direction: column;
    }

    .dpx-withdrawal-button {
        width: 100%;
    }

    .dpx-search-field {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .dpx-site-header,
    .dpx-mobile-menu,
    .dpx-search-dialog::backdrop {
        backdrop-filter: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dpx-site-header *,
    .dpx-site-footer * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}


/* HOME EXPERIENCE */

.dpx-home-experience{
  color-scheme: dark;
  --ink: #090a0c;
  --ink-soft: #111317;
  --panel: #17191d;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #f1f0ed;
  --paper-ink: #111216;
  --muted: #a9adb5;
  --red: #ff5000;
  --red-bright: #ff6a1a;
  --cyan: #32c8d7;
  --yellow: #f3c44d;
  --white: #ffffff;
  --display: "Bahnschrift Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --header-height: 112px;
}

.dpx-home-experience, .dpx-home-experience *{
  box-sizing: border-box;
  letter-spacing: 0;
}

.dpx-home-experience{
  scroll-behavior: smooth;
  background: var(--ink);
}

.dpx-home-experience section[id],
.dpx-home-experience fieldset[id]{
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.dpx-home-experience{
  margin: 0;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open .dpx-home-experience{
  overflow: hidden;
}

.dpx-home-experience button,
.dpx-home-experience input{
  font: inherit;
}

.dpx-home-experience button,
.dpx-home-experience a{
  -webkit-tap-highlight-color: transparent;
}

.dpx-home-experience a{
  color: inherit;
  text-decoration: none;
}

.dpx-home-experience img,
.dpx-home-experience video{
  display: block;
  max-width: 100%;
}

.dpx-home-experience .sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dpx-home-experience .skip-link{
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

.dpx-home-experience .skip-link:focus{
  transform: translateY(0);
}

.dpx-home-experience .site-header{
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 12, 0.92);
  backdrop-filter: blur(16px);
}

.dpx-home-experience .announcement{
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .announcement span + span::before{
  content: "/";
  margin-right: 26px;
  opacity: 0.6;
}

.dpx-home-experience .header-main{
  display: grid;
  width: min(1600px, 100%);
  height: 82px;
  margin: 0 auto;
  padding: 0 32px;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.dpx-home-experience .brand{
  display: flex;
  width: 196px;
  height: 48px;
  align-items: center;
}

.dpx-home-experience .brand img{
  width: 100%;
  height: auto;
}

.dpx-home-experience .desktop-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.dpx-home-experience .desktop-nav a,
.dpx-home-experience .icon-command{
  position: relative;
}

.dpx-home-experience .desktop-nav a::after,
.dpx-home-experience .icon-command::after{
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red-bright);
  transition: transform 180ms ease-out;
}

.dpx-home-experience .header-actions{
  display: flex;
  align-items: center;
  gap: 16px;
}

.dpx-home-experience .icon-command,
.dpx-home-experience .menu-toggle{
  min-height: 40px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .menu-toggle{
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
}

.dpx-home-experience .menu-toggle span:not(.sr-only){
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease-out, opacity 140ms ease-out;
}

.dpx-home-experience .menu-toggle span:nth-child(1){
  transform: translate(-50%, -7px);
}

.dpx-home-experience .menu-toggle span:nth-child(2){
  transform: translate(-50%, -1px);
}

.dpx-home-experience .menu-toggle span:nth-child(3){
  transform: translate(-50%, 5px);
}

.dpx-home-experience .menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform: translate(-50%, -1px) rotate(45deg);
}

.dpx-home-experience .menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}

.dpx-home-experience .menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform: translate(-50%, -1px) rotate(-45deg);
}

.dpx-home-experience .mobile-menu{
  display: none;
}

.dpx-home-experience .hero{
  position: relative;
  display: flex;
  min-height: 800px;
  height: 92vh;
  max-height: 1040px;
  padding-top: var(--header-height);
  align-items: center;
  overflow: hidden;
  background: #000;
}

.dpx-home-experience .hero-video,
.dpx-home-experience .hero-shade{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dpx-home-experience .hero-video{
  object-fit: cover;
  object-position: center;
}

.dpx-home-experience .hero-shade{
  background: rgba(0, 0, 0, 0.54);
  box-shadow: inset 0 -190px 140px rgba(0, 0, 0, 0.72), inset 450px 0 220px rgba(0, 0, 0, 0.42);
}

.dpx-home-experience .hero-content{
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding-bottom: 76px;
}

.dpx-home-experience .eyebrow{
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .accent-red{
  color: var(--red-bright);
}

.dpx-home-experience .accent-cyan{
  color: var(--cyan);
}

.dpx-home-experience h1,
.dpx-home-experience h2,
.dpx-home-experience h3,
.dpx-home-experience p{
  margin-top: 0;
}

.dpx-home-experience h1,
.dpx-home-experience h2,
.dpx-home-experience h3{
  color: var(--white);
  font-family: var(--display);
  line-height: 0.94;
  text-transform: uppercase;
}

.dpx-home-experience .section-paper h1,
.dpx-home-experience .section-paper h2,
.dpx-home-experience .section-paper h3{
  color: var(--paper-ink);
}

.dpx-home-experience h1{
  max-width: 820px;
  margin-bottom: 28px;
  font-size: 112px;
  font-weight: 900;
}

.dpx-home-experience h2{
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 900;
}

.dpx-home-experience h3{
  font-size: 34px;
  font-weight: 850;
}

.dpx-home-experience .hero-copy{
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.dpx-home-experience .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dpx-home-experience .button{
  position: relative;
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out;
}

.dpx-home-experience .button-primary{
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(255, 80, 0, 0.2);
}

.dpx-home-experience .button-secondary{
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(9, 10, 12, 0.62);
  color: var(--white);
}

.dpx-home-experience .video-toggle{
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 82px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(9, 10, 12, 0.7);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.dpx-home-experience .hero-rail{
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 58px;
  padding: 0 4vw;
  border-top: 1px solid var(--line);
  background: rgba(9, 10, 12, 0.88);
  grid-template-columns: repeat(4, 1fr);
}

.dpx-home-experience .hero-rail span{
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .hero-rail span:first-child{
  border-left: 1px solid var(--line);
}

.dpx-home-experience .section-dark,
.dpx-home-experience .section-paper{
  padding: 120px max(32px, calc((100% - 1500px) / 2));
}

.dpx-home-experience .section-dark{
  background: var(--ink);
  color: var(--white);
}

.dpx-home-experience .section-paper{
  background: var(--paper);
  color: var(--paper-ink);
}

.dpx-home-experience .finder-section,
.dpx-home-experience .calculator-section{
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: 80px;
  align-items: start;
}

.dpx-home-experience .section-intro{
  max-width: 650px;
}

.dpx-home-experience .section-intro p:not(.eyebrow),
.dpx-home-experience .section-heading-row > p{
  color: var(--muted);
  font-size: 18px;
}

.dpx-home-experience .finder-tool,
.dpx-home-experience .calculator-tool{
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink-soft);
}

.dpx-home-experience .finder-step + .finder-step{
  margin-top: 28px;
}

.dpx-home-experience .step-label,
.dpx-home-experience .product-type{
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .segmented{
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.dpx-home-experience .segmented-compact{
  grid-template-columns: repeat(3, 1fr);
}

.dpx-home-experience .segmented button{
  min-height: 58px;
  padding: 10px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}

.dpx-home-experience .segmented button.is-active{
  background: var(--red);
  color: var(--white);
}

.dpx-home-experience .finder-result{
  display: grid;
  min-height: 220px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  transition: opacity 150ms ease-out, transform 150ms ease-out;
}

.dpx-home-experience .finder-result.is-changing{
  opacity: 0.35;
  transform: translateY(6px);
}

.dpx-home-experience .finder-result-media{
  min-height: 220px;
  overflow: hidden;
  background: #20242a;
}

.dpx-home-experience .finder-result-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dpx-home-experience .finder-result-copy{
  padding: 30px;
  align-self: center;
}

.dpx-home-experience .finder-result-copy h3{
  margin-bottom: 14px;
}

.dpx-home-experience .finder-result-copy > p:not(.step-label){
  color: var(--muted);
}

.dpx-home-experience .text-link,
.dpx-home-experience .product-column a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .section-heading-row{
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 48px;
  align-items: end;
}

.dpx-home-experience .section-heading-row h2{
  margin-bottom: 0;
}

.dpx-home-experience .world-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dpx-home-experience .world-card{
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 4px;
  background: #17191d;
  color: var(--white);
}

.dpx-home-experience .world-card-wide{
  grid-column: 1 / -1;
  min-height: 560px;
}

.dpx-home-experience .world-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease-out;
}

.dpx-home-experience .world-card::after{
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 -170px 120px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.dpx-home-experience .world-index{
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.dpx-home-experience .world-copy{
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.dpx-home-experience .world-copy span{
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.dpx-home-experience .world-copy h3{
  margin: 6px 0 0;
  font-size: 52px;
}

.dpx-home-experience .material-band{
  display: grid;
  min-height: 220px;
  padding: 30px 3vw;
  background: var(--red);
  color: var(--white);
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.dpx-home-experience .material-word{
  font-family: var(--display);
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.dpx-home-experience .material-word-accent{
  color: var(--yellow);
}

.dpx-home-experience .dark-link{
  justify-self: end;
}

.dpx-home-experience .product-compare{
  display: grid;
  border-top: 1px solid rgba(17, 18, 22, 0.2);
  border-left: 1px solid rgba(17, 18, 22, 0.2);
  grid-template-columns: repeat(4, 1fr);
}

.dpx-home-experience .product-column{
  min-width: 0;
  padding: 20px;
  border-right: 1px solid rgba(17, 18, 22, 0.2);
  border-bottom: 1px solid rgba(17, 18, 22, 0.2);
}

.dpx-home-experience .product-column img{
  width: 100%;
  height: 150px;
  margin-bottom: 28px;
  object-fit: cover;
  border-radius: 3px;
}

.dpx-home-experience .product-column h3{
  min-height: 64px;
  margin-bottom: 14px;
  font-size: 34px;
}

.dpx-home-experience .product-column > p:not(.product-type){
  min-height: 78px;
  color: #52555b;
}

.dpx-home-experience .transformation-section{
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #050607;
}

.dpx-home-experience .transformation-section > img,
.dpx-home-experience .transformation-shade{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dpx-home-experience .transformation-section > img{
  object-fit: cover;
}

.dpx-home-experience .transformation-shade{
  background: rgba(0, 0, 0, 0.48);
  box-shadow: inset 0 -220px 180px rgba(0, 0, 0, 0.76);
}

.dpx-home-experience .transformation-copy{
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100% - 1500px) / 2));
  bottom: 74px;
  left: max(32px, calc((100% - 1500px) / 2));
  max-width: 920px;
}

.dpx-home-experience .transformation-copy h2{
  font-size: 76px;
}

.dpx-home-experience .field-grid{
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dpx-home-experience .field-grid label span{
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.dpx-home-experience .field-grid input{
  width: 100%;
  height: 62px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: #0d0f12;
  color: var(--white);
  font-family: var(--display);
  font-size: 28px;
}

.dpx-home-experience .field-grid input:focus{
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(50, 200, 215, 0.14);
}

.dpx-home-experience .calculator-output{
  display: grid;
  min-height: 185px;
  margin-bottom: 24px;
  padding: 24px;
  align-content: center;
  border-left: 3px solid var(--cyan);
  background: #0d0f12;
}

.dpx-home-experience .calculator-output span,
.dpx-home-experience .calculator-output small{
  color: var(--muted);
}

.dpx-home-experience .calculator-output strong{
  margin: 4px 0 8px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
}

.dpx-home-experience .faq-section{
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
}

.dpx-home-experience .faq-list{
  border-top: 1px solid rgba(17, 18, 22, 0.24);
}

.dpx-home-experience .faq-list details{
  border-bottom: 1px solid rgba(17, 18, 22, 0.24);
}

.dpx-home-experience .faq-list summary{
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .faq-list summary::-webkit-details-marker{
  display: none;
}

.dpx-home-experience .faq-list summary::after{
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  transform: translateY(-50%);
  color: var(--red);
  font-size: 30px;
}

.dpx-home-experience .faq-list details[open] summary::after{
  content: "-";
}

.dpx-home-experience .faq-list details p{
  max-width: 720px;
  padding: 0 48px 26px 0;
  color: #52555b;
}

.dpx-home-experience .final-cta{
  min-height: 620px;
  padding: 100px 32px;
  background: var(--red);
  color: var(--white);
}

.dpx-home-experience .final-cta-inner{
  display: flex;
  width: min(1500px, 100%);
  min-height: 420px;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.dpx-home-experience .final-cta h2{
  max-width: 1050px;
  font-size: 100px;
}

.dpx-home-experience .final-cta .button-primary{
  background: var(--ink);
  box-shadow: none;
}

.dpx-home-experience .site-footer{
  display: grid;
  padding: 70px max(32px, calc((100% - 1500px) / 2)) 28px;
  background: #0d0e11;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.dpx-home-experience .footer-brand img{
  width: 240px;
  height: auto;
  margin-bottom: 20px;
}

.dpx-home-experience .footer-brand p,
.dpx-home-experience .footer-note{
  color: var(--muted);
}

.dpx-home-experience .footer-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dpx-home-experience .footer-links h2{
  margin-bottom: 14px;
  font-size: 18px;
}

.dpx-home-experience .footer-links a{
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.dpx-home-experience .footer-note{
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.dpx-home-experience .search-dialog{
  width: min(920px, calc(100% - 32px));
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0e11;
  color: var(--white);
}

.dpx-home-experience .search-dialog::backdrop{
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.dpx-home-experience .dialog-close{
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}

.dpx-home-experience .search-dialog label{
  display: block;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dpx-home-experience .search-field{
  display: grid;
  grid-template-columns: 1fr auto;
}

.dpx-home-experience .search-field input,
.dpx-home-experience .search-field button{
  height: 62px;
  border: 1px solid var(--line);
}

.dpx-home-experience .search-field input{
  min-width: 0;
  padding: 0 18px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  outline: none;
  background: #15181c;
  color: var(--white);
}

.dpx-home-experience .search-field button{
  padding: 0 24px;
  border-color: var(--red);
  border-radius: 0 4px 4px 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 850;
  text-transform: uppercase;
}

.js-motion .dpx-home-experience .reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease-out, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-motion .dpx-home-experience .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine){
  .dpx-home-experience .desktop-nav a:hover::after,
.dpx-home-experience .icon-command:hover::after{
    transform: scaleX(1);
  }

  .dpx-home-experience .button:hover{
    transform: translateY(-3px);
  }

  .dpx-home-experience .button-primary:hover{
    background: var(--red-bright);
    box-shadow: 0 16px 42px rgba(255, 80, 0, 0.38);
  }

  .dpx-home-experience .button-secondary:hover{
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.08);
  }

  .dpx-home-experience .world-card:hover img{
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
  }

  .dpx-home-experience .product-column{
    transition: background-color 180ms ease-out, transform 180ms ease-out;
  }

  .dpx-home-experience .product-column:hover{
    z-index: 1;
    transform: translateY(-5px);
    background: #ffffff;
  }

  .dpx-home-experience .footer-links a:hover{
    color: var(--white);
  }
}

@media (max-width: 1180px){
  .dpx-home-experience .header-main{
    grid-template-columns: 190px 1fr auto;
  }

  .dpx-home-experience .desktop-nav{
    gap: 15px;
    font-size: 13px;
  }

  .dpx-home-experience h1{
    font-size: 88px;
  }

  .dpx-home-experience h2{
    font-size: 56px;
  }

  .dpx-home-experience .finder-section,
.dpx-home-experience .calculator-section,
.dpx-home-experience .faq-section{
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .dpx-home-experience .product-compare{
    grid-template-columns: repeat(2, 1fr);
  }

  .dpx-home-experience .material-word{
    font-size: 62px;
  }
}

@media (max-width: 860px){
  .dpx-home-experience{
    --header-height: 98px;
  }

  .dpx-home-experience .announcement{
    height: 26px;
    gap: 12px;
    font-size: 10px;
  }

  .dpx-home-experience .announcement span + span::before{
    margin-right: 12px;
  }

  .dpx-home-experience .header-main{
    height: 72px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }

  .dpx-home-experience .brand{
    width: 170px;
  }

  .dpx-home-experience .desktop-nav,
.dpx-home-experience .desktop-only{
    display: none;
  }

  .dpx-home-experience .menu-toggle{
    display: block;
  }

  .dpx-home-experience .mobile-menu{
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    height: calc(100dvh - var(--header-height));
    padding: 26px 20px 44px;
    align-content: start;
    overflow-y: auto;
    transform: translateX(100%);
    background: #0b0d10;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dpx-home-experience .mobile-menu.is-open{
    transform: translateX(0);
  }

  .dpx-home-experience .mobile-menu a{
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 24px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .dpx-home-experience .hero{
    min-height: 720px;
    height: 86vh;
    max-height: 860px;
  }

  .dpx-home-experience .hero-video{
    object-position: 57% center;
  }

  .dpx-home-experience .hero-shade{
    background: rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 -190px 130px rgba(0, 0, 0, 0.78);
  }

  .dpx-home-experience .hero-content{
    width: calc(100% - 36px);
    padding-bottom: 70px;
  }

  .dpx-home-experience h1{
    font-size: 64px;
  }

  .dpx-home-experience h2{
    font-size: 46px;
  }

  .dpx-home-experience .hero-copy{
    max-width: 540px;
    font-size: 17px;
  }

  .dpx-home-experience .video-toggle{
    right: 18px;
    bottom: 72px;
  }

  .dpx-home-experience .section-dark,
.dpx-home-experience .section-paper{
    padding: 82px 20px;
  }

  .dpx-home-experience .section-heading-row{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dpx-home-experience .dark-link{
    justify-self: start;
  }

  .dpx-home-experience .world-card,
.dpx-home-experience .world-card-wide{
    min-height: 400px;
  }

  .dpx-home-experience .material-band{
    min-height: 160px;
  }

  .dpx-home-experience .material-word{
    font-size: 46px;
  }

  .dpx-home-experience .transformation-section{
    min-height: 650px;
  }

  .dpx-home-experience .transformation-copy h2{
    font-size: 54px;
  }

  .dpx-home-experience .final-cta h2{
    font-size: 66px;
  }

  .dpx-home-experience .site-footer{
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 620px){
  .dpx-home-experience .announcement span:nth-child(2){
    display: none;
  }

  .dpx-home-experience .announcement span:nth-child(3)::before{
    margin-right: 12px;
  }

  .dpx-home-experience .brand{
    width: 146px;
  }

  .dpx-home-experience .icon-command{
    font-size: 12px;
  }

  .dpx-home-experience .hero{
    min-height: 700px;
    height: 88svh;
  }

  .dpx-home-experience .hero-video{
    object-position: 64% center;
  }

  .dpx-home-experience h1{
    font-size: 50px;
  }

  .dpx-home-experience h2{
    font-size: 40px;
  }

  .dpx-home-experience h3{
    font-size: 28px;
  }

  .dpx-home-experience .hero-copy{
    max-width: 360px;
    font-size: 16px;
  }

  .dpx-home-experience .hero-actions{
    width: 100%;
  }

  .dpx-home-experience .hero-actions .button{
    flex: 1 1 100%;
  }

  .dpx-home-experience .video-toggle{
    display: none;
  }

  .dpx-home-experience .hero-rail{
    padding: 0;
  }

  .dpx-home-experience .hero-rail span{
    font-size: 11px;
  }

  .dpx-home-experience .hero-rail span:first-child{
    padding-left: 42px;
  }

  .dpx-home-experience .finder-tool,
.dpx-home-experience .calculator-tool{
    padding: 18px;
  }

  .dpx-home-experience .segmented,
.dpx-home-experience .segmented-compact{
    grid-template-columns: repeat(2, 1fr);
  }

  .dpx-home-experience .finder-result{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .finder-result-media{
    min-height: 150px;
  }

  .dpx-home-experience .finder-result-copy{
    padding: 22px;
  }

  .dpx-home-experience .world-grid{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .world-card-wide{
    grid-column: auto;
  }

  .dpx-home-experience .world-card,
.dpx-home-experience .world-card-wide{
    min-height: 360px;
  }

  .dpx-home-experience .world-copy h3{
    font-size: 40px;
  }

  .dpx-home-experience .material-band{
    display: block;
    padding: 28px 20px;
  }

  .dpx-home-experience .material-word{
    margin: 8px 0;
    font-size: 54px;
    text-align: left;
  }

  .dpx-home-experience .product-compare{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .product-column h3,
.dpx-home-experience .product-column > p:not(.product-type){
    min-height: 0;
  }

  .dpx-home-experience .transformation-copy{
    right: 20px;
    bottom: 44px;
    left: 20px;
  }

  .dpx-home-experience .transformation-copy h2{
    font-size: 42px;
  }

  .dpx-home-experience .field-grid{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .calculator-output strong{
    font-size: 54px;
  }

  .dpx-home-experience .faq-list summary{
    font-size: 20px;
  }

  .dpx-home-experience .final-cta{
    min-height: 540px;
    padding: 60px 20px;
  }

  .dpx-home-experience .final-cta-inner{
    min-height: 420px;
  }

  .dpx-home-experience .final-cta h2{
    font-size: 52px;
  }

  .dpx-home-experience .footer-links{
    grid-template-columns: 1fr 1fr;
  }

  .dpx-home-experience .search-dialog{
    padding: 58px 20px 24px;
  }

  .dpx-home-experience .search-dialog label{
    font-size: 38px;
  }

  .dpx-home-experience .search-field{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .search-field input{
    border-right: 1px solid var(--line);
    border-radius: 4px 4px 0 0;
  }

  .dpx-home-experience .search-field button{
    border-radius: 0 0 4px 4px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience{
    scroll-behavior: auto;
  }

  .dpx-home-experience, .dpx-home-experience *,
.dpx-home-experience *::before,
.dpx-home-experience *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-motion .dpx-home-experience .reveal{
    opacity: 1;
    transform: none;
  }
}

.dpx-home-experience .category-index{
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.dpx-home-experience .category-index-heading{
  display: flex;
  margin-bottom: 22px;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.dpx-home-experience .category-index-heading h3,
.dpx-home-experience .category-index-heading p{
  margin: 0;
}

.dpx-home-experience .category-index-heading h3{
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dpx-home-experience .category-index-heading p{
  max-width: 460px;
  color: var(--muted);
  font-size: 15px;
  text-align: right;
}

.dpx-home-experience .category-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dpx-home-experience .category-tile{
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 116px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface-raised);
  color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.dpx-home-experience .category-tile::before{
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  z-index: -1;
}

.dpx-home-experience .category-tile span{
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .category-tile strong{
  font-family: var(--display);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.04;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-transform: uppercase;
}

.dpx-home-experience .category-tile:hover,
.dpx-home-experience .category-tile:focus-visible{
  border-color: rgba(255, 80, 0, 0.72);
  background: #191c21;
  box-shadow: 0 12px 30px rgba(255, 80, 0, 0.14);
  color: var(--white);
  transform: translateY(-4px);
}

.dpx-home-experience .category-tile:hover::before,
.dpx-home-experience .category-tile:focus-visible::before{
  transform: scaleX(1);
}

.dpx-home-experience .category-tile:active{
  transform: translateY(-1px) scale(0.99);
}

@media (max-width: 1200px){
  .dpx-home-experience .category-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px){
  .dpx-home-experience .category-index{
    margin-top: 42px;
  }

  .dpx-home-experience .category-index-heading{
    align-items: start;
    flex-direction: column;
  }

  .dpx-home-experience .category-index-heading p{
    text-align: left;
  }

  .dpx-home-experience .category-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .dpx-home-experience .category-index-heading h3{
    font-size: 30px;
  }

  .dpx-home-experience .category-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .dpx-home-experience .category-tile{
    min-height: 104px;
    padding: 12px;
    gap: 14px;
  }

  .dpx-home-experience .category-tile strong{
    font-size: 15px;
    line-height: 1.08;
  }

  .dpx-home-experience .category-tile span{
    font-size: 9px;
  }
}

@media (hover: none){
  .dpx-home-experience .category-tile::before{
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience .category-tile,
.dpx-home-experience .category-tile::before{
    transition: none;
  }
}

.dpx-home-experience /* Orange-on-black contrast treatment inspired by the supplied reference. */
.announcement,
.dpx-home-experience .button-primary,
.dpx-home-experience .segmented button.is-active,
.dpx-home-experience .material-band,
.dpx-home-experience .search-field button,
.dpx-home-experience .cockpit-tabs button.is-active,
.dpx-home-experience .gallery-filters button.is-active,
.dpx-home-experience .finish-surface-options button.is-active,
.dpx-home-experience .timer-button{
  color: var(--ink);
}

.dpx-home-experience .kit-item:has(input:checked) .kit-check::after{
  color: var(--ink);
}

.dpx-home-experience /* Project Experience 2026: continuous dark system */
:root{
  --ink-deep: #050607;
  --surface: #0d1014;
  --surface-raised: #14171c;
  --line-strong: rgba(255, 255, 255, 0.24);
}

.dpx-home-experience main{
  background: var(--ink);
}

.dpx-home-experience main > section:not(.hero):not(.material-band):not(.transformation-section){
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dpx-home-experience .section-dark,
.dpx-home-experience .section-deep,
.dpx-home-experience .section-paper{
  padding: 120px max(32px, calc((100% - 1500px) / 2));
  color: var(--white);
}

.dpx-home-experience .section-dark{
  background: var(--ink);
}

.dpx-home-experience .section-deep,
.dpx-home-experience .section-paper{
  background: var(--surface);
  color: var(--white);
}

.dpx-home-experience .section-paper h1,
.dpx-home-experience .section-paper h2,
.dpx-home-experience .section-paper h3{
  color: var(--white);
}

.dpx-home-experience .section-heading-row > p,
.dpx-home-experience .section-intro p:not(.eyebrow){
  color: var(--muted);
}

.dpx-home-experience fieldset{
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.dpx-home-experience legend,
.dpx-home-experience .companion-controls label > span{
  display: block;
  width: 100%;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience select,
.dpx-home-experience .dimension-grid input,
.dpx-home-experience .companion-controls input,
.dpx-home-experience .companion-controls select{
  width: 100%;
  height: 58px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: #0b0d10;
  color: var(--white);
}

.dpx-home-experience select:focus,
.dpx-home-experience .dimension-grid input:focus,
.dpx-home-experience .companion-controls input:focus,
.dpx-home-experience .companion-controls select:focus{
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.15);
}

.dpx-home-experience .field-note,
.dpx-home-experience .technical-note,
.dpx-home-experience .data-source-note{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.dpx-home-experience .passport-progress{
  display: grid;
  margin: 0 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.dpx-home-experience .passport-progress span{
  position: relative;
  display: flex;
  min-height: 58px;
  padding: 0 20px;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .passport-progress span:last-child{
  border-right: 0;
}

.dpx-home-experience .passport-progress span::before{
  width: 0;
  height: 2px;
  margin-right: 0;
  content: "";
  background: var(--red);
  transition: width 220ms ease-out, margin-right 220ms ease-out;
}

.dpx-home-experience .passport-progress span.is-current{
  color: var(--white);
}

.dpx-home-experience .passport-progress span.is-current::before{
  width: 22px;
  margin-right: 10px;
}

.dpx-home-experience .passport-layout{
  display: grid;
  grid-template-columns: minmax(520px, 0.94fr) minmax(520px, 1.06fr);
  gap: 52px;
  align-items: start;
}

.dpx-home-experience .passport-controls{
  border-top: 1px solid var(--line);
}

.dpx-home-experience .passport-step{
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.dpx-home-experience .segmented-dual{
  grid-template-columns: repeat(2, 1fr);
}

.dpx-home-experience .segmented button,
.dpx-home-experience .finish-surface-options button,
.dpx-home-experience .gallery-filters button,
.dpx-home-experience .cockpit-tabs button{
  transition: background-color 160ms ease-out, color 160ms ease-out, border-color 160ms ease-out, transform 160ms ease-out;
}

.dpx-home-experience .dimension-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dpx-home-experience .dimension-grid label > span{
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.dpx-home-experience .dimension-grid input{
  font-family: var(--display);
  font-size: 24px;
}

.dpx-home-experience .dimension-step .field-note{
  margin: 14px 0 0;
}

.dpx-home-experience .passport-result{
  position: sticky;
  top: calc(var(--header-height) + 22px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-raised);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

.dpx-home-experience .passport-result.is-changing,
.dpx-home-experience .cockpit-panel.is-changing{
  opacity: 0.45;
  transform: translateY(5px);
}

.dpx-home-experience .passport-result-media{
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #090b0e;
}

.dpx-home-experience .passport-result-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dpx-home-experience .match-chip{
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(5, 6, 7, 0.74);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.dpx-home-experience .passport-result-copy{
  padding: 32px;
}

.dpx-home-experience .passport-result-copy h3{
  margin-bottom: 12px;
  font-size: 48px;
}

.dpx-home-experience .passport-result-copy > p:not(.step-label):not(.technical-note){
  color: var(--muted);
  font-size: 17px;
}

.dpx-home-experience .decision-stats{
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-home-experience .decision-stats div{
  min-width: 0;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dpx-home-experience .decision-stats dt,
.dpx-home-experience .cockpit-specs dt,
.dpx-home-experience .passport-dialog dt{
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.dpx-home-experience .decision-stats dd,
.dpx-home-experience .cockpit-specs dd,
.dpx-home-experience .passport-dialog dd{
  margin: 4px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.dpx-home-experience .result-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.dpx-home-experience .technical-note{
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--red);
}

.dpx-home-experience .project-kit{
  margin-top: 100px;
  padding: 54px 0 0;
  border-top: 1px solid var(--line-strong);
}

.dpx-home-experience .kit-heading,
.dpx-home-experience .kit-footer{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.dpx-home-experience .kit-heading h3{
  margin: 0;
  font-size: 48px;
}

.dpx-home-experience .kit-meter{
  width: min(300px, 34vw);
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.dpx-home-experience .kit-meter-track{
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.dpx-home-experience .kit-meter-track span{
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transition: width 240ms ease-out;
}

.dpx-home-experience .kit-list{
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.dpx-home-experience .kit-item{
  display: grid;
  min-height: 94px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
}

.dpx-home-experience .kit-item input{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.dpx-home-experience .kit-check{
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
}

.dpx-home-experience .kit-item:has(input:checked) .kit-check{
  border-color: var(--red);
  background: var(--red);
}

.dpx-home-experience .kit-item:has(input:checked) .kit-check::after{
  content: "\2713";
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.dpx-home-experience .kit-item strong,
.dpx-home-experience .kit-item small{
  display: block;
}

.dpx-home-experience .kit-item strong{
  font-family: var(--display);
  font-size: 21px;
  text-transform: uppercase;
}

.dpx-home-experience .kit-item small{
  margin-top: 3px;
  color: var(--muted);
}

.dpx-home-experience .kit-item > a{
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .kit-footer{
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
  align-items: center;
}

.dpx-home-experience .kit-footer p{
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.dpx-home-experience .cockpit-tabs{
  display: grid;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dpx-home-experience .cockpit-tabs button,
.dpx-home-experience .gallery-filters button,
.dpx-home-experience .finish-surface-options button{
  min-height: 58px;
  padding: 10px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .cockpit-tabs button.is-active,
.dpx-home-experience .gallery-filters button.is-active,
.dpx-home-experience .finish-surface-options button.is-active{
  background: var(--red);
  color: var(--white);
}

.dpx-home-experience .cockpit-panel{
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-raised);
  grid-template-columns: minmax(420px, 0.9fr) minmax(540px, 1.1fr);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

.dpx-home-experience .cockpit-media{
  display: grid;
  min-height: 560px;
  padding: 40px;
  place-items: center;
  border-right: 1px solid var(--line);
  background: #080a0d;
}

.dpx-home-experience .cockpit-media img{
  width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.dpx-home-experience .cockpit-copy{
  padding: 54px;
  align-self: center;
}

.dpx-home-experience .cockpit-copy h3{
  margin-bottom: 16px;
  font-size: 56px;
}

.dpx-home-experience .cockpit-copy > p:not(.product-type){
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.dpx-home-experience .cockpit-specs{
  display: grid;
  margin: 32px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-home-experience .cockpit-specs div{
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dpx-home-experience .data-source-note{
  max-width: 880px;
  margin: 22px 0 0;
}

.dpx-home-experience .gallery-filters{
  display: flex;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  overflow-x: auto;
}

.dpx-home-experience .gallery-filters button{
  min-width: 150px;
  white-space: nowrap;
}

.dpx-home-experience .project-gallery{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dpx-home-experience .project-card{
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-raised);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.dpx-home-experience .project-card-feature{
  min-height: 620px;
  grid-column: 1 / -1;
}

.dpx-home-experience .project-card[hidden]{
  display: none;
}

.dpx-home-experience .project-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease-out;
}

.dpx-home-experience .project-card::after{
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 -180px 130px rgba(0, 0, 0, 0.82);
  pointer-events: none;
}

.dpx-home-experience .project-card-copy{
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.dpx-home-experience .project-card-copy span{
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .project-card-copy h3{
  margin: 7px 0 0;
  font-size: 48px;
}

.dpx-home-experience .gallery-footer{
  display: grid;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.dpx-home-experience .gallery-footer p{
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.dpx-home-experience .companion-layout,
.dpx-home-experience .finish-layout,
.dpx-home-experience .help-layout{
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1.28fr);
  gap: 60px;
  align-items: stretch;
}

.dpx-home-experience .companion-controls{
  display: grid;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  gap: 20px;
}

.dpx-home-experience .companion-controls label{
  display: block;
}

.dpx-home-experience .mix-output{
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-rows: auto auto 1fr;
}

.dpx-home-experience .mix-components{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-home-experience .mix-components > div,
.dpx-home-experience .work-window,
.dpx-home-experience .mix-timer{
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dpx-home-experience .mix-components span,
.dpx-home-experience .work-window span,
.dpx-home-experience .mix-timer span{
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .mix-components strong{
  font-family: var(--display);
  font-size: 50px;
  line-height: 1;
}

.dpx-home-experience .work-window strong{
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
}

.dpx-home-experience .mix-timer{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.dpx-home-experience .mix-timer strong{
  font-family: var(--display);
  font-size: 70px;
  line-height: 1;
}

.dpx-home-experience .timer-button,
.dpx-home-experience .timer-reset{
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .timer-button{
  border-color: var(--red);
  background: var(--red);
}

.dpx-home-experience .safety-strip{
  display: grid;
  min-height: 88px;
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--red);
  background: var(--surface);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.dpx-home-experience .safety-strip strong{
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}

.dpx-home-experience .safety-strip span{
  color: var(--muted);
}

.dpx-home-experience .safety-strip a{
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .finish-layout{
  grid-template-columns: minmax(560px, 1.35fr) minmax(340px, 0.65fr);
}

.dpx-home-experience .finish-preview{
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #080a0d;
}

.dpx-home-experience .finish-preview img,
.dpx-home-experience .finish-tint{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dpx-home-experience .finish-preview img{
  object-fit: cover;
  transition: opacity 180ms ease-out, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dpx-home-experience .finish-tint{
  background: rgba(0, 0, 0, 0);
  mix-blend-mode: color;
  pointer-events: none;
  transition: background-color 260ms ease-out, opacity 260ms ease-out;
}

.dpx-home-experience .finish-preview::after{
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 -170px 120px rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.dpx-home-experience .finish-caption{
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.dpx-home-experience .finish-caption span,
.dpx-home-experience .finish-caption strong{
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
}

.dpx-home-experience .finish-caption span{
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.dpx-home-experience .finish-caption strong{
  margin-top: 5px;
  font-size: 44px;
  line-height: 1;
}

.dpx-home-experience .finish-controls{
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-raised);
}

.dpx-home-experience .finish-controls fieldset + fieldset{
  margin-top: 34px;
}

.dpx-home-experience .finish-surface-options{
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.dpx-home-experience .swatch-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dpx-home-experience .swatch{
  display: grid;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.dpx-home-experience .swatch > span{
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.dpx-home-experience .swatch.is-active{
  border-color: var(--white);
  color: var(--white);
}

.dpx-home-experience .swatch-clear > span{ background: linear-gradient(135deg, #dbe5ea, #717b83); }
.dpx-home-experience .swatch-ocean > span{ background: #047bb2; }
.dpx-home-experience .swatch-ember > span{ background: #b9242f; }
.dpx-home-experience .swatch-graphite > span{ background: #282b31; }
.dpx-home-experience .swatch-gold > span{ background: #b8862d; }

.dpx-home-experience .finish-controls .field-note{
  margin: 32px 0 22px;
}

.dpx-home-experience .help-layout{
  grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1.38fr);
}

.dpx-home-experience .help-topics{
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}

.dpx-home-experience .help-topics button{
  display: grid;
  min-height: 74px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
}

.dpx-home-experience .help-topics button span{
  color: var(--red-bright);
  font-size: 12px;
}

.dpx-home-experience .help-topics button.is-active{
  background: var(--surface-raised);
  color: var(--white);
}

.dpx-home-experience .help-answer{
  min-height: 410px;
  padding: 52px;
  border-left: 3px solid var(--red);
  background: var(--surface-raised);
}

.dpx-home-experience .help-answer h3{
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 46px;
}

.dpx-home-experience .help-answer > p:not(.step-label){
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.dpx-home-experience .help-answer ol{
  display: grid;
  max-width: 760px;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.dpx-home-experience .help-answer li{
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: help-step;
}

.dpx-home-experience .help-answer li::before{
  margin-right: 12px;
  content: "0" counter(help-step);
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
}

.dpx-home-experience .faq-list,
.dpx-home-experience .faq-list details{
  border-color: var(--line);
}

.dpx-home-experience .faq-list details p{
  color: var(--muted);
}

.dpx-home-experience .final-cta{
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
}

.dpx-home-experience .final-cta::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8vw;
  width: 6px;
  content: "";
  background: var(--red);
  box-shadow: 0 0 72px rgba(255, 80, 0, 0.42);
}

.dpx-home-experience .final-cta .button-primary{
  background: var(--red);
  box-shadow: 0 12px 32px rgba(255, 80, 0, 0.22);
}

.dpx-home-experience .passport-dock{
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: grid;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  background: rgba(13, 16, 20, 0.94);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease-out, visibility 180ms ease-out, transform 180ms ease-out, border-color 180ms ease-out;
}

.dpx-home-experience .passport-dock.is-visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dpx-home-experience .passport-dock span,
.dpx-home-experience .passport-dock small{
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.dpx-home-experience .passport-dock strong{
  margin: 2px 0;
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
}

.dpx-home-experience .passport-dialog{
  width: min(720px, calc(100% - 32px));
  padding: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--white);
}

.dpx-home-experience .passport-dialog::backdrop{
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.dpx-home-experience .passport-dialog h2{
  margin-bottom: 32px;
  font-size: 60px;
}

.dpx-home-experience .passport-dialog dl{
  display: grid;
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-home-experience .passport-dialog dl div{
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dpx-home-experience .button:active,
.dpx-home-experience .segmented button:active,
.dpx-home-experience .cockpit-tabs button:active,
.dpx-home-experience .gallery-filters button:active,
.dpx-home-experience .help-topics button:active,
.dpx-home-experience .timer-button:active,
.dpx-home-experience .timer-reset:active,
.dpx-home-experience .passport-dock:active{
  transform: translateY(1px) scale(0.99);
}

@media (hover: hover) and (pointer: fine){
  .dpx-home-experience .passport-result:hover .passport-result-media img,
.dpx-home-experience .finish-preview:hover img{
    transform: scale(1.025);
  }

  .dpx-home-experience .project-card:hover img{
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.04);
  }

  .dpx-home-experience .kit-item:hover,
.dpx-home-experience .help-topics button:hover,
.dpx-home-experience .cockpit-tabs button:hover:not(.is-active),
.dpx-home-experience .gallery-filters button:hover:not(.is-active),
.dpx-home-experience .finish-surface-options button:hover:not(.is-active){
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
  }

  .dpx-home-experience .passport-dock:hover{
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 1180px){
  .dpx-home-experience .passport-layout,
.dpx-home-experience .cockpit-panel,
.dpx-home-experience .companion-layout,
.dpx-home-experience .finish-layout,
.dpx-home-experience .help-layout{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .passport-result{
    position: relative;
    top: auto;
  }

  .dpx-home-experience .cockpit-media{
    min-height: 400px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dpx-home-experience .companion-layout,
.dpx-home-experience .finish-layout,
.dpx-home-experience .help-layout{
    gap: 28px;
  }
}

@media (max-width: 860px){
  .dpx-home-experience .section-dark,
.dpx-home-experience .section-deep,
.dpx-home-experience .section-paper{
    padding: 82px 20px;
  }

  .dpx-home-experience .passport-progress{
    margin-bottom: 34px;
  }

  .dpx-home-experience .passport-progress span{
    min-height: 52px;
    padding: 0 12px;
    font-size: 11px;
  }

  .dpx-home-experience .passport-layout{
    gap: 32px;
  }

  .dpx-home-experience .project-kit{
    margin-top: 72px;
  }

  .dpx-home-experience .kit-heading h3{
    font-size: 40px;
  }

  .dpx-home-experience .cockpit-copy{
    padding: 38px;
  }

  .dpx-home-experience .cockpit-tabs{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dpx-home-experience .project-card-feature{
    min-height: 520px;
  }

  .dpx-home-experience .finish-preview{
    min-height: 560px;
  }

  .dpx-home-experience .safety-strip{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px){
  .dpx-home-experience .section-heading-row{
    margin-bottom: 34px;
  }

  .dpx-home-experience .passport-progress{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .passport-progress span{
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dpx-home-experience .passport-progress span:last-child{
    border-bottom: 0;
  }

  .dpx-home-experience .dimension-grid,
.dpx-home-experience .decision-stats,
.dpx-home-experience .cockpit-specs,
.dpx-home-experience .mix-components,
.dpx-home-experience .passport-dialog dl{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .passport-result-media{
    height: 190px;
  }

  .dpx-home-experience .passport-result-copy{
    padding: 22px;
  }

  .dpx-home-experience .passport-result-copy h3{
    font-size: 36px;
  }

  .dpx-home-experience .result-actions{
    align-items: flex-start;
    flex-direction: column;
  }

  .dpx-home-experience .kit-heading,
.dpx-home-experience .kit-footer,
.dpx-home-experience .gallery-footer{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dpx-home-experience .kit-meter{
    width: 100%;
    text-align: left;
  }

  .dpx-home-experience .kit-item{
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .dpx-home-experience .kit-item > a{
    grid-column: 2;
  }

  .dpx-home-experience .cockpit-panel,
.dpx-home-experience .cockpit-media{
    min-height: 0;
  }

  .dpx-home-experience .cockpit-media{
    padding: 20px;
  }

  .dpx-home-experience .cockpit-copy{
    padding: 24px;
  }

  .dpx-home-experience .cockpit-copy h3{
    font-size: 40px;
  }

  .dpx-home-experience .project-gallery{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .project-card-feature{
    min-height: 420px;
    grid-column: auto;
  }

  .dpx-home-experience .project-card{
    min-height: 340px;
  }

  .dpx-home-experience .project-card-copy h3{
    font-size: 38px;
  }

  .dpx-home-experience .companion-controls,
.dpx-home-experience .finish-controls,
.dpx-home-experience .help-answer{
    padding: 22px;
  }

  .dpx-home-experience .mix-components strong{
    font-size: 42px;
  }

  .dpx-home-experience .work-window strong{
    font-size: 26px;
  }

  .dpx-home-experience .mix-timer{
    grid-template-columns: 1fr 1fr;
  }

  .dpx-home-experience .mix-timer > div{
    grid-column: 1 / -1;
  }

  .dpx-home-experience .finish-preview{
    min-height: 480px;
  }

  .dpx-home-experience .finish-caption strong{
    font-size: 34px;
  }

  .dpx-home-experience .finish-surface-options{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .help-topics button{
    font-size: 19px;
  }

  .dpx-home-experience .help-answer h3{
    font-size: 36px;
  }

  .dpx-home-experience .passport-dock{
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    min-width: 0;
    min-height: 56px;
    padding: 8px 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }

  .dpx-home-experience .passport-dock span,
.dpx-home-experience .passport-dock strong,
.dpx-home-experience .passport-dock small{
    margin: 0;
    white-space: nowrap;
  }

  .dpx-home-experience .passport-dock strong{
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .dpx-home-experience .passport-dock small{
    justify-self: end;
  }

  .dpx-home-experience .passport-dialog{
    padding: 50px 20px 24px;
  }

  .dpx-home-experience .passport-dialog h2{
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience .passport-result,
.dpx-home-experience .cockpit-panel,
.dpx-home-experience .project-card,
.dpx-home-experience .finish-preview img,
.dpx-home-experience .passport-dock{
    transition: none;
  }
}


.dpx-home-experience{
  --cinematic-orange: #ff5a00;
  --cinematic-ink: #070809;
  --cinematic-line: rgba(255, 255, 255, 0.18);
  --cinematic-header: 112px;
}

.dpx-home-experience{
  scroll-behavior: smooth;
}

body.has-cinematic-story .dpx-home-experience{
  background: var(--cinematic-ink);
}

.dpx-home-experience .has-cinematic-story [data-passport-open].cinematic-dock-hidden{
  visibility: hidden !important;
  opacity: 0 !important;
  transform: translateY(18px) !important;
  pointer-events: none !important;
}

.dpx-home-experience .has-cinematic-story .site-header{
  background: rgba(7, 8, 9, 0.76);
}

.dpx-home-experience .cinematic-story{
  position: relative;
  height: 420vh;
  min-height: 2600px;
  background: var(--cinematic-ink);
  color: #fff;
}

.dpx-home-experience .cinematic-stage{
  position: sticky;
  top: 0;
  height: 100dvh;
  min-height: 720px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.dpx-home-experience .cinematic-media,
.dpx-home-experience .cinematic-media video,
.dpx-home-experience .cinematic-poster,
.dpx-home-experience .cinematic-grade,
.dpx-home-experience .cinematic-vignette{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dpx-home-experience .cinematic-media{
  z-index: -3;
  overflow: hidden;
  background: #050607;
}

.dpx-home-experience .cinematic-media video,
.dpx-home-experience .cinematic-poster{
  display: block;
  object-fit: cover;
  object-position: center;
}

.dpx-home-experience .cinematic-media video{
  z-index: 1;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 480ms ease-out;
}

.dpx-home-experience .cinematic-story.is-video-ready .cinematic-media video{
  opacity: 1;
}

.dpx-home-experience .cinematic-poster{
  z-index: 0;
  transition: opacity 480ms ease-out;
}

.dpx-home-experience .cinematic-story.is-video-ready .cinematic-poster{
  opacity: 0;
}

.dpx-home-experience .cinematic-grade{
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.92) 0%, rgba(3, 4, 5, 0.62) 28%, rgba(3, 4, 5, 0.16) 58%, rgba(3, 4, 5, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.76) 100%);
}

.dpx-home-experience .cinematic-vignette{
  z-index: 3;
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.54);
  pointer-events: none;
}

.dpx-home-experience .cinematic-shell{
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1500px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--cinematic-header) + 44px) 0 74px;
  grid-template-columns: minmax(360px, 660px) 1fr;
  grid-template-rows: auto 1fr auto;
}

.dpx-home-experience .cinematic-concept-switcher{
  position: absolute;
  z-index: 6;
  top: calc(var(--cinematic-header) + 22px);
  right: 32px;
  display: flex;
  border: 1px solid var(--cinematic-line);
  background: rgba(8, 9, 10, 0.64);
  backdrop-filter: blur(14px);
}

.dpx-home-experience .cinematic-concept-switcher a{
  display: inline-flex;
  min-height: 40px;
  padding: 0 15px;
  align-items: center;
  border-right: 1px solid var(--cinematic-line);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.dpx-home-experience .cinematic-concept-switcher a:last-child{
  border-right: 0;
}

.dpx-home-experience .cinematic-concept-switcher a[aria-current="page"]{
  background: var(--cinematic-orange);
  color: #050505;
}

.dpx-home-experience .cinematic-copy{
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  padding-bottom: 28px;
}

.dpx-home-experience .cinematic-kicker{
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .cinematic-kicker::before{
  width: 44px;
  height: 2px;
  content: "";
  background: var(--cinematic-orange);
}

.dpx-home-experience .cinematic-copy h1{
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 86px;
  line-height: 0.92;
  text-wrap: balance;
}

.dpx-home-experience .cinematic-copy-body{
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.55;
}

.dpx-home-experience .cinematic-copy.is-changing .cinematic-kicker,
.dpx-home-experience .cinematic-copy.is-changing h1,
.dpx-home-experience .cinematic-copy.is-changing .cinematic-copy-body{
  opacity: 0;
  transform: translateY(10px);
}

.dpx-home-experience .cinematic-kicker,
.dpx-home-experience .cinematic-copy h1,
.dpx-home-experience .cinematic-copy-body{
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.dpx-home-experience .cinematic-metrics{
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  display: grid;
  width: min(440px, 100%);
  margin-bottom: 46px;
  border-top: 1px solid var(--cinematic-line);
  border-bottom: 1px solid var(--cinematic-line);
  grid-template-columns: repeat(3, 1fr);
}

.dpx-home-experience .cinematic-metric{
  min-height: 92px;
  padding: 18px 16px;
  border-right: 1px solid var(--cinematic-line);
}

.dpx-home-experience .cinematic-metric:last-child{
  border-right: 0;
}

.dpx-home-experience .cinematic-metric span,
.dpx-home-experience .cinematic-metric strong{
  display: block;
}

.dpx-home-experience .cinematic-metric span{
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .cinematic-metric strong{
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .cinematic-bottom{
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.dpx-home-experience .cinematic-chapters{
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(var(--chapter-count, 4), minmax(0, 1fr));
}

.dpx-home-experience .cinematic-chapter{
  position: relative;
  min-height: 48px;
  padding: 16px 12px 0 0;
  border-top: 1px solid var(--cinematic-line);
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease-out;
}

.dpx-home-experience .cinematic-chapter::before{
  position: absolute;
  top: -1px;
  right: 100%;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cinematic-orange);
  transition: right 240ms ease-out;
}

.dpx-home-experience .cinematic-chapter.is-active,
.dpx-home-experience .cinematic-chapter.is-complete{
  color: #fff;
}

.dpx-home-experience .cinematic-chapter.is-active::before,
.dpx-home-experience .cinematic-chapter.is-complete::before{
  right: 0;
}

.dpx-home-experience .cinematic-scroll-cue{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .cinematic-scroll-cue::after{
  width: 38px;
  height: 1px;
  content: "";
  background: var(--cinematic-orange);
  opacity: 0.78;
}

.dpx-home-experience .cinematic-progress{
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.dpx-home-experience .cinematic-progress span{
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cinematic-orange);
  will-change: transform;
}

.dpx-home-experience .cinematic-story--drop .cinematic-grade{
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.93) 0%, rgba(3, 4, 5, 0.62) 31%, rgba(3, 4, 5, 0.12) 61%, rgba(3, 4, 5, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06) 52%, rgba(0, 0, 0, 0.82));
}

.dpx-home-experience .cinematic-story--cure .cinematic-media video,
.dpx-home-experience .cinematic-story--cure .cinematic-poster{
  object-position: 62% center;
}

@media (hover: hover) and (pointer: fine){
  .dpx-home-experience .cinematic-concept-switcher a:hover{
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .dpx-home-experience .cinematic-concept-switcher a[aria-current="page"]:hover{
    background: var(--cinematic-orange);
    color: #050505;
  }
}

@media (max-width: 1180px){
  .dpx-home-experience .cinematic-shell{
    grid-template-columns: minmax(340px, 590px) 1fr;
  }

  .dpx-home-experience .cinematic-copy h1{
    font-size: 68px;
  }

  .dpx-home-experience .cinematic-metrics{
    width: 360px;
  }
}

@media (max-width: 860px){
  .dpx-home-experience{
    --cinematic-header: 92px;
  }

  .dpx-home-experience .cinematic-story{
    height: 390vh;
    min-height: 2300px;
  }

  .dpx-home-experience .cinematic-stage{
    min-height: 640px;
  }

  .dpx-home-experience .cinematic-shell{
    width: calc(100% - 40px);
    padding: calc(var(--cinematic-header) + 70px) 0 58px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
  }

  .dpx-home-experience .cinematic-concept-switcher{
    top: calc(var(--cinematic-header) + 14px);
    right: 20px;
    left: 20px;
    justify-content: stretch;
  }

  .dpx-home-experience .cinematic-concept-switcher a{
    flex: 1;
    justify-content: center;
    padding: 0 8px;
  }

  .dpx-home-experience .cinematic-copy{
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding-bottom: 26px;
  }

  .dpx-home-experience .cinematic-copy h1{
    max-width: 600px;
    font-size: 52px;
  }

  .dpx-home-experience .cinematic-copy-body{
    max-width: 530px;
    font-size: 17px;
  }

  .dpx-home-experience .cinematic-metrics{
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    margin: 0 0 18px;
  }

  .dpx-home-experience .cinematic-bottom{
    grid-column: 1;
    grid-row: 3;
  }

  .dpx-home-experience .cinematic-scroll-cue{
    display: none;
  }

  .dpx-home-experience .cinematic-grade{
    background:
      linear-gradient(180deg, rgba(3, 4, 5, 0.18) 0%, rgba(3, 4, 5, 0.08) 34%, rgba(3, 4, 5, 0.88) 74%, rgba(3, 4, 5, 0.98) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04));
  }

  .dpx-home-experience .cinematic-media video,
.dpx-home-experience .cinematic-poster{
    object-position: 58% center;
  }
}

@media (max-width: 620px){
  .dpx-home-experience .cinematic-story{
    height: 370vh;
    min-height: 2100px;
  }

  .dpx-home-experience .cinematic-stage{
    min-height: 590px;
  }

  .dpx-home-experience .cinematic-shell{
    width: calc(100% - 28px);
    padding-bottom: 42px;
  }

  .dpx-home-experience .cinematic-concept-switcher{
    right: 14px;
    left: 14px;
  }

  .dpx-home-experience .cinematic-concept-switcher a{
    min-height: 38px;
    font-size: 9px;
  }

  .dpx-home-experience .cinematic-copy{
    padding-bottom: 18px;
  }

  .dpx-home-experience .cinematic-kicker{
    margin-bottom: 12px;
    font-size: 10px;
  }

  .dpx-home-experience .cinematic-kicker::before{
    width: 28px;
  }

  .dpx-home-experience .cinematic-copy h1{
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 0.96;
  }

  .dpx-home-experience .cinematic-copy-body{
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .dpx-home-experience .cinematic-metric{
    min-height: 66px;
    padding: 12px 9px;
  }

  .dpx-home-experience .cinematic-metric span{
    margin-bottom: 6px;
    font-size: 8px;
  }

  .dpx-home-experience .cinematic-metric strong{
    font-size: 12px;
  }

  .dpx-home-experience .cinematic-chapter{
    min-height: 38px;
    padding-top: 11px;
    font-size: 8px;
  }

  .dpx-home-experience .cinematic-story--drop .cinematic-media video,
.dpx-home-experience .cinematic-story--drop .cinematic-poster{
    object-position: 64% 34%;
  }

  .dpx-home-experience .cinematic-story--cure .cinematic-media video,
.dpx-home-experience .cinematic-story--cure .cinematic-poster{
    object-position: 69% center;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience{
    scroll-behavior: auto;
  }

  .dpx-home-experience .cinematic-story{
    height: 100dvh;
    min-height: 720px;
  }

  .dpx-home-experience .cinematic-stage{
    position: relative;
  }

  .dpx-home-experience .cinematic-media video{
    display: none;
  }

  .dpx-home-experience .cinematic-poster{
    opacity: 1 !important;
  }

  .dpx-home-experience .cinematic-kicker,
.dpx-home-experience .cinematic-copy h1,
.dpx-home-experience .cinematic-copy-body,
.dpx-home-experience .cinematic-chapter::before{
    transition: none;
  }
}


.dpx-home-experience{
  --rondell-orange: #ff5a00;
  --rondell-ink: #070809;
  --rondell-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.dpx-home-experience .cinematic-story--rondell{
  height: 760vh;
  min-height: 5100px;
}

.dpx-home-experience .cinematic-story--rondell .cinematic-media video,
.dpx-home-experience .cinematic-story--rondell .cinematic-frame-canvas,
.dpx-home-experience .cinematic-story--rondell .cinematic-poster,
.dpx-home-experience .cinematic-story--rondell .rondell-endframe,
.dpx-home-experience .cinematic-story--rondell .rondell-baseframe{
  object-position: center;
}

.dpx-home-experience .cinematic-frame-canvas{
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 220ms ease-out;
  pointer-events: none;
}

.dpx-home-experience .cinematic-story--rondell.is-frame-sequence-ready .cinematic-frame-canvas{
  opacity: 1;
}

.dpx-home-experience .cinematic-story--rondell.is-frame-sequence-ready .cinematic-media video{
  opacity: 0;
}

.dpx-home-experience .cinematic-story--rondell.is-frame-sequence-ready .cinematic-poster{
  opacity: 0;
}

.dpx-home-experience .rondell-endframe,
.dpx-home-experience .rondell-baseframe{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.dpx-home-experience .rondell-endframe{
  z-index: 2;
}

.dpx-home-experience .rondell-baseframe{
  z-index: 3;
}

.dpx-home-experience .cinematic-story--rondell .cinematic-grade{
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.94) 0%, rgba(3, 4, 5, 0.62) 31%, rgba(3, 4, 5, 0.12) 62%, rgba(3, 4, 5, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06) 52%, rgba(0, 0, 0, 0.84));
  transition: opacity 220ms ease-out;
}

.dpx-home-experience .cinematic-story--rondell .cinematic-shell{
  transition: opacity 190ms ease-out, transform 220ms var(--rondell-ease);
  will-change: opacity, transform;
}

.dpx-home-experience .cinematic-story--rondell.is-rondell-reveal .cinematic-shell{
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  pointer-events: none;
}

.dpx-home-experience .cinematic-story--rondell.is-rondell-reveal .cinematic-grade{
  opacity: 0.32;
}

.dpx-home-experience .rondell-interface{
  position: absolute;
  z-index: 5;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: calc(var(--cinematic-header) + 46px) 0 68px;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  will-change: opacity, transform;
}

.dpx-home-experience .cinematic-story--rondell.is-rondell-live .rondell-interface{
  pointer-events: auto;
}

.dpx-home-experience .rondell-heading{
  position: absolute;
  z-index: 160;
  top: 50%;
  left: clamp(32px, 4.2vw, 76px);
  width: clamp(260px, 21vw, 340px);
  padding: 26px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, rgba(4, 5, 6, 0.96), rgba(4, 5, 6, 0.78) 76%, rgba(4, 5, 6, 0));
  opacity: 0;
  transform: translate3d(0, calc(-50% + 22px), 0);
  will-change: opacity, transform;
}

.dpx-home-experience .rondell-heading > p{
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .rondell-heading h2{
  max-width: 360px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(40px, 4.3vw, 72px);
  line-height: 0.92;
  text-wrap: balance;
}

.dpx-home-experience .rondell-specs{
  display: flex;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 8px;
}

.dpx-home-experience .rondell-specs span{
  min-height: 30px;
  padding: 8px 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-home-experience .rondell-product-link{
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--rondell-orange);
  background: var(--rondell-orange);
  color: #070707;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms var(--rondell-ease), box-shadow 180ms ease-out;
}

.dpx-home-experience .rondell-stage{
  position: absolute;
  z-index: 10;
  inset: calc(var(--cinematic-header) + 46px) 0 68px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  outline: none;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  transform: translate3d(0, 76px, 0);
  will-change: transform;
}

.dpx-home-experience .rondell-stage.is-dragging{
  cursor: grabbing;
}

.dpx-home-experience .rondell-track{
  position: absolute;
  inset: 0;
}

.dpx-home-experience .rondell-product{
  position: absolute;
  z-index: 1;
  top: 39%;
  left: 50%;
  display: block;
  width: clamp(164px, 14vw, 230px);
  aspect-ratio: 1;
  margin: calc(clamp(164px, 14vw, 230px) / -2) 0 0 calc(clamp(164px, 14vw, 230px) / -2);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.7);
  transform-origin: 50% 82%;
  will-change: transform, opacity;
  -webkit-user-drag: none;
}

.dpx-home-experience .rondell-product::before,
.dpx-home-experience .rondell-product::after{
  position: absolute;
  z-index: 0;
  left: 50%;
  content: "";
  pointer-events: none;
  will-change: transform, opacity;
}

.dpx-home-experience .rondell-product::before{
  top: calc(100% + 1px);
  width: 66px;
  height: 19px;
  border: 1px solid rgba(255, 194, 120, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 154, 52, 0.96) 0 12%, rgba(118, 54, 7, 0.92) 24%, rgba(15, 17, 19, 0.98) 54%, rgba(130, 139, 147, 0.9) 72%, #050607 82%);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.38),
    0 0 18px rgba(255, 90, 0, 0.38);
  opacity: var(--pedestal-alpha, 0);
  transform: translateX(-50%) scale(var(--pedestal-cap-scale, 0.9));
}

.dpx-home-experience .rondell-product::after{
  top: calc(100% + 9px);
  width: 58px;
  height: 68px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 121, 27, 0.32);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px 8px 18px 18px;
  background:
    linear-gradient(90deg, #030405 0%, #343a40 13%, #090a0c 27%, #181b1f 45%, #08090a 61%, #4d555d 82%, #050607 100%);
  box-shadow:
    inset 0 -14px 20px rgba(255, 91, 0, 0.22),
    inset 0 0 9px rgba(255, 255, 255, 0.1),
    0 18px 26px rgba(0, 0, 0, 0.46),
    0 0 17px rgba(255, 90, 0, 0.2);
  opacity: var(--pedestal-alpha, 0);
  transform: translateX(-50%) scaleY(var(--pedestal-scale, 0.08));
  transform-origin: 50% 100%;
}

.dpx-home-experience .rondell-product.is-active::before{
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.46),
    0 0 28px rgba(255, 90, 0, 0.58);
}

.dpx-home-experience .rondell-product.is-active::after{
  box-shadow:
    inset 0 -18px 24px rgba(255, 91, 0, 0.34),
    inset 0 0 10px rgba(255, 255, 255, 0.14),
    0 20px 30px rgba(0, 0, 0, 0.54),
    0 0 26px rgba(255, 90, 0, 0.34);
}

.dpx-home-experience .rondell-product-media{
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: #f4f4f1;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  opacity: var(--product-alpha, 0);
  transform: translate3d(0, var(--product-rise, 64px), 0);
  transition: border-color 180ms ease-out, box-shadow 220ms ease-out;
  will-change: transform, opacity;
  pointer-events: none;
}

.dpx-home-experience .rondell-product-media::after{
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.dpx-home-experience .rondell-product img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.dpx-home-experience .rondell-product.is-active .rondell-product-media{
  border-color: rgba(255, 90, 0, 0.86);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 90, 0, 0.18),
    0 0 48px rgba(255, 90, 0, 0.2);
}

.dpx-home-experience .rondell-orbit{
  position: absolute;
  z-index: 0;
  right: 9%;
  bottom: 13%;
  left: 9%;
  height: 24%;
  border: 1px solid rgba(255, 90, 0, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(255, 90, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: perspective(800px) rotateX(68deg);
}

.dpx-home-experience .rondell-controls{
  position: absolute;
  z-index: 40;
  right: auto;
  bottom: 4px;
  left: 50%;
  display: grid;
  width: min(980px, calc(100% - 96px));
  min-height: 50px;
  align-items: center;
  grid-template-columns: 50px 1fr 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translate3d(-50%, 16px, 0);
  will-change: opacity, transform;
}

.dpx-home-experience .rondell-controls button{
  width: 50px;
  height: 50px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  transition: color 160ms ease-out, transform 160ms var(--rondell-ease);
}

.dpx-home-experience .rondell-controls p{
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.dpx-home-experience .mobile-gesture{
  display: none;
}

@media (hover: hover) and (pointer: fine){
  .dpx-home-experience .rondell-product-link:hover{
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 14px 34px rgba(255, 90, 0, 0.24);
  }

  .dpx-home-experience .rondell-controls button:hover{
    color: var(--rondell-orange);
    transform: scale(1.08);
  }

  .dpx-home-experience .rondell-product:hover .rondell-product-media{
    border-color: rgba(255, 90, 0, 0.72);
  }
}

.dpx-home-experience .rondell-product-link:active,
.dpx-home-experience .rondell-controls button:active{
  transform: scale(0.97);
}

.dpx-home-experience .rondell-stage:focus-visible{
  box-shadow: inset 0 0 0 2px rgba(255, 90, 0, 0.82);
}

@media (max-width: 1080px){
  .dpx-home-experience .rondell-heading{
    width: 270px;
  }

  .dpx-home-experience .rondell-heading h2{
    font-size: clamp(36px, 4.8vw, 58px);
  }
}

@media (max-width: 860px){
  .dpx-home-experience .cinematic-story--rondell{
    height: 700vh;
    min-height: 4400px;
  }

  .dpx-home-experience .rondell-interface{
    display: grid;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: calc(var(--cinematic-header) + 60px) 0 46px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 4px;
  }

  .dpx-home-experience .rondell-stage{
    position: relative;
    z-index: 10;
    inset: auto;
    grid-row: 1;
    width: auto;
    min-height: 0;
    margin: 0;
  }

  .dpx-home-experience .rondell-heading{
    position: relative;
    top: auto;
    left: auto;
    grid-row: 2;
    width: auto;
    align-self: end;
    padding: 14px 0 0;
    border-bottom: 0;
    background: none;
    transform: translate3d(0, 22px, 0);
  }

  .dpx-home-experience .rondell-heading > p{
    margin-bottom: 7px;
    font-size: 9px;
  }

  .dpx-home-experience .rondell-heading h2{
    max-width: none;
    margin-bottom: 9px;
    font-size: clamp(30px, 8.5vw, 46px);
  }

  .dpx-home-experience .rondell-specs{
    margin-bottom: 12px;
  }

  .dpx-home-experience .rondell-product-link{
    position: absolute;
    right: 0;
    bottom: 0;
    min-height: 42px;
  }

  .dpx-home-experience .rondell-product{
    top: 47%;
    width: clamp(142px, 40vw, 190px);
    margin: calc(clamp(142px, 40vw, 190px) / -2) 0 0 calc(clamp(142px, 40vw, 190px) / -2);
  }

  .dpx-home-experience .rondell-orbit{
    right: 0;
    bottom: 13%;
    left: 0;
  }

  .dpx-home-experience .rondell-controls{
    right: 0;
    bottom: 4px;
    left: 0;
    width: auto;
    transform: translate3d(0, 16px, 0);
  }

  .dpx-home-experience .desktop-gesture{
    display: none;
  }

  .dpx-home-experience .mobile-gesture{
    display: inline;
  }
}

@media (max-width: 620px){
  .dpx-home-experience .cinematic-story--rondell{
    height: 660vh;
    min-height: 4000px;
  }

  .dpx-home-experience .cinematic-story--rondell .cinematic-concept-switcher a{
    padding: 0 5px;
    font-size: 8px;
  }

  .dpx-home-experience .rondell-interface{
    width: calc(100% - 28px);
    padding-top: calc(var(--cinematic-header) + 54px);
    padding-bottom: 30px;
  }

  .dpx-home-experience .rondell-heading{
    min-height: 126px;
  }

  .dpx-home-experience .rondell-heading h2{
    max-width: calc(100% - 126px);
    font-size: clamp(27px, 8vw, 38px);
  }

  .dpx-home-experience .rondell-specs{
    max-width: calc(100% - 126px);
  }

  .dpx-home-experience .rondell-specs span{
    min-height: 26px;
    padding: 6px 7px 5px;
    font-size: 8px;
  }

  .dpx-home-experience .rondell-product-link{
    width: 118px;
    padding: 0 10px;
    gap: 8px;
    font-size: 9px;
  }

  .dpx-home-experience .rondell-product{
    top: 48%;
  }

  .dpx-home-experience .rondell-controls{
    min-height: 42px;
    grid-template-columns: 42px 1fr 42px;
  }

  .dpx-home-experience .rondell-controls button{
    width: 42px;
    height: 42px;
  }
}

@media (max-height: 720px) and (max-width: 860px){
  .dpx-home-experience .rondell-heading{
    min-height: 112px;
  }

  .dpx-home-experience .rondell-heading > p{
    display: none;
  }

  .dpx-home-experience .rondell-heading h2{
    font-size: 28px;
  }

  .dpx-home-experience .rondell-product{
    top: 49%;
    width: 136px;
    margin: -68px 0 0 -68px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience .cinematic-story--rondell{
    height: 100dvh;
    min-height: 720px;
  }

  .dpx-home-experience .cinematic-story--rondell .cinematic-poster{
    content: url("/templates/DIPOXYLiquidCraftCinematic216/assets/drop-rondell-20260829/optimized/drop-rondell-endframe.webp");
  }

  .dpx-home-experience .cinematic-story--rondell .rondell-endframe{
    opacity: 0 !important;
  }

  .dpx-home-experience .cinematic-story--rondell .rondell-baseframe{
    opacity: 1 !important;
  }

  .dpx-home-experience .cinematic-story--rondell .cinematic-shell{
    display: none;
  }

  .dpx-home-experience .rondell-interface{
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .dpx-home-experience .rondell-stage{
    opacity: 1 !important;
    transform: none !important;
  }

  .dpx-home-experience .rondell-heading,
.dpx-home-experience .rondell-controls{
    opacity: 1 !important;
  }

  .dpx-home-experience .rondell-product-link,
.dpx-home-experience .rondell-product-media,
.dpx-home-experience .rondell-controls button{
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 861px){
  .dpx-home-experience .rondell-heading{
    transform: translate3d(0, -50%, 0) !important;
  }

  .dpx-home-experience .rondell-controls{
    transform: translate3d(-50%, 0, 0) !important;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 860px){
  .dpx-home-experience .rondell-heading,
.dpx-home-experience .rondell-controls{
    transform: none !important;
  }
}

.dpx-home-experience /* Combined story: table pour -> falling macro drop -> approved product rondell. */
.cinematic-story--table-rondell .cinematic-media--combined{
  background: #050607;
}

.dpx-home-experience .combined-media-layer,
.dpx-home-experience .combined-poster,
.dpx-home-experience .combined-frame-canvas{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.dpx-home-experience .combined-media-layer{
  transform-origin: 50% 72%;
  will-change: opacity, transform;
}

.dpx-home-experience .table-media-layer{
  z-index: 0;
  opacity: 1;
}

.dpx-home-experience .drop-media-layer{
  z-index: 1;
  opacity: 0;
  transform-origin: 50% 50%;
}

.dpx-home-experience .combined-poster,
.dpx-home-experience .combined-frame-canvas,
.dpx-home-experience .combined-media-layer video{
  object-fit: cover;
  object-position: center;
}

.dpx-home-experience .combined-poster{
  z-index: 0;
}

.dpx-home-experience .combined-frame-canvas{
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.dpx-home-experience .cinematic-story--table-rondell.is-table-sequence-ready .table-frame-canvas,
.dpx-home-experience .cinematic-story--table-rondell.is-drop-sequence-ready .drop-frame-canvas{
  opacity: 1;
}

.dpx-home-experience .cinematic-story--table-rondell.is-table-sequence-ready .table-media-layer video,
.dpx-home-experience .cinematic-story--table-rondell.is-drop-sequence-ready .drop-media-layer video,
.dpx-home-experience .cinematic-story--table-rondell.is-table-sequence-ready .table-poster,
.dpx-home-experience .cinematic-story--table-rondell.is-drop-sequence-ready .drop-poster{
  opacity: 0;
}

.dpx-home-experience .cinematic-story--table-rondell .rondell-endframe,
.dpx-home-experience .cinematic-story--table-rondell .rondell-baseframe{
  z-index: 2;
}

.dpx-home-experience .table-drop-bridge{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(42vw, 620px);
  aspect-ratio: 520 / 620;
  opacity: 0;
  transform: translate3d(-50%, calc(-50% + 31vh), 0) scale(0.12);
  transform-origin: 50% 50%;
  pointer-events: none;
  will-change: opacity, transform;
  -webkit-mask-image: radial-gradient(ellipse 58% 54% at 50% 47%, #000 0 58%, rgba(0, 0, 0, 0.94) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 58% 54% at 50% 47%, #000 0 58%, rgba(0, 0, 0, 0.94) 70%, transparent 100%);
}

.dpx-home-experience .table-drop-bridge img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dpx-home-experience .cinematic-story--table-rondell .cinematic-grade{
  z-index: 3;
}

.dpx-home-experience .cinematic-story--table-rondell .cinematic-vignette{
  z-index: 4;
}

@media (max-width: 860px){
  .dpx-home-experience .table-drop-bridge{
    width: min(76vw, 520px);
  }

  .dpx-home-experience .cinematic-story--table-rondell .table-media-layer{
    transform-origin: 50% 76%;
  }
}

@media (max-width: 620px){
  .dpx-home-experience .table-drop-bridge{
    width: min(88vw, 500px);
  }

  .dpx-home-experience .cinematic-story--table-rondell .cinematic-chapters{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .dpx-home-experience .cinematic-story--table-rondell .cinematic-chapter{
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience .cinematic-story--table-rondell .table-media-layer,
.dpx-home-experience .cinematic-story--table-rondell .table-drop-bridge{
    display: none;
  }

  .dpx-home-experience .cinematic-story--table-rondell .drop-media-layer{
    opacity: 1 !important;
    transform: none !important;
  }
}

.dpx-home-experience /* Guided story: table sequence,
.dpx-home-experience normal document journey,
.dpx-home-experience then drop-to-rondell. */
.cinematic-story--guided-table{
  height: 360vh;
  min-height: 2700px;
}

.dpx-home-experience .cinematic-story--guided-table .cinematic-chapters{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dpx-home-experience .cinematic-story--guided-table .cinematic-grade{
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.93) 0%, rgba(3, 4, 5, 0.56) 34%, rgba(3, 4, 5, 0.08) 66%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.03) 54%, rgba(0, 0, 0, 0.82));
}

.dpx-home-experience .cinematic-story--guided-rondell{
  height: 590vh;
  min-height: 4300px;
}

.dpx-home-experience .cinematic-story--guided-rondell .drop-media-layer{
  z-index: 0;
  opacity: 1;
  transform: none;
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-grade{
  z-index: 3;
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-vignette{
  z-index: 4;
}

.dpx-home-experience .passport-section--guided-drop{
  position: relative;
  isolation: isolate;
}

.dpx-home-experience .guided-drop-marker{
  position: fixed;
  z-index: 82;
  top: 0;
  left: 0;
  width: 50px;
  height: 66px;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.9);
  pointer-events: none;
  will-change: opacity, transform;
}

.dpx-home-experience .guided-drop-halo,
.dpx-home-experience .guided-drop-core{
  position: absolute;
  inset: 0;
  display: block;
}

.dpx-home-experience .guided-drop-halo{
  inset: 14px 13px 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 91, 0.48), rgba(255, 101, 10, 0.18) 46%, transparent 74%);
  filter: blur(8px);
  opacity: 0.3;
  animation: guidedDropHalo 4.8s ease-in-out infinite;
}

.dpx-home-experience .guided-drop-core{
  inset: auto;
  top: 18px;
  left: 15px;
  width: 20px;
  height: 29px;
  border: 0;
  background-image: url("/templates/DIPOXYLiquidCraftCinematic216/assets/drop-rondell-20260829/scrub-frames-full-original/frame-104.webp");
  background-repeat: no-repeat;
  background-position: calc(50% + 1px) calc(50% - 2px);
  background-size: 1280px 720px;
  clip-path: polygon(50% 0, 67% 12%, 82% 31%, 94% 53%, 88% 76%, 70% 93%, 50% 100%, 30% 93%, 12% 76%, 6% 53%, 18% 31%, 33% 12%);
  filter:
    saturate(1.08)
    brightness(1.08)
    drop-shadow(0 0 3px rgba(255, 196, 112, 0.48))
    drop-shadow(0 0 8px rgba(255, 111, 13, 0.22));
  mix-blend-mode: screen;
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-shell,
.dpx-home-experience .cinematic-story--guided-rondell.is-rondell-reveal .cinematic-shell{
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-metrics,
.dpx-home-experience .cinematic-story--guided-rondell .cinematic-bottom{
  transition: opacity 220ms ease-out, transform 260ms var(--rondell-ease);
}

.dpx-home-experience .cinematic-story--guided-rondell.is-rondell-reveal .cinematic-metrics,
.dpx-home-experience .cinematic-story--guided-rondell.is-rondell-reveal .cinematic-bottom{
  opacity: 0;
  transform: translate3d(0, -12px, 0);
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-copy{
  transform-origin: left top;
  will-change: opacity, transform;
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-copy.is-rondell-guidance{
  width: min(380px, 31vw);
  padding: 10px 22px 13px 0;
  background: linear-gradient(90deg, rgba(3, 4, 5, 0.9), rgba(3, 4, 5, 0.58) 72%, transparent);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.78);
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-copy.is-rondell-guidance .cinematic-kicker{
  margin-bottom: 10px;
  font-size: 11px;
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-copy.is-rondell-guidance h2{
  max-width: 350px;
  margin: 0 0 10px;
  font-size: clamp(32px, 2.8vw, 44px);
  line-height: 0.96;
}

.dpx-home-experience .cinematic-story--guided-rondell .cinematic-copy.is-rondell-guidance .cinematic-copy-body{
  max-width: 370px;
  font-size: 14px;
  line-height: 1.4;
}

.dpx-home-experience .cinematic-story--guided-rondell .rondell-heading{
  top: 63.5%;
}

.dpx-home-experience .cinematic-story--guided-rondell .rondell-product-media{
  isolation: isolate;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dpx-home-experience .cinematic-story--guided-rondell .rondell-product-media::before{
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: radial-gradient(ellipse at 50% 58%, rgba(255, 174, 73, 0.32) 0%, rgba(255, 93, 0, 0.16) 38%, rgba(255, 93, 0, 0) 72%);
  opacity: 0.45;
  filter: blur(16px);
  transform: translate3d(0, 8px, 0) scale(0.92, 0.8);
  animation: rondellResinFlicker 5.4s infinite both;
  pointer-events: none;
  will-change: opacity, transform;
}

.dpx-home-experience .cinematic-story--guided-rondell .rondell-product-media::after{
  z-index: 2;
  border: 0;
}

.dpx-home-experience .cinematic-story--guided-rondell .rondell-product img{
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 24px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 7px rgba(255, 184, 91, 0.17))
    drop-shadow(0 0 22px rgba(255, 122, 20, 0.09));
  transition: transform 520ms var(--rondell-ease), filter 520ms ease-out;
}

.dpx-home-experience .cinematic-story--guided-rondell .rondell-product.is-active .rondell-product-media{
  border: 0;
  box-shadow: none;
}

.dpx-home-experience .cinematic-story--guided-rondell .rondell-product.is-active .rondell-product-media::before{
  animation-duration: 4.15s;
}

.dpx-home-experience .cinematic-story--guided-rondell .rondell-product::before,
.dpx-home-experience .cinematic-story--guided-rondell .rondell-product::after{
  animation: rondellPedestalFlicker 4.8s ease-in-out infinite both;
}

@media (hover: hover) and (pointer: fine){
  .dpx-home-experience .cinematic-story--guided-rondell .rondell-product:hover .rondell-product-media::before{
    animation-duration: 3.2s;
  }

  .dpx-home-experience .cinematic-story--guided-rondell .rondell-product:hover img{
    transform: translate3d(0, -7px, 0) scale(1.025);
    filter:
      drop-shadow(0 28px 30px rgba(0, 0, 0, 0.62))
      drop-shadow(0 0 10px rgba(255, 200, 118, 0.31))
      drop-shadow(0 0 34px rgba(255, 126, 18, 0.21));
  }
}

@keyframes rondellResinFlicker{
  0%, 100%{ opacity: 0.17; transform: translate3d(-2px, 4px, 0) scale(1.006); }
  12%{ opacity: 0.27; transform: translate3d(2px, 1px, 0) scale(1.026); }
  18%{ opacity: 0.205; transform: translate3d(1px, 3px, 0) scale(1.016); }
  37%{ opacity: 0.31; transform: translate3d(-1px, 0, 0) scale(1.034); }
  43%{ opacity: 0.23; transform: translate3d(2px, 3px, 0) scale(1.02); }
  69%{ opacity: 0.285; transform: translate3d(-2px, 1px, 0) scale(1.03); }
  78%{ opacity: 0.195; transform: translate3d(1px, 4px, 0) scale(1.012); }
}

@keyframes rondellPedestalFlicker{
  0%, 100%{ filter: brightness(0.82) saturate(0.95); }
  23%{ filter: brightness(1.2) saturate(1.18); }
  31%{ filter: brightness(0.94) saturate(1); }
  63%{ filter: brightness(1.3) saturate(1.25); }
  72%{ filter: brightness(0.9) saturate(1); }
}

@keyframes guidedDropHalo{
  0%, 100%{ opacity: 0.16; transform: scale(0.86); }
  38%{ opacity: 0.34; transform: scale(1.08); }
  57%{ opacity: 0.22; transform: scale(0.96); }
}

@media (max-width: 860px){
  .dpx-home-experience .cinematic-story--guided-table{
    height: 330vh;
    min-height: 2350px;
  }

  .dpx-home-experience .cinematic-story--guided-rondell{
    height: 550vh;
    min-height: 3900px;
  }

  .dpx-home-experience .guided-drop-marker{
    width: 46px;
    height: 62px;
  }

  .dpx-home-experience .cinematic-story--guided-rondell .cinematic-copy.is-rondell-guidance{
    position: absolute;
    z-index: 170;
    top: calc(var(--cinematic-header) + 16px);
    left: 0;
    width: min(350px, calc(100vw - 40px));
    padding: 8px 14px 12px 0;
    background: linear-gradient(90deg, rgba(3, 4, 5, 0.94), rgba(3, 4, 5, 0.66) 76%, transparent);
  }

  .dpx-home-experience .cinematic-story--guided-rondell .cinematic-copy.is-rondell-guidance h2{
    max-width: 310px;
    margin-bottom: 8px;
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .dpx-home-experience .cinematic-story--guided-rondell .cinematic-copy.is-rondell-guidance .cinematic-copy-body{
    max-width: 330px;
    font-size: 13px;
    line-height: 1.38;
  }

  .dpx-home-experience .cinematic-story--guided-rondell .rondell-product-media::before{
    filter:
      brightness(0)
      saturate(100%)
      invert(59%)
      sepia(98%)
      saturate(2700%)
      hue-rotate(347deg)
      brightness(109%)
      contrast(106%)
      blur(14px);
    animation-duration: 6.8s;
  }

  .dpx-home-experience .cinematic-story--guided-rondell .rondell-interface{
    display: block;
    padding: 0;
  }

  .dpx-home-experience .cinematic-story--guided-rondell .rondell-stage{
    position: absolute;
    top: calc(var(--cinematic-header) + 42px);
    right: 0;
    bottom: 164px;
    left: 0;
    width: 100%;
    margin: 0;
  }

  .dpx-home-experience .cinematic-story--guided-rondell.is-rondell-reveal .rondell-stage{
    top: calc(var(--cinematic-header) + 244px);
  }

  .dpx-home-experience .cinematic-story--guided-rondell .rondell-heading{
    position: absolute;
    top: auto;
    right: 0;
    bottom: 20px;
    left: 0;
    width: 100%;
    min-height: 132px;
    margin: 0;
    padding: 14px 0 0;
  }

  .dpx-home-experience .cinematic-story--guided-rondell .rondell-product{
    top: 46%;
  }
}

@media (max-width: 620px){
  .dpx-home-experience .cinematic-story--guided-rondell .rondell-stage{
    top: calc(var(--cinematic-header) + 34px);
    bottom: 158px;
  }

  .dpx-home-experience .cinematic-story--guided-rondell.is-rondell-reveal .rondell-stage{
    top: calc(var(--cinematic-header) + 240px);
  }

  .dpx-home-experience .cinematic-story--guided-rondell .rondell-heading{
    bottom: 14px;
    min-height: 126px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience .cinematic-story--guided-table,
.dpx-home-experience .cinematic-story--guided-rondell{
    height: 100dvh;
    min-height: 720px;
  }

  .dpx-home-experience .guided-drop-marker{
    display: none;
  }

  .dpx-home-experience .cinematic-story--guided-rondell .rondell-product-media::before,
.dpx-home-experience .cinematic-story--guided-rondell .rondell-product::before,
.dpx-home-experience .cinematic-story--guided-rondell .rondell-product::after{
    animation: none;
  }
}


.dpx-home-experience /* Focused overrides for the reduced cinematic homepage variant. */

#the-pour,
.dpx-home-experience #one-drop,
.dpx-home-experience #materials{
  scroll-margin-top: 108px;
}

.dpx-home-experience .category-section .category-index{
  margin-top: 0;
}

.dpx-home-experience .category-tile{
  min-height: 156px;
  padding: 18px;
  background: #111317;
}

.dpx-home-experience button.category-tile{
  width: 100%;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.dpx-home-experience .category-tile::before{
  z-index: 3;
}

.dpx-home-experience .category-tile::after{
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 9, 0.16) 0%, rgba(6, 7, 9, 0.58) 48%, rgba(6, 7, 9, 0.97) 100%);
  content: "";
  pointer-events: none;
}

.dpx-home-experience .category-tile-media{
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.01);
  transition: opacity 240ms ease-out, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease-out;
}

.dpx-home-experience .category-tile--product .category-tile-media{
  inset: 8px 4px 8px 30%;
  width: calc(70% - 4px);
  height: calc(100% - 16px);
  object-fit: contain;
  object-position: right center;
  opacity: 0.56;
  filter: saturate(0.88) contrast(1.03) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.46));
}

.dpx-home-experience .category-tile span,
.dpx-home-experience .category-tile strong{
  position: relative;
  z-index: 1;
  max-width: 88%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.92);
}

.dpx-home-experience .category-tile span{
  color: #ff7a32;
}

.dpx-home-experience .category-tile--hub i{
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(4, 5, 6, 0.46);
  color: #fff;
  font-family: var(--display);
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  place-items: center;
  transition: border-color 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dpx-home-experience .category-tile--hub[aria-expanded="true"]{
  border-color: rgba(255, 94, 0, 0.82);
  box-shadow: 0 14px 34px rgba(255, 80, 0, 0.16);
}

.dpx-home-experience .category-tile--hub[aria-expanded="true"]::before{
  transform: scaleX(1);
}

.dpx-home-experience .category-tile--hub[aria-expanded="true"] i{
  border-color: #ff5a00;
  background: #ff5a00;
  color: #070809;
  transform: rotate(45deg);
}

.dpx-home-experience .subcategory-panel{
  position: relative;
  display: grid;
  min-height: 156px;
  overflow: hidden;
  border: 1px solid rgba(255, 105, 38, 0.44);
  border-radius: 4px;
  background: #090a0c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  grid-column: 2 / -1;
  grid-template-columns: minmax(170px, 0.62fr) minmax(0, 2.38fr);
  opacity: 0;
  transform: translateX(-14px) scale(0.985);
  transform-origin: left center;
  transition: opacity 200ms ease-out, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dpx-home-experience .subcategory-panel[hidden]{
  display: none;
}

.dpx-home-experience .subcategory-panel.is-open{
  opacity: 1;
  transform: none;
}

.dpx-home-experience .subcategory-panel::before{
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 90, 0, 0.09), transparent 35%);
  content: "";
  pointer-events: none;
}

.dpx-home-experience .subcategory-panel-heading{
  position: relative;
  z-index: 1;
  display: flex;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.dpx-home-experience .subcategory-panel-heading span,
.dpx-home-experience .subcategory-options span{
  color: #ff7a32;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .subcategory-panel-heading strong{
  max-width: 190px;
  color: #fff;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dpx-home-experience .subcategory-options{
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dpx-home-experience .subcategory-options a{
  position: relative;
  display: flex;
  min-width: 0;
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.dpx-home-experience .subcategory-options a::after{
  position: absolute;
  top: 17px;
  right: 17px;
  color: rgba(255, 255, 255, 0.52);
  content: "\2197";
  font-size: 18px;
  transition: color 180ms ease-out, transform 180ms ease-out;
}

.dpx-home-experience .subcategory-options strong{
  max-width: 170px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.dpx-home-experience .subcategory-options small{
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.dpx-home-experience .category-tile--merch .category-tile-media{
  object-position: 88% center;
}

@media (hover: hover) and (pointer: fine){
  .dpx-home-experience .category-tile:hover .category-tile-media,
.dpx-home-experience .category-tile:focus-visible .category-tile-media{
    opacity: 0.68;
    filter: saturate(1) contrast(1.08);
    transform: scale(1.055);
  }

  .dpx-home-experience .category-tile--product:hover .category-tile-media,
.dpx-home-experience .category-tile--product:focus-visible .category-tile-media{
    filter: saturate(1) contrast(1.06) drop-shadow(0 12px 22px rgba(255, 90, 0, 0.16));
    transform: translateY(-3px) scale(1.06);
  }

  .dpx-home-experience .subcategory-options a:hover,
.dpx-home-experience .subcategory-options a:focus-visible{
    background: rgba(255, 90, 0, 0.1);
    color: #fff;
  }

  .dpx-home-experience .subcategory-options a:hover::after,
.dpx-home-experience .subcategory-options a:focus-visible::after{
    color: #ff7a32;
    transform: translate(2px, -2px);
  }
}

@media (max-width: 860px){
  .dpx-home-experience #the-pour,
.dpx-home-experience #one-drop,
.dpx-home-experience #materials{
    scroll-margin-top: 82px;
  }

  .dpx-home-experience .category-grid.is-exploring .category-tile--hub,
.dpx-home-experience .subcategory-panel{
    grid-column: 1 / -1;
  }

  .dpx-home-experience .category-tile{
    min-height: 138px;
  }

  .dpx-home-experience .subcategory-panel{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .subcategory-panel-heading{
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row;
    align-items: end;
  }

  .dpx-home-experience .subcategory-panel-heading strong{
    max-width: 280px;
    text-align: right;
  }
}

@media (max-width: 560px){
  .dpx-home-experience .category-tile{
    min-height: 124px;
    padding: 12px;
  }

  .dpx-home-experience .category-tile--product .category-tile-media{
    inset: 6px 0 6px 24%;
    width: 76%;
    height: calc(100% - 12px);
  }

  .dpx-home-experience .category-tile span,
.dpx-home-experience .category-tile strong{
    max-width: 96%;
  }

  .dpx-home-experience .subcategory-panel{
    min-height: 0;
  }

  .dpx-home-experience .subcategory-panel-heading{
    padding: 15px;
  }

  .dpx-home-experience .subcategory-panel-heading strong{
    max-width: 190px;
    font-size: 18px;
  }

  .dpx-home-experience .subcategory-options{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .subcategory-options a{
    min-height: 102px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .dpx-home-experience .subcategory-options strong{
    max-width: calc(100% - 40px);
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience .category-tile-media,
.dpx-home-experience .subcategory-panel,
.dpx-home-experience .subcategory-options a,
.dpx-home-experience .subcategory-options a::after{
    transition: none;
  }
}

.dpx-home-experience /* Project FAQs: one searchable help center for prevention and rescue. */
.project-faq-section{
  position: relative;
  isolation: isolate;
}

.dpx-home-experience .project-faq-heading{
  margin-bottom: 38px;
}

.dpx-home-experience .project-faq-search{
  display: grid;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(170px, 0.38fr) minmax(360px, 1fr) minmax(210px, 0.42fr);
  gap: 24px;
  align-items: center;
}

.dpx-home-experience .project-faq-search > label,
.dpx-home-experience .project-faq-filters > p{
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .project-faq-search-field{
  position: relative;
}

.dpx-home-experience .project-faq-search-field input{
  width: 100%;
  height: 62px;
  padding: 0 64px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  outline: 0;
  background: var(--surface-raised);
  color: var(--white);
  font-size: 17px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.dpx-home-experience .project-faq-search-field input::placeholder{
  color: #7f858e;
}

.dpx-home-experience .project-faq-search-field input:focus{
  border-color: var(--red-bright);
  background: #171a20;
  box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.16), 0 14px 34px rgba(0, 0, 0, 0.24);
}

.dpx-home-experience .project-faq-search-field button{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.dpx-home-experience .project-faq-search-field button:hover,
.dpx-home-experience .project-faq-search-field button:focus-visible{
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.dpx-home-experience .project-faq-search-meta{
  display: grid;
  gap: 3px;
  justify-items: end;
  text-align: right;
}

.dpx-home-experience .project-faq-search-meta strong{
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .project-faq-search-meta span{
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
}

.dpx-home-experience .project-faq-explorer{
  display: grid;
  margin-top: 44px;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}

.dpx-home-experience .project-faq-filters{
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  border-top: 1px solid var(--line);
}

.dpx-home-experience .project-faq-filters > p{
  padding: 0 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.dpx-home-experience .project-faq-filters button{
  display: grid;
  min-height: 62px;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.dpx-home-experience .project-faq-filters button span{
  color: var(--red-bright);
  font-size: 10px;
}

.dpx-home-experience .project-faq-filters button.is-active,
.dpx-home-experience .project-faq-filters button[aria-pressed="true"]{
  border-left-color: var(--red);
  background: var(--surface-raised);
  color: var(--white);
}

.dpx-home-experience .project-faq-list{
  border-top: 1px solid var(--line-strong);
}

.dpx-home-experience .project-faq-item{
  position: relative;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.dpx-home-experience .project-faq-item[hidden]{
  display: none;
}

.dpx-home-experience .project-faq-item summary{
  display: grid;
  min-height: 88px;
  padding: 18px 18px 18px 4px;
  cursor: pointer;
  grid-template-columns: 44px minmax(0, 1fr) minmax(92px, auto) 28px;
  gap: 14px;
  align-items: center;
  list-style: none;
}

.dpx-home-experience .project-faq-item summary::-webkit-details-marker{
  display: none;
}

.dpx-home-experience .project-faq-index,
.dpx-home-experience .project-faq-tag{
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-home-experience .project-faq-question{
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.dpx-home-experience .project-faq-tag{
  justify-self: end;
  color: var(--muted);
}

.dpx-home-experience .project-faq-icon{
  position: relative;
  width: 24px;
  height: 24px;
  justify-self: end;
}

.dpx-home-experience .project-faq-icon::before,
.dpx-home-experience .project-faq-icon::after{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.dpx-home-experience .project-faq-icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.dpx-home-experience .project-faq-item[open]{
  background: var(--surface-raised);
  box-shadow: inset 3px 0 0 var(--red);
}

.dpx-home-experience .project-faq-item[open] .project-faq-question,
.dpx-home-experience .project-faq-item[open] .project-faq-icon{
  color: var(--red-bright);
}

.dpx-home-experience .project-faq-item[open] .project-faq-icon::after{
  transform: translate(-50%, -50%) rotate(0deg);
}

.dpx-home-experience .project-faq-answer{
  max-width: 880px;
  padding: 0 62px 30px 62px;
  animation: project-faq-answer-in 220ms ease-out both;
}

.dpx-home-experience .project-faq-answer p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.dpx-home-experience .project-faq-empty{
  margin: 32px 0 0 calc(260px + clamp(36px, 5vw, 84px));
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

@keyframes project-faq-answer-in{
  from{
    opacity: 0;
    transform: translateY(-5px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine){
  .dpx-home-experience .project-faq-filters button:hover{
    color: var(--white);
    transform: translateX(3px);
  }

  .dpx-home-experience .project-faq-item:not([open]):hover{
    background: rgba(255, 255, 255, 0.035);
  }

  .dpx-home-experience .project-faq-item:not([open]):hover .project-faq-question{
    color: var(--red-bright);
  }
}

@media (max-width: 1040px){
  .dpx-home-experience .project-faq-search{
    grid-template-columns: minmax(150px, 0.32fr) minmax(300px, 1fr);
  }

  .dpx-home-experience .project-faq-search-meta{
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 760px){
  .dpx-home-experience .project-faq-search{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dpx-home-experience .project-faq-search-meta{
    grid-column: auto;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
  }

  .dpx-home-experience .project-faq-search-meta span{
    max-width: none;
  }

  .dpx-home-experience .project-faq-explorer{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dpx-home-experience .project-faq-filters{
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dpx-home-experience .project-faq-filters > p,
.dpx-home-experience .project-faq-filters button:first-of-type{
    grid-column: 1 / -1;
  }

  .dpx-home-experience .project-faq-filters button{
    min-height: 54px;
    border-right: 1px solid var(--line);
    font-size: 15px;
  }

  .dpx-home-experience .project-faq-item summary{
    min-height: 84px;
    padding: 16px 8px 16px 4px;
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 8px;
  }

  .dpx-home-experience .project-faq-index{
    align-self: start;
    padding-top: 3px;
  }

  .dpx-home-experience .project-faq-question{
    font-size: 21px;
  }

  .dpx-home-experience .project-faq-tag{
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .dpx-home-experience .project-faq-icon{
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .dpx-home-experience .project-faq-answer{
    padding: 0 34px 24px 42px;
  }

  .dpx-home-experience .project-faq-empty{
    margin-left: 0;
  }
}

@media (max-width: 460px){
  .dpx-home-experience .project-faq-search-field input{
    height: 58px;
    padding-left: 15px;
    font-size: 16px;
  }

  .dpx-home-experience .project-faq-search-meta{
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .dpx-home-experience .project-faq-filters button{
    padding: 0 10px;
    grid-template-columns: 26px minmax(0, 1fr);
    font-size: 14px;
  }

  .dpx-home-experience .project-faq-question{
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience .project-faq-search-field input,
.dpx-home-experience .project-faq-search-field button,
.dpx-home-experience .project-faq-filters button,
.dpx-home-experience .project-faq-item,
.dpx-home-experience .project-faq-question,
.dpx-home-experience .project-faq-icon::before,
.dpx-home-experience .project-faq-icon::after{
    transition: none;
  }

  .dpx-home-experience .project-faq-answer{
    animation: none;
  }
}

.dpx-home-experience /* Integrated Project Passport: selection,
.dpx-home-experience recommendation and set stay together. */
.passport-section .section-heading-row{
  margin-bottom: 34px;
}

.dpx-home-experience .passport-layout--integrated{
  grid-template-columns: minmax(480px, 0.88fr) minmax(560px, 1.12fr);
  gap: 36px;
}

.dpx-home-experience .passport-output-stack{
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 12px;
}

.dpx-home-experience .passport-output-stack .passport-result{
  position: relative;
  top: auto;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.dpx-home-experience .passport-output-stack .passport-result-media{
  height: 176px;
}

.dpx-home-experience .passport-output-stack .passport-result-copy{
  padding: 23px 26px 25px;
}

.dpx-home-experience .passport-output-stack .passport-result-copy h3{
  margin-bottom: 6px;
  font-size: clamp(34px, 3vw, 42px);
}

.dpx-home-experience .passport-output-stack .passport-result-copy > p:not(.step-label):not(.technical-note){
  font-size: 15px;
}

.dpx-home-experience .passport-output-stack .decision-stats{
  margin: 18px 0 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dpx-home-experience .passport-output-stack .decision-stats div{
  padding: 12px;
}

.dpx-home-experience .passport-output-stack .decision-stats dd{
  font-size: 17px;
}

.dpx-home-experience .project-kit--compact{
  margin: 0;
  padding: 20px 24px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-raised);
}

.dpx-home-experience .project-kit--compact .kit-heading{
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 20px;
  align-items: end;
}

.dpx-home-experience .project-kit--compact .kit-heading h3{
  font-size: 29px;
  line-height: 1.02;
}

.dpx-home-experience .project-kit--compact .kit-heading .eyebrow{
  margin-bottom: 5px;
}

.dpx-home-experience .project-kit--compact .kit-meter{
  width: 118px;
  font-size: 14px;
}

.dpx-home-experience .kit-sync-note{
  display: flex;
  margin: 13px 0 0;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.dpx-home-experience .kit-sync-note > span{
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(255, 80, 0, 0.34);
  animation: passport-live-pulse 2.4s ease-out infinite;
}

.dpx-home-experience .project-kit--compact .kit-list{
  display: grid;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-home-experience .project-kit--compact .kit-item{
  min-height: 74px;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 9px;
}

.dpx-home-experience .project-kit--compact .kit-item[hidden]{
  display: none;
}

.dpx-home-experience .project-kit--compact .kit-list:has([data-pigment-item][hidden]) .kit-item:last-child{
  grid-column: 1 / -1;
}

.dpx-home-experience .project-kit--compact .kit-check{
  width: 20px;
  height: 20px;
}

.dpx-home-experience .project-kit--compact .kit-item strong{
  font-size: 16px;
  line-height: 1.06;
}

.dpx-home-experience .project-kit--compact .kit-item small{
  overflow: hidden;
  margin-top: 2px;
  color: #8d929b;
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.dpx-home-experience .project-kit--compact .kit-item > a{
  font-size: 10px;
}

@keyframes passport-live-pulse{
  0%, 55%, 100%{
    box-shadow: 0 0 0 0 rgba(255, 80, 0, 0.3);
    opacity: 0.72;
  }
  72%{
    box-shadow: 0 0 0 7px rgba(255, 80, 0, 0);
    opacity: 1;
  }
}

@media (max-width: 1040px){
  .dpx-home-experience .passport-layout--integrated{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dpx-home-experience .passport-output-stack{
    position: relative;
    top: auto;
  }
}

@media (max-width: 620px){
  .dpx-home-experience .passport-section .section-heading-row{
    margin-bottom: 24px;
  }

  .dpx-home-experience .passport-section .passport-step{
    padding: 18px 0;
  }

  .dpx-home-experience .passport-section .segmented button{
    min-height: 52px;
    padding: 8px;
    font-size: 12px;
  }

  .dpx-home-experience .passport-section .dimension-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .dpx-home-experience .passport-section .dimension-grid input,
.dpx-home-experience .passport-section .dimension-grid select{
    height: 52px;
    font-size: 20px;
  }

  .dpx-home-experience .passport-output-stack .passport-result-media{
    height: 148px;
  }

  .dpx-home-experience .passport-output-stack .passport-result-copy{
    padding: 18px;
  }

  .dpx-home-experience .passport-output-stack .passport-result-copy h3{
    font-size: 31px;
  }

  .dpx-home-experience .passport-output-stack .decision-stats{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dpx-home-experience .passport-output-stack .decision-stats div{
    padding: 10px 8px;
  }

  .dpx-home-experience .passport-output-stack .decision-stats dt{
    font-size: 9px;
    line-height: 1.2;
  }

  .dpx-home-experience .passport-output-stack .decision-stats dd{
    font-size: 14px;
  }

  .dpx-home-experience .passport-output-stack .result-actions .button{
    width: 100%;
  }

  .dpx-home-experience .project-kit--compact{
    padding: 18px 14px 6px;
  }

  .dpx-home-experience .project-kit--compact .kit-heading{
    grid-template-columns: minmax(0, 1fr) 86px;
    gap: 12px;
  }

  .dpx-home-experience .project-kit--compact .kit-heading h3{
    font-size: 25px;
  }

  .dpx-home-experience .project-kit--compact .kit-meter{
    width: 86px;
    font-size: 12px;
  }

  .dpx-home-experience .project-kit--compact .kit-list{
    grid-template-columns: 1fr;
  }

  .dpx-home-experience .project-kit--compact .kit-item{
    min-height: 66px;
    padding: 9px 10px;
    grid-template-columns: 20px minmax(0, 1fr) auto;
  }

  .dpx-home-experience .project-kit--compact .kit-item > a{
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-home-experience .kit-sync-note > span{
    animation: none;
  }
}


.dpx-home-experience /* Numbered release: consistent chapter labels and clear header utilities. */
.header-actions{
  gap: 22px;
}

.dpx-home-experience .header-actions .icon-command{
  display: inline-flex;
  min-height: 42px;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.dpx-home-experience .header-command-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.dpx-home-experience .rondell-heading > p{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dpx-home-experience .rondell-sequence-count{
  color: var(--red-bright);
  white-space: nowrap;
}

.dpx-home-experience .category-index-heading .category-index-kicker{
  max-width: none;
  margin: 0 0 8px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1180px){
  .dpx-home-experience .header-actions{
    gap: 15px;
  }

  .dpx-home-experience .header-actions .icon-command{
    gap: 6px;
    font-size: 13px;
  }

  .dpx-home-experience .header-command-icon{
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }
}

@media (max-width: 860px){
  .dpx-home-experience .header-actions{
    gap: 14px;
  }

  .dpx-home-experience .header-actions .icon-command.desktop-only{
    display: none;
  }

  .dpx-home-experience .header-actions .icon-command{
    font-size: 13px;
  }
}

@media (max-width: 420px){
  .dpx-home-experience .header-actions{
    gap: 10px;
  }

  .dpx-home-experience .header-actions .icon-command{
    gap: 5px;
    font-size: 12px;
  }

  .dpx-home-experience .header-command-icon{
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
}


/* GALLERY EXPERIENCE */

.dpx-gallery-experience{
  color-scheme: dark;
  --ink: #090a0c;
  --ink-soft: #111317;
  --panel: #17191d;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #f1f0ed;
  --paper-ink: #111216;
  --muted: #a9adb5;
  --red: #ff5000;
  --red-bright: #ff6a1a;
  --cyan: #32c8d7;
  --yellow: #f3c44d;
  --white: #ffffff;
  --display: "Bahnschrift Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --header-height: 112px;
}

.dpx-gallery-experience, .dpx-gallery-experience *{
  box-sizing: border-box;
  letter-spacing: 0;
}

.dpx-gallery-experience{
  scroll-behavior: smooth;
  background: var(--ink);
}

.dpx-gallery-experience section[id],
.dpx-gallery-experience fieldset[id]{
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.dpx-gallery-experience{
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open .dpx-gallery-experience{
  overflow: hidden;
}

.dpx-gallery-experience button,
.dpx-gallery-experience input{
  font: inherit;
}

.dpx-gallery-experience button,
.dpx-gallery-experience a{
  -webkit-tap-highlight-color: transparent;
}

.dpx-gallery-experience a{
  color: inherit;
  text-decoration: none;
}

.dpx-gallery-experience img,
.dpx-gallery-experience video{
  display: block;
  max-width: 100%;
}

.dpx-gallery-experience .sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dpx-gallery-experience .skip-link{
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

.dpx-gallery-experience .skip-link:focus{
  transform: translateY(0);
}

.dpx-gallery-experience .site-header{
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 12, 0.92);
  backdrop-filter: blur(16px);
}

.dpx-gallery-experience .announcement{
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .announcement span + span::before{
  content: "/";
  margin-right: 26px;
  opacity: 0.6;
}

.dpx-gallery-experience .header-main{
  display: grid;
  width: min(1600px, 100%);
  height: 82px;
  margin: 0 auto;
  padding: 0 32px;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.dpx-gallery-experience .brand{
  display: flex;
  width: 196px;
  height: 48px;
  align-items: center;
}

.dpx-gallery-experience .brand img{
  width: 100%;
  height: auto;
}

.dpx-gallery-experience .desktop-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.dpx-gallery-experience .desktop-nav a,
.dpx-gallery-experience .icon-command{
  position: relative;
}

.dpx-gallery-experience .desktop-nav a::after,
.dpx-gallery-experience .icon-command::after{
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red-bright);
  transition: transform 180ms ease-out;
}

.dpx-gallery-experience .header-actions{
  display: flex;
  align-items: center;
  gap: 16px;
}

.dpx-gallery-experience .icon-command,
.dpx-gallery-experience .menu-toggle{
  min-height: 40px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .menu-toggle{
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
}

.dpx-gallery-experience .menu-toggle span:not(.sr-only){
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease-out, opacity 140ms ease-out;
}

.dpx-gallery-experience .menu-toggle span:nth-child(1){
  transform: translate(-50%, -7px);
}

.dpx-gallery-experience .menu-toggle span:nth-child(2){
  transform: translate(-50%, -1px);
}

.dpx-gallery-experience .menu-toggle span:nth-child(3){
  transform: translate(-50%, 5px);
}

.dpx-gallery-experience .menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform: translate(-50%, -1px) rotate(45deg);
}

.dpx-gallery-experience .menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}

.dpx-gallery-experience .menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform: translate(-50%, -1px) rotate(-45deg);
}

.dpx-gallery-experience .mobile-menu{
  display: none;
}

.dpx-gallery-experience .hero{
  position: relative;
  display: flex;
  min-height: 800px;
  height: 92vh;
  max-height: 1040px;
  padding-top: var(--header-height);
  align-items: center;
  overflow: hidden;
  background: #000;
}

.dpx-gallery-experience .hero-video,
.dpx-gallery-experience .hero-shade{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dpx-gallery-experience .hero-video{
  object-fit: cover;
  object-position: center;
}

.dpx-gallery-experience .hero-shade{
  background: rgba(0, 0, 0, 0.54);
  box-shadow: inset 0 -190px 140px rgba(0, 0, 0, 0.72), inset 450px 0 220px rgba(0, 0, 0, 0.42);
}

.dpx-gallery-experience .hero-content{
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding-bottom: 76px;
}

.dpx-gallery-experience .eyebrow{
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .accent-red{
  color: var(--red-bright);
}

.dpx-gallery-experience .accent-cyan{
  color: var(--cyan);
}

.dpx-gallery-experience h1,
.dpx-gallery-experience h2,
.dpx-gallery-experience h3,
.dpx-gallery-experience p{
  margin-top: 0;
}

.dpx-gallery-experience h1,
.dpx-gallery-experience h2,
.dpx-gallery-experience h3{
  color: var(--white);
  font-family: var(--display);
  line-height: 0.94;
  text-transform: uppercase;
}

.dpx-gallery-experience .section-paper h1,
.dpx-gallery-experience .section-paper h2,
.dpx-gallery-experience .section-paper h3{
  color: var(--paper-ink);
}

.dpx-gallery-experience h1{
  max-width: 820px;
  margin-bottom: 28px;
  font-size: 112px;
  font-weight: 900;
}

.dpx-gallery-experience h2{
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 900;
}

.dpx-gallery-experience h3{
  font-size: 34px;
  font-weight: 850;
}

.dpx-gallery-experience .hero-copy{
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.dpx-gallery-experience .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dpx-gallery-experience .button{
  position: relative;
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out;
}

.dpx-gallery-experience .button-primary{
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(255, 80, 0, 0.2);
}

.dpx-gallery-experience .button-secondary{
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(9, 10, 12, 0.62);
  color: var(--white);
}

.dpx-gallery-experience .video-toggle{
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 82px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(9, 10, 12, 0.7);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.dpx-gallery-experience .hero-rail{
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 58px;
  padding: 0 4vw;
  border-top: 1px solid var(--line);
  background: rgba(9, 10, 12, 0.88);
  grid-template-columns: repeat(4, 1fr);
}

.dpx-gallery-experience .hero-rail span{
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .hero-rail span:first-child{
  border-left: 1px solid var(--line);
}

.dpx-gallery-experience .section-dark,
.dpx-gallery-experience .section-paper{
  padding: 120px max(32px, calc((100% - 1500px) / 2));
}

.dpx-gallery-experience .section-dark{
  background: var(--ink);
  color: var(--white);
}

.dpx-gallery-experience .section-paper{
  background: var(--paper);
  color: var(--paper-ink);
}

.dpx-gallery-experience .finder-section,
.dpx-gallery-experience .calculator-section{
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: 80px;
  align-items: start;
}

.dpx-gallery-experience .section-intro{
  max-width: 650px;
}

.dpx-gallery-experience .section-intro p:not(.eyebrow),
.dpx-gallery-experience .section-heading-row > p{
  color: var(--muted);
  font-size: 18px;
}

.dpx-gallery-experience .finder-tool,
.dpx-gallery-experience .calculator-tool{
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink-soft);
}

.dpx-gallery-experience .finder-step + .finder-step{
  margin-top: 28px;
}

.dpx-gallery-experience .step-label,
.dpx-gallery-experience .product-type{
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .segmented{
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.dpx-gallery-experience .segmented-compact{
  grid-template-columns: repeat(3, 1fr);
}

.dpx-gallery-experience .segmented button{
  min-height: 58px;
  padding: 10px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}

.dpx-gallery-experience .segmented button.is-active{
  background: var(--red);
  color: var(--white);
}

.dpx-gallery-experience .finder-result{
  display: grid;
  min-height: 220px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  transition: opacity 150ms ease-out, transform 150ms ease-out;
}

.dpx-gallery-experience .finder-result.is-changing{
  opacity: 0.35;
  transform: translateY(6px);
}

.dpx-gallery-experience .finder-result-media{
  min-height: 220px;
  overflow: hidden;
  background: #20242a;
}

.dpx-gallery-experience .finder-result-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dpx-gallery-experience .finder-result-copy{
  padding: 30px;
  align-self: center;
}

.dpx-gallery-experience .finder-result-copy h3{
  margin-bottom: 14px;
}

.dpx-gallery-experience .finder-result-copy > p:not(.step-label){
  color: var(--muted);
}

.dpx-gallery-experience .text-link,
.dpx-gallery-experience .product-column a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-gallery-experience .section-heading-row{
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 48px;
  align-items: end;
}

.dpx-gallery-experience .section-heading-row h2{
  margin-bottom: 0;
}

.dpx-gallery-experience .world-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dpx-gallery-experience .world-card{
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 4px;
  background: #17191d;
  color: var(--white);
}

.dpx-gallery-experience .world-card-wide{
  grid-column: 1 / -1;
  min-height: 560px;
}

.dpx-gallery-experience .world-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease-out;
}

.dpx-gallery-experience .world-card::after{
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 -170px 120px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.dpx-gallery-experience .world-index{
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.dpx-gallery-experience .world-copy{
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.dpx-gallery-experience .world-copy span{
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.dpx-gallery-experience .world-copy h3{
  margin: 6px 0 0;
  font-size: 52px;
}

.dpx-gallery-experience .material-band{
  display: grid;
  min-height: 220px;
  padding: 30px 3vw;
  background: var(--red);
  color: var(--white);
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.dpx-gallery-experience .material-word{
  font-family: var(--display);
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.dpx-gallery-experience .material-word-accent{
  color: var(--yellow);
}

.dpx-gallery-experience .dark-link{
  justify-self: end;
}

.dpx-gallery-experience .product-compare{
  display: grid;
  border-top: 1px solid rgba(17, 18, 22, 0.2);
  border-left: 1px solid rgba(17, 18, 22, 0.2);
  grid-template-columns: repeat(4, 1fr);
}

.dpx-gallery-experience .product-column{
  min-width: 0;
  padding: 20px;
  border-right: 1px solid rgba(17, 18, 22, 0.2);
  border-bottom: 1px solid rgba(17, 18, 22, 0.2);
}

.dpx-gallery-experience .product-column img{
  width: 100%;
  height: 150px;
  margin-bottom: 28px;
  object-fit: cover;
  border-radius: 3px;
}

.dpx-gallery-experience .product-column h3{
  min-height: 64px;
  margin-bottom: 14px;
  font-size: 34px;
}

.dpx-gallery-experience .product-column > p:not(.product-type){
  min-height: 78px;
  color: #52555b;
}

.dpx-gallery-experience .transformation-section{
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #050607;
}

.dpx-gallery-experience .transformation-section > img,
.dpx-gallery-experience .transformation-shade{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dpx-gallery-experience .transformation-section > img{
  object-fit: cover;
}

.dpx-gallery-experience .transformation-shade{
  background: rgba(0, 0, 0, 0.48);
  box-shadow: inset 0 -220px 180px rgba(0, 0, 0, 0.76);
}

.dpx-gallery-experience .transformation-copy{
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100% - 1500px) / 2));
  bottom: 74px;
  left: max(32px, calc((100% - 1500px) / 2));
  max-width: 920px;
}

.dpx-gallery-experience .transformation-copy h2{
  font-size: 76px;
}

.dpx-gallery-experience .field-grid{
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dpx-gallery-experience .field-grid label span{
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.dpx-gallery-experience .field-grid input{
  width: 100%;
  height: 62px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: #0d0f12;
  color: var(--white);
  font-family: var(--display);
  font-size: 28px;
}

.dpx-gallery-experience .field-grid input:focus{
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(50, 200, 215, 0.14);
}

.dpx-gallery-experience .calculator-output{
  display: grid;
  min-height: 185px;
  margin-bottom: 24px;
  padding: 24px;
  align-content: center;
  border-left: 3px solid var(--cyan);
  background: #0d0f12;
}

.dpx-gallery-experience .calculator-output span,
.dpx-gallery-experience .calculator-output small{
  color: var(--muted);
}

.dpx-gallery-experience .calculator-output strong{
  margin: 4px 0 8px;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
}

.dpx-gallery-experience .faq-section{
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
}

.dpx-gallery-experience .faq-list{
  border-top: 1px solid rgba(17, 18, 22, 0.24);
}

.dpx-gallery-experience .faq-list details{
  border-bottom: 1px solid rgba(17, 18, 22, 0.24);
}

.dpx-gallery-experience .faq-list summary{
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .faq-list summary::-webkit-details-marker{
  display: none;
}

.dpx-gallery-experience .faq-list summary::after{
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  transform: translateY(-50%);
  color: var(--red);
  font-size: 30px;
}

.dpx-gallery-experience .faq-list details[open] summary::after{
  content: "-";
}

.dpx-gallery-experience .faq-list details p{
  max-width: 720px;
  padding: 0 48px 26px 0;
  color: #52555b;
}

.dpx-gallery-experience .final-cta{
  min-height: 620px;
  padding: 100px 32px;
  background: var(--red);
  color: var(--white);
}

.dpx-gallery-experience .final-cta-inner{
  display: flex;
  width: min(1500px, 100%);
  min-height: 420px;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.dpx-gallery-experience .final-cta h2{
  max-width: 1050px;
  font-size: 100px;
}

.dpx-gallery-experience .final-cta .button-primary{
  background: var(--ink);
  box-shadow: none;
}

.dpx-gallery-experience .site-footer{
  display: grid;
  padding: 70px max(32px, calc((100% - 1500px) / 2)) 28px;
  background: #0d0e11;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.dpx-gallery-experience .footer-brand img{
  width: 240px;
  height: auto;
  margin-bottom: 20px;
}

.dpx-gallery-experience .footer-brand p,
.dpx-gallery-experience .footer-note{
  color: var(--muted);
}

.dpx-gallery-experience .footer-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dpx-gallery-experience .footer-links h2{
  margin-bottom: 14px;
  font-size: 18px;
}

.dpx-gallery-experience .footer-links a{
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.dpx-gallery-experience .footer-note{
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.dpx-gallery-experience .search-dialog{
  width: min(920px, calc(100% - 32px));
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0c0e11;
  color: var(--white);
}

.dpx-gallery-experience .search-dialog::backdrop{
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.dpx-gallery-experience .dialog-close{
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}

.dpx-gallery-experience .search-dialog label{
  display: block;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dpx-gallery-experience .search-field{
  display: grid;
  grid-template-columns: 1fr auto;
}

.dpx-gallery-experience .search-field input,
.dpx-gallery-experience .search-field button{
  height: 62px;
  border: 1px solid var(--line);
}

.dpx-gallery-experience .search-field input{
  min-width: 0;
  padding: 0 18px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  outline: none;
  background: #15181c;
  color: var(--white);
}

.dpx-gallery-experience .search-field button{
  padding: 0 24px;
  border-color: var(--red);
  border-radius: 0 4px 4px 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 850;
  text-transform: uppercase;
}

.js-motion .dpx-gallery-experience .reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease-out, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-motion .dpx-gallery-experience .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine){
  .dpx-gallery-experience .desktop-nav a:hover::after,
.dpx-gallery-experience .icon-command:hover::after{
    transform: scaleX(1);
  }

  .dpx-gallery-experience .button:hover{
    transform: translateY(-3px);
  }

  .dpx-gallery-experience .button-primary:hover{
    background: var(--red-bright);
    box-shadow: 0 16px 42px rgba(255, 80, 0, 0.38);
  }

  .dpx-gallery-experience .button-secondary:hover{
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.08);
  }

  .dpx-gallery-experience .world-card:hover img{
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
  }

  .dpx-gallery-experience .product-column{
    transition: background-color 180ms ease-out, transform 180ms ease-out;
  }

  .dpx-gallery-experience .product-column:hover{
    z-index: 1;
    transform: translateY(-5px);
    background: #ffffff;
  }

  .dpx-gallery-experience .footer-links a:hover{
    color: var(--white);
  }
}

@media (max-width: 1180px){
  .dpx-gallery-experience .header-main{
    grid-template-columns: 190px 1fr auto;
  }

  .dpx-gallery-experience .desktop-nav{
    gap: 15px;
    font-size: 13px;
  }

  .dpx-gallery-experience h1{
    font-size: 88px;
  }

  .dpx-gallery-experience h2{
    font-size: 56px;
  }

  .dpx-gallery-experience .finder-section,
.dpx-gallery-experience .calculator-section,
.dpx-gallery-experience .faq-section{
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .dpx-gallery-experience .product-compare{
    grid-template-columns: repeat(2, 1fr);
  }

  .dpx-gallery-experience .material-word{
    font-size: 62px;
  }
}

@media (max-width: 860px){
  .dpx-gallery-experience{
    --header-height: 98px;
  }

  .dpx-gallery-experience .announcement{
    height: 26px;
    gap: 12px;
    font-size: 10px;
  }

  .dpx-gallery-experience .announcement span + span::before{
    margin-right: 12px;
  }

  .dpx-gallery-experience .header-main{
    height: 72px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }

  .dpx-gallery-experience .brand{
    width: 170px;
  }

  .dpx-gallery-experience .desktop-nav,
.dpx-gallery-experience .desktop-only{
    display: none;
  }

  .dpx-gallery-experience .menu-toggle{
    display: block;
  }

  .dpx-gallery-experience .mobile-menu{
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    height: calc(100dvh - var(--header-height));
    padding: 26px 20px 44px;
    align-content: start;
    overflow-y: auto;
    transform: translateX(100%);
    background: #0b0d10;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dpx-gallery-experience .mobile-menu.is-open{
    transform: translateX(0);
  }

  .dpx-gallery-experience .mobile-menu a{
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 24px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .dpx-gallery-experience .hero{
    min-height: 720px;
    height: 86vh;
    max-height: 860px;
  }

  .dpx-gallery-experience .hero-video{
    object-position: 57% center;
  }

  .dpx-gallery-experience .hero-shade{
    background: rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 -190px 130px rgba(0, 0, 0, 0.78);
  }

  .dpx-gallery-experience .hero-content{
    width: calc(100% - 36px);
    padding-bottom: 70px;
  }

  .dpx-gallery-experience h1{
    font-size: 64px;
  }

  .dpx-gallery-experience h2{
    font-size: 46px;
  }

  .dpx-gallery-experience .hero-copy{
    max-width: 540px;
    font-size: 17px;
  }

  .dpx-gallery-experience .video-toggle{
    right: 18px;
    bottom: 72px;
  }

  .dpx-gallery-experience .section-dark,
.dpx-gallery-experience .section-paper{
    padding: 82px 20px;
  }

  .dpx-gallery-experience .section-heading-row{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dpx-gallery-experience .dark-link{
    justify-self: start;
  }

  .dpx-gallery-experience .world-card,
.dpx-gallery-experience .world-card-wide{
    min-height: 400px;
  }

  .dpx-gallery-experience .material-band{
    min-height: 160px;
  }

  .dpx-gallery-experience .material-word{
    font-size: 46px;
  }

  .dpx-gallery-experience .transformation-section{
    min-height: 650px;
  }

  .dpx-gallery-experience .transformation-copy h2{
    font-size: 54px;
  }

  .dpx-gallery-experience .final-cta h2{
    font-size: 66px;
  }

  .dpx-gallery-experience .site-footer{
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 620px){
  .dpx-gallery-experience .announcement span:nth-child(2){
    display: none;
  }

  .dpx-gallery-experience .announcement span:nth-child(3)::before{
    margin-right: 12px;
  }

  .dpx-gallery-experience .brand{
    width: 146px;
  }

  .dpx-gallery-experience .icon-command{
    font-size: 12px;
  }

  .dpx-gallery-experience .hero{
    min-height: 700px;
    height: 88svh;
  }

  .dpx-gallery-experience .hero-video{
    object-position: 64% center;
  }

  .dpx-gallery-experience h1{
    font-size: 50px;
  }

  .dpx-gallery-experience h2{
    font-size: 40px;
  }

  .dpx-gallery-experience h3{
    font-size: 28px;
  }

  .dpx-gallery-experience .hero-copy{
    max-width: 360px;
    font-size: 16px;
  }

  .dpx-gallery-experience .hero-actions{
    width: 100%;
  }

  .dpx-gallery-experience .hero-actions .button{
    flex: 1 1 100%;
  }

  .dpx-gallery-experience .video-toggle{
    display: none;
  }

  .dpx-gallery-experience .hero-rail{
    padding: 0;
  }

  .dpx-gallery-experience .hero-rail span{
    font-size: 11px;
  }

  .dpx-gallery-experience .hero-rail span:first-child{
    padding-left: 42px;
  }

  .dpx-gallery-experience .finder-tool,
.dpx-gallery-experience .calculator-tool{
    padding: 18px;
  }

  .dpx-gallery-experience .segmented,
.dpx-gallery-experience .segmented-compact{
    grid-template-columns: repeat(2, 1fr);
  }

  .dpx-gallery-experience .finder-result{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .finder-result-media{
    min-height: 150px;
  }

  .dpx-gallery-experience .finder-result-copy{
    padding: 22px;
  }

  .dpx-gallery-experience .world-grid{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .world-card-wide{
    grid-column: auto;
  }

  .dpx-gallery-experience .world-card,
.dpx-gallery-experience .world-card-wide{
    min-height: 360px;
  }

  .dpx-gallery-experience .world-copy h3{
    font-size: 40px;
  }

  .dpx-gallery-experience .material-band{
    display: block;
    padding: 28px 20px;
  }

  .dpx-gallery-experience .material-word{
    margin: 8px 0;
    font-size: 54px;
    text-align: left;
  }

  .dpx-gallery-experience .product-compare{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .product-column h3,
.dpx-gallery-experience .product-column > p:not(.product-type){
    min-height: 0;
  }

  .dpx-gallery-experience .transformation-copy{
    right: 20px;
    bottom: 44px;
    left: 20px;
  }

  .dpx-gallery-experience .transformation-copy h2{
    font-size: 42px;
  }

  .dpx-gallery-experience .field-grid{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .calculator-output strong{
    font-size: 54px;
  }

  .dpx-gallery-experience .faq-list summary{
    font-size: 20px;
  }

  .dpx-gallery-experience .final-cta{
    min-height: 540px;
    padding: 60px 20px;
  }

  .dpx-gallery-experience .final-cta-inner{
    min-height: 420px;
  }

  .dpx-gallery-experience .final-cta h2{
    font-size: 52px;
  }

  .dpx-gallery-experience .footer-links{
    grid-template-columns: 1fr 1fr;
  }

  .dpx-gallery-experience .search-dialog{
    padding: 58px 20px 24px;
  }

  .dpx-gallery-experience .search-dialog label{
    font-size: 38px;
  }

  .dpx-gallery-experience .search-field{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .search-field input{
    border-right: 1px solid var(--line);
    border-radius: 4px 4px 0 0;
  }

  .dpx-gallery-experience .search-field button{
    border-radius: 0 0 4px 4px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-gallery-experience{
    scroll-behavior: auto;
  }

  .dpx-gallery-experience, .dpx-gallery-experience *,
.dpx-gallery-experience *::before,
.dpx-gallery-experience *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-motion .dpx-gallery-experience .reveal{
    opacity: 1;
    transform: none;
  }
}

.dpx-gallery-experience .category-index{
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.dpx-gallery-experience .category-index-heading{
  display: flex;
  margin-bottom: 22px;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.dpx-gallery-experience .category-index-heading h3,
.dpx-gallery-experience .category-index-heading p{
  margin: 0;
}

.dpx-gallery-experience .category-index-heading h3{
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dpx-gallery-experience .category-index-heading p{
  max-width: 460px;
  color: var(--muted);
  font-size: 15px;
  text-align: right;
}

.dpx-gallery-experience .category-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dpx-gallery-experience .category-tile{
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 116px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface-raised);
  color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.dpx-gallery-experience .category-tile::before{
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  z-index: -1;
}

.dpx-gallery-experience .category-tile span{
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-gallery-experience .category-tile strong{
  font-family: var(--display);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.04;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-transform: uppercase;
}

.dpx-gallery-experience .category-tile:hover,
.dpx-gallery-experience .category-tile:focus-visible{
  border-color: rgba(255, 80, 0, 0.72);
  background: #191c21;
  box-shadow: 0 12px 30px rgba(255, 80, 0, 0.14);
  color: var(--white);
  transform: translateY(-4px);
}

.dpx-gallery-experience .category-tile:hover::before,
.dpx-gallery-experience .category-tile:focus-visible::before{
  transform: scaleX(1);
}

.dpx-gallery-experience .category-tile:active{
  transform: translateY(-1px) scale(0.99);
}

@media (max-width: 1200px){
  .dpx-gallery-experience .category-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px){
  .dpx-gallery-experience .category-index{
    margin-top: 42px;
  }

  .dpx-gallery-experience .category-index-heading{
    align-items: start;
    flex-direction: column;
  }

  .dpx-gallery-experience .category-index-heading p{
    text-align: left;
  }

  .dpx-gallery-experience .category-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .dpx-gallery-experience .category-index-heading h3{
    font-size: 30px;
  }

  .dpx-gallery-experience .category-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .dpx-gallery-experience .category-tile{
    min-height: 104px;
    padding: 12px;
    gap: 14px;
  }

  .dpx-gallery-experience .category-tile strong{
    font-size: 15px;
    line-height: 1.08;
  }

  .dpx-gallery-experience .category-tile span{
    font-size: 9px;
  }
}

@media (hover: none){
  .dpx-gallery-experience .category-tile::before{
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-gallery-experience .category-tile,
.dpx-gallery-experience .category-tile::before{
    transition: none;
  }
}

.dpx-gallery-experience /* Orange-on-black contrast treatment inspired by the supplied reference. */
.announcement,
.dpx-gallery-experience .button-primary,
.dpx-gallery-experience .segmented button.is-active,
.dpx-gallery-experience .material-band,
.dpx-gallery-experience .search-field button,
.dpx-gallery-experience .cockpit-tabs button.is-active,
.dpx-gallery-experience .gallery-filters button.is-active,
.dpx-gallery-experience .finish-surface-options button.is-active,
.dpx-gallery-experience .timer-button{
  color: var(--ink);
}

.dpx-gallery-experience .kit-item:has(input:checked) .kit-check::after{
  color: var(--ink);
}

.dpx-gallery-experience /* Project Experience 2026: continuous dark system */
:root{
  --ink-deep: #050607;
  --surface: #0d1014;
  --surface-raised: #14171c;
  --line-strong: rgba(255, 255, 255, 0.24);
}

.dpx-gallery-experience main{
  background: var(--ink);
}

.dpx-gallery-experience main > section:not(.hero):not(.material-band):not(.transformation-section){
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dpx-gallery-experience .section-dark,
.dpx-gallery-experience .section-deep,
.dpx-gallery-experience .section-paper{
  padding: 120px max(32px, calc((100% - 1500px) / 2));
  color: var(--white);
}

.dpx-gallery-experience .section-dark{
  background: var(--ink);
}

.dpx-gallery-experience .section-deep,
.dpx-gallery-experience .section-paper{
  background: var(--surface);
  color: var(--white);
}

.dpx-gallery-experience .section-paper h1,
.dpx-gallery-experience .section-paper h2,
.dpx-gallery-experience .section-paper h3{
  color: var(--white);
}

.dpx-gallery-experience .section-heading-row > p,
.dpx-gallery-experience .section-intro p:not(.eyebrow){
  color: var(--muted);
}

.dpx-gallery-experience fieldset{
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.dpx-gallery-experience legend,
.dpx-gallery-experience .companion-controls label > span{
  display: block;
  width: 100%;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience select,
.dpx-gallery-experience .dimension-grid input,
.dpx-gallery-experience .companion-controls input,
.dpx-gallery-experience .companion-controls select{
  width: 100%;
  height: 58px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: #0b0d10;
  color: var(--white);
}

.dpx-gallery-experience select:focus,
.dpx-gallery-experience .dimension-grid input:focus,
.dpx-gallery-experience .companion-controls input:focus,
.dpx-gallery-experience .companion-controls select:focus{
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.15);
}

.dpx-gallery-experience .field-note,
.dpx-gallery-experience .technical-note,
.dpx-gallery-experience .data-source-note{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.dpx-gallery-experience .passport-progress{
  display: grid;
  margin: 0 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.dpx-gallery-experience .passport-progress span{
  position: relative;
  display: flex;
  min-height: 58px;
  padding: 0 20px;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .passport-progress span:last-child{
  border-right: 0;
}

.dpx-gallery-experience .passport-progress span::before{
  width: 0;
  height: 2px;
  margin-right: 0;
  content: "";
  background: var(--red);
  transition: width 220ms ease-out, margin-right 220ms ease-out;
}

.dpx-gallery-experience .passport-progress span.is-current{
  color: var(--white);
}

.dpx-gallery-experience .passport-progress span.is-current::before{
  width: 22px;
  margin-right: 10px;
}

.dpx-gallery-experience .passport-layout{
  display: grid;
  grid-template-columns: minmax(520px, 0.94fr) minmax(520px, 1.06fr);
  gap: 52px;
  align-items: start;
}

.dpx-gallery-experience .passport-controls{
  border-top: 1px solid var(--line);
}

.dpx-gallery-experience .passport-step{
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.dpx-gallery-experience .segmented-dual{
  grid-template-columns: repeat(2, 1fr);
}

.dpx-gallery-experience .segmented button,
.dpx-gallery-experience .finish-surface-options button,
.dpx-gallery-experience .gallery-filters button,
.dpx-gallery-experience .cockpit-tabs button{
  transition: background-color 160ms ease-out, color 160ms ease-out, border-color 160ms ease-out, transform 160ms ease-out;
}

.dpx-gallery-experience .dimension-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dpx-gallery-experience .dimension-grid label > span{
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.dpx-gallery-experience .dimension-grid input{
  font-family: var(--display);
  font-size: 24px;
}

.dpx-gallery-experience .dimension-step .field-note{
  margin: 14px 0 0;
}

.dpx-gallery-experience .passport-result{
  position: sticky;
  top: calc(var(--header-height) + 22px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-raised);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

.dpx-gallery-experience .passport-result.is-changing,
.dpx-gallery-experience .cockpit-panel.is-changing{
  opacity: 0.45;
  transform: translateY(5px);
}

.dpx-gallery-experience .passport-result-media{
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #090b0e;
}

.dpx-gallery-experience .passport-result-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dpx-gallery-experience .match-chip{
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(5, 6, 7, 0.74);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.dpx-gallery-experience .passport-result-copy{
  padding: 32px;
}

.dpx-gallery-experience .passport-result-copy h3{
  margin-bottom: 12px;
  font-size: 48px;
}

.dpx-gallery-experience .passport-result-copy > p:not(.step-label):not(.technical-note){
  color: var(--muted);
  font-size: 17px;
}

.dpx-gallery-experience .decision-stats{
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-gallery-experience .decision-stats div{
  min-width: 0;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dpx-gallery-experience .decision-stats dt,
.dpx-gallery-experience .cockpit-specs dt,
.dpx-gallery-experience .passport-dialog dt{
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.dpx-gallery-experience .decision-stats dd,
.dpx-gallery-experience .cockpit-specs dd,
.dpx-gallery-experience .passport-dialog dd{
  margin: 4px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.dpx-gallery-experience .result-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.dpx-gallery-experience .technical-note{
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--red);
}

.dpx-gallery-experience .project-kit{
  margin-top: 100px;
  padding: 54px 0 0;
  border-top: 1px solid var(--line-strong);
}

.dpx-gallery-experience .kit-heading,
.dpx-gallery-experience .kit-footer{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.dpx-gallery-experience .kit-heading h3{
  margin: 0;
  font-size: 48px;
}

.dpx-gallery-experience .kit-meter{
  width: min(300px, 34vw);
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.dpx-gallery-experience .kit-meter-track{
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.dpx-gallery-experience .kit-meter-track span{
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transition: width 240ms ease-out;
}

.dpx-gallery-experience .kit-list{
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.dpx-gallery-experience .kit-item{
  display: grid;
  min-height: 94px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
}

.dpx-gallery-experience .kit-item input{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.dpx-gallery-experience .kit-check{
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
}

.dpx-gallery-experience .kit-item:has(input:checked) .kit-check{
  border-color: var(--red);
  background: var(--red);
}

.dpx-gallery-experience .kit-item:has(input:checked) .kit-check::after{
  content: "\2713";
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.dpx-gallery-experience .kit-item strong,
.dpx-gallery-experience .kit-item small{
  display: block;
}

.dpx-gallery-experience .kit-item strong{
  font-family: var(--display);
  font-size: 21px;
  text-transform: uppercase;
}

.dpx-gallery-experience .kit-item small{
  margin-top: 3px;
  color: var(--muted);
}

.dpx-gallery-experience .kit-item > a{
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-gallery-experience .kit-footer{
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
  align-items: center;
}

.dpx-gallery-experience .kit-footer p{
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.dpx-gallery-experience .cockpit-tabs{
  display: grid;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dpx-gallery-experience .cockpit-tabs button,
.dpx-gallery-experience .gallery-filters button,
.dpx-gallery-experience .finish-surface-options button{
  min-height: 58px;
  padding: 10px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-gallery-experience .cockpit-tabs button.is-active,
.dpx-gallery-experience .gallery-filters button.is-active,
.dpx-gallery-experience .finish-surface-options button.is-active{
  background: var(--red);
  color: var(--white);
}

.dpx-gallery-experience .cockpit-panel{
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-raised);
  grid-template-columns: minmax(420px, 0.9fr) minmax(540px, 1.1fr);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

.dpx-gallery-experience .cockpit-media{
  display: grid;
  min-height: 560px;
  padding: 40px;
  place-items: center;
  border-right: 1px solid var(--line);
  background: #080a0d;
}

.dpx-gallery-experience .cockpit-media img{
  width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.dpx-gallery-experience .cockpit-copy{
  padding: 54px;
  align-self: center;
}

.dpx-gallery-experience .cockpit-copy h3{
  margin-bottom: 16px;
  font-size: 56px;
}

.dpx-gallery-experience .cockpit-copy > p:not(.product-type){
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.dpx-gallery-experience .cockpit-specs{
  display: grid;
  margin: 32px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-gallery-experience .cockpit-specs div{
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dpx-gallery-experience .data-source-note{
  max-width: 880px;
  margin: 22px 0 0;
}

.dpx-gallery-experience .gallery-filters{
  display: flex;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  overflow-x: auto;
}

.dpx-gallery-experience .gallery-filters button{
  min-width: 150px;
  white-space: nowrap;
}

.dpx-gallery-experience .project-gallery{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dpx-gallery-experience .project-card{
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-raised);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.dpx-gallery-experience .project-card-feature{
  min-height: 620px;
  grid-column: 1 / -1;
}

.dpx-gallery-experience .project-card[hidden]{
  display: none;
}

.dpx-gallery-experience .project-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease-out;
}

.dpx-gallery-experience .project-card::after{
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 -180px 130px rgba(0, 0, 0, 0.82);
  pointer-events: none;
}

.dpx-gallery-experience .project-card-copy{
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.dpx-gallery-experience .project-card-copy span{
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .project-card-copy h3{
  margin: 7px 0 0;
  font-size: 48px;
}

.dpx-gallery-experience .gallery-footer{
  display: grid;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.dpx-gallery-experience .gallery-footer p{
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.dpx-gallery-experience .companion-layout,
.dpx-gallery-experience .finish-layout,
.dpx-gallery-experience .help-layout{
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1.28fr);
  gap: 60px;
  align-items: stretch;
}

.dpx-gallery-experience .companion-controls{
  display: grid;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  gap: 20px;
}

.dpx-gallery-experience .companion-controls label{
  display: block;
}

.dpx-gallery-experience .mix-output{
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-rows: auto auto 1fr;
}

.dpx-gallery-experience .mix-components{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-gallery-experience .mix-components > div,
.dpx-gallery-experience .work-window,
.dpx-gallery-experience .mix-timer{
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dpx-gallery-experience .mix-components span,
.dpx-gallery-experience .work-window span,
.dpx-gallery-experience .mix-timer span{
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dpx-gallery-experience .mix-components strong{
  font-family: var(--display);
  font-size: 50px;
  line-height: 1;
}

.dpx-gallery-experience .work-window strong{
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
}

.dpx-gallery-experience .mix-timer{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.dpx-gallery-experience .mix-timer strong{
  font-family: var(--display);
  font-size: 70px;
  line-height: 1;
}

.dpx-gallery-experience .timer-button,
.dpx-gallery-experience .timer-reset{
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-gallery-experience .timer-button{
  border-color: var(--red);
  background: var(--red);
}

.dpx-gallery-experience .safety-strip{
  display: grid;
  min-height: 88px;
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--red);
  background: var(--surface);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.dpx-gallery-experience .safety-strip strong{
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}

.dpx-gallery-experience .safety-strip span{
  color: var(--muted);
}

.dpx-gallery-experience .safety-strip a{
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dpx-gallery-experience .finish-layout{
  grid-template-columns: minmax(560px, 1.35fr) minmax(340px, 0.65fr);
}

.dpx-gallery-experience .finish-preview{
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #080a0d;
}

.dpx-gallery-experience .finish-preview img,
.dpx-gallery-experience .finish-tint{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dpx-gallery-experience .finish-preview img{
  object-fit: cover;
  transition: opacity 180ms ease-out, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dpx-gallery-experience .finish-tint{
  background: rgba(0, 0, 0, 0);
  mix-blend-mode: color;
  pointer-events: none;
  transition: background-color 260ms ease-out, opacity 260ms ease-out;
}

.dpx-gallery-experience .finish-preview::after{
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 -170px 120px rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.dpx-gallery-experience .finish-caption{
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.dpx-gallery-experience .finish-caption span,
.dpx-gallery-experience .finish-caption strong{
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
}

.dpx-gallery-experience .finish-caption span{
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.dpx-gallery-experience .finish-caption strong{
  margin-top: 5px;
  font-size: 44px;
  line-height: 1;
}

.dpx-gallery-experience .finish-controls{
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-raised);
}

.dpx-gallery-experience .finish-controls fieldset + fieldset{
  margin-top: 34px;
}

.dpx-gallery-experience .finish-surface-options{
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.dpx-gallery-experience .swatch-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dpx-gallery-experience .swatch{
  display: grid;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.dpx-gallery-experience .swatch > span{
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.dpx-gallery-experience .swatch.is-active{
  border-color: var(--white);
  color: var(--white);
}

.dpx-gallery-experience .swatch-clear > span{ background: linear-gradient(135deg, #dbe5ea, #717b83); }
.dpx-gallery-experience .swatch-ocean > span{ background: #047bb2; }
.dpx-gallery-experience .swatch-ember > span{ background: #b9242f; }
.dpx-gallery-experience .swatch-graphite > span{ background: #282b31; }
.dpx-gallery-experience .swatch-gold > span{ background: #b8862d; }

.dpx-gallery-experience .finish-controls .field-note{
  margin: 32px 0 22px;
}

.dpx-gallery-experience .help-layout{
  grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1.38fr);
}

.dpx-gallery-experience .help-topics{
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}

.dpx-gallery-experience .help-topics button{
  display: grid;
  min-height: 74px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
}

.dpx-gallery-experience .help-topics button span{
  color: var(--red-bright);
  font-size: 12px;
}

.dpx-gallery-experience .help-topics button.is-active{
  background: var(--surface-raised);
  color: var(--white);
}

.dpx-gallery-experience .help-answer{
  min-height: 410px;
  padding: 52px;
  border-left: 3px solid var(--red);
  background: var(--surface-raised);
}

.dpx-gallery-experience .help-answer h3{
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 46px;
}

.dpx-gallery-experience .help-answer > p:not(.step-label){
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.dpx-gallery-experience .help-answer ol{
  display: grid;
  max-width: 760px;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.dpx-gallery-experience .help-answer li{
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: help-step;
}

.dpx-gallery-experience .help-answer li::before{
  margin-right: 12px;
  content: "0" counter(help-step);
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 850;
}

.dpx-gallery-experience .faq-list,
.dpx-gallery-experience .faq-list details{
  border-color: var(--line);
}

.dpx-gallery-experience .faq-list details p{
  color: var(--muted);
}

.dpx-gallery-experience .final-cta{
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
}

.dpx-gallery-experience .final-cta::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8vw;
  width: 6px;
  content: "";
  background: var(--red);
  box-shadow: 0 0 72px rgba(255, 80, 0, 0.42);
}

.dpx-gallery-experience .final-cta .button-primary{
  background: var(--red);
  box-shadow: 0 12px 32px rgba(255, 80, 0, 0.22);
}

.dpx-gallery-experience .passport-dock{
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: grid;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  background: rgba(13, 16, 20, 0.94);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease-out, visibility 180ms ease-out, transform 180ms ease-out, border-color 180ms ease-out;
}

.dpx-gallery-experience .passport-dock.is-visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dpx-gallery-experience .passport-dock span,
.dpx-gallery-experience .passport-dock small{
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.dpx-gallery-experience .passport-dock strong{
  margin: 2px 0;
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
}

.dpx-gallery-experience .passport-dialog{
  width: min(720px, calc(100% - 32px));
  padding: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--white);
}

.dpx-gallery-experience .passport-dialog::backdrop{
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.dpx-gallery-experience .passport-dialog h2{
  margin-bottom: 32px;
  font-size: 60px;
}

.dpx-gallery-experience .passport-dialog dl{
  display: grid;
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpx-gallery-experience .passport-dialog dl div{
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dpx-gallery-experience .button:active,
.dpx-gallery-experience .segmented button:active,
.dpx-gallery-experience .cockpit-tabs button:active,
.dpx-gallery-experience .gallery-filters button:active,
.dpx-gallery-experience .help-topics button:active,
.dpx-gallery-experience .timer-button:active,
.dpx-gallery-experience .timer-reset:active,
.dpx-gallery-experience .passport-dock:active{
  transform: translateY(1px) scale(0.99);
}

@media (hover: hover) and (pointer: fine){
  .dpx-gallery-experience .passport-result:hover .passport-result-media img,
.dpx-gallery-experience .finish-preview:hover img{
    transform: scale(1.025);
  }

  .dpx-gallery-experience .project-card:hover img{
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.04);
  }

  .dpx-gallery-experience .kit-item:hover,
.dpx-gallery-experience .help-topics button:hover,
.dpx-gallery-experience .cockpit-tabs button:hover:not(.is-active),
.dpx-gallery-experience .gallery-filters button:hover:not(.is-active),
.dpx-gallery-experience .finish-surface-options button:hover:not(.is-active){
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
  }

  .dpx-gallery-experience .passport-dock:hover{
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 1180px){
  .dpx-gallery-experience .passport-layout,
.dpx-gallery-experience .cockpit-panel,
.dpx-gallery-experience .companion-layout,
.dpx-gallery-experience .finish-layout,
.dpx-gallery-experience .help-layout{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .passport-result{
    position: relative;
    top: auto;
  }

  .dpx-gallery-experience .cockpit-media{
    min-height: 400px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dpx-gallery-experience .companion-layout,
.dpx-gallery-experience .finish-layout,
.dpx-gallery-experience .help-layout{
    gap: 28px;
  }
}

@media (max-width: 860px){
  .dpx-gallery-experience .section-dark,
.dpx-gallery-experience .section-deep,
.dpx-gallery-experience .section-paper{
    padding: 82px 20px;
  }

  .dpx-gallery-experience .passport-progress{
    margin-bottom: 34px;
  }

  .dpx-gallery-experience .passport-progress span{
    min-height: 52px;
    padding: 0 12px;
    font-size: 11px;
  }

  .dpx-gallery-experience .passport-layout{
    gap: 32px;
  }

  .dpx-gallery-experience .project-kit{
    margin-top: 72px;
  }

  .dpx-gallery-experience .kit-heading h3{
    font-size: 40px;
  }

  .dpx-gallery-experience .cockpit-copy{
    padding: 38px;
  }

  .dpx-gallery-experience .cockpit-tabs{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dpx-gallery-experience .project-card-feature{
    min-height: 520px;
  }

  .dpx-gallery-experience .finish-preview{
    min-height: 560px;
  }

  .dpx-gallery-experience .safety-strip{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px){
  .dpx-gallery-experience .section-heading-row{
    margin-bottom: 34px;
  }

  .dpx-gallery-experience .passport-progress{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .passport-progress span{
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dpx-gallery-experience .passport-progress span:last-child{
    border-bottom: 0;
  }

  .dpx-gallery-experience .dimension-grid,
.dpx-gallery-experience .decision-stats,
.dpx-gallery-experience .cockpit-specs,
.dpx-gallery-experience .mix-components,
.dpx-gallery-experience .passport-dialog dl{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .passport-result-media{
    height: 190px;
  }

  .dpx-gallery-experience .passport-result-copy{
    padding: 22px;
  }

  .dpx-gallery-experience .passport-result-copy h3{
    font-size: 36px;
  }

  .dpx-gallery-experience .result-actions{
    align-items: flex-start;
    flex-direction: column;
  }

  .dpx-gallery-experience .kit-heading,
.dpx-gallery-experience .kit-footer,
.dpx-gallery-experience .gallery-footer{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dpx-gallery-experience .kit-meter{
    width: 100%;
    text-align: left;
  }

  .dpx-gallery-experience .kit-item{
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .dpx-gallery-experience .kit-item > a{
    grid-column: 2;
  }

  .dpx-gallery-experience .cockpit-panel,
.dpx-gallery-experience .cockpit-media{
    min-height: 0;
  }

  .dpx-gallery-experience .cockpit-media{
    padding: 20px;
  }

  .dpx-gallery-experience .cockpit-copy{
    padding: 24px;
  }

  .dpx-gallery-experience .cockpit-copy h3{
    font-size: 40px;
  }

  .dpx-gallery-experience .project-gallery{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .project-card-feature{
    min-height: 420px;
    grid-column: auto;
  }

  .dpx-gallery-experience .project-card{
    min-height: 340px;
  }

  .dpx-gallery-experience .project-card-copy h3{
    font-size: 38px;
  }

  .dpx-gallery-experience .companion-controls,
.dpx-gallery-experience .finish-controls,
.dpx-gallery-experience .help-answer{
    padding: 22px;
  }

  .dpx-gallery-experience .mix-components strong{
    font-size: 42px;
  }

  .dpx-gallery-experience .work-window strong{
    font-size: 26px;
  }

  .dpx-gallery-experience .mix-timer{
    grid-template-columns: 1fr 1fr;
  }

  .dpx-gallery-experience .mix-timer > div{
    grid-column: 1 / -1;
  }

  .dpx-gallery-experience .finish-preview{
    min-height: 480px;
  }

  .dpx-gallery-experience .finish-caption strong{
    font-size: 34px;
  }

  .dpx-gallery-experience .finish-surface-options{
    grid-template-columns: 1fr;
  }

  .dpx-gallery-experience .help-topics button{
    font-size: 19px;
  }

  .dpx-gallery-experience .help-answer h3{
    font-size: 36px;
  }

  .dpx-gallery-experience .passport-dock{
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    min-width: 0;
    min-height: 56px;
    padding: 8px 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }

  .dpx-gallery-experience .passport-dock span,
.dpx-gallery-experience .passport-dock strong,
.dpx-gallery-experience .passport-dock small{
    margin: 0;
    white-space: nowrap;
  }

  .dpx-gallery-experience .passport-dock strong{
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .dpx-gallery-experience .passport-dock small{
    justify-self: end;
  }

  .dpx-gallery-experience .passport-dialog{
    padding: 50px 20px 24px;
  }

  .dpx-gallery-experience .passport-dialog h2{
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-gallery-experience .passport-result,
.dpx-gallery-experience .cockpit-panel,
.dpx-gallery-experience .project-card,
.dpx-gallery-experience .finish-preview img,
.dpx-gallery-experience .passport-dock{
    transition: none;
  }
}


.dpx-gallery-experience .gallery-page .desktop-nav a[aria-current="page"]::after{
  transform: scaleX(1);
}

.dpx-gallery-experience .gallery-page main{
  background: var(--ink);
}

.dpx-gallery-experience .gallery-hero{
  position: relative;
  display: grid;
  width: 100%;
  height: calc(100svh - 24px);
  min-height: 700px;
  max-height: 920px;
  padding: calc(var(--header-height) + 44px) clamp(28px, 5vw, 84px) 58px;
  overflow: hidden;
  isolation: isolate;
  align-items: end;
}

.dpx-gallery-experience .gallery-hero > img,
.dpx-gallery-experience .gallery-hero-shade{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dpx-gallery-experience .gallery-hero > img{
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.015);
}

.dpx-gallery-experience .gallery-hero-shade{
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 5, 6, 0.28) 0%, rgba(4, 5, 6, 0.2) 34%, rgba(4, 5, 6, 0.9) 100%),
    linear-gradient(90deg, rgba(4, 5, 6, 0.82) 0%, rgba(4, 5, 6, 0.26) 58%, rgba(4, 5, 6, 0.5) 100%);
}

.dpx-gallery-experience .gallery-hero-copy{
  width: min(760px, 72vw);
}

.dpx-gallery-experience .gallery-hero-copy h1{
  max-width: 720px;
  margin: 14px 0 20px;
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.88;
  text-transform: uppercase;
}

.dpx-gallery-experience .gallery-hero-copy > p:not(.eyebrow){
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.dpx-gallery-experience .gallery-hero-copy .hero-actions{
  margin-top: 30px;
}

.dpx-gallery-experience .gallery-hero-index{
  position: absolute;
  right: clamp(28px, 5vw, 84px);
  bottom: 60px;
  display: grid;
  min-width: 190px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.dpx-gallery-experience .gallery-hero-index span{
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
}

.dpx-gallery-experience .gallery-community{
  padding-top: 120px;
}

.dpx-gallery-experience .gallery-community .project-card-copy small{
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.dpx-gallery-experience .gallery-footer-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px){
  .dpx-gallery-experience .gallery-hero{
    height: calc(100svh - 18px);
    min-height: 720px;
    padding: calc(var(--header-height) + 42px) 24px 42px;
  }

  .dpx-gallery-experience .gallery-hero-copy{
    width: 100%;
    padding-bottom: 104px;
  }

  .dpx-gallery-experience .gallery-hero-copy h1{
    font-size: 58px;
  }

  .dpx-gallery-experience .gallery-hero-index{
    right: 24px;
    bottom: 32px;
    left: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-width: 0;
  }

  .dpx-gallery-experience .gallery-hero-index span{
    padding: 9px 6px;
    text-align: center;
  }

  .dpx-gallery-experience .gallery-footer-actions{
    justify-content: flex-start;
  }
}

@media (max-width: 620px){
  .dpx-gallery-experience .gallery-hero{
    height: calc(100svh - 12px);
    min-height: 680px;
    padding: calc(var(--header-height) + 28px) 18px 30px;
  }

  .dpx-gallery-experience .gallery-hero > img{
    object-position: 52% center;
  }

  .dpx-gallery-experience .gallery-hero-copy{
    padding-bottom: 118px;
  }

  .dpx-gallery-experience .gallery-hero-copy h1{
    margin: 11px 0 16px;
    font-size: 48px;
  }

  .dpx-gallery-experience .gallery-hero-copy > p:not(.eyebrow){
    font-size: 15px;
  }

  .dpx-gallery-experience .gallery-hero-copy .hero-actions{
    margin-top: 22px;
  }

  .dpx-gallery-experience .gallery-hero-index{
    right: 18px;
    bottom: 24px;
    left: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dpx-gallery-experience .gallery-community{
    padding-top: 82px;
  }
}

@media (prefers-reduced-motion: reduce){
  .dpx-gallery-experience .gallery-hero > img{
    transform: none;
  }
}


/* NATIVE SYSTEMS HUB */

:root {
    --dpx-hub-bg: #0b0e0c;
    --dpx-hub-panel: #0e110f;
    --dpx-hub-text: #f3f3ed;
    --dpx-hub-muted: #9b9f99;
    --dpx-hub-line: rgba(255, 255, 255, 0.12);
    --dpx-hub-orange: #ff5a00;
}

body.dpx-subcategory-hub,
body.dpx-subcategory-hub #page-wrapper,
body.dpx-subcategory-hub #content-wrapper,
body.dpx-subcategory-hub #main-wrapper,
body.dpx-subcategory-hub main {
    background: var(--dpx-hub-bg);
    color: var(--dpx-hub-text);
}

body.dpx-subcategory-hub main {
    padding-top: 112px;
}

.dpx-subcategory-hub #sidepanel_left {
    display: none !important;
}

.dpx-subcategory-hub #content-wrapper {
    width: 100% !important;
    max-width: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.dpx-subcategory-hub #content,
.dpx-subcategory-hub #content > .row {
    width: 100%;
    max-width: none;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.dpx-subcategory-hub .dpx-native-main-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.dpx-subcategory-hub .dpx-native-result-wrapper > :not(.dpx-native-subcategory-section):not(.dpx-subcategory-cta) {
    display: none !important;
}

.dpx-subcategory-hub .dpx-native-subcategory-section {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dpx-subcategory-hub .dpx-native-subcategory-body {
    width: min(1380px, calc(100% - 72px));
    margin: 0 auto;
    padding: clamp(72px, 9vw, 132px) 0 clamp(84px, 10vw, 150px);
}

.dpx-subcategory-hub .dpx-native-subcategory-heading {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
    gap: clamp(32px, 7vw, 120px);
    margin: 0 0 clamp(44px, 6vw, 78px);
    color: var(--dpx-hub-text);
}

.dpx-subcategory-eyebrow {
    margin: 0 0 18px;
    color: var(--dpx-hub-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dpx-subcategory-hub .dpx-native-subcategory-heading h1,
.dpx-subcategory-cta h2 {
    margin: 0;
    color: var(--dpx-hub-text);
    font-size: clamp(42px, 6vw, 86px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dpx-subcategory-intro {
    align-self: end;
    margin: 0 0 4px;
    color: var(--dpx-hub-muted);
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.65;
}

.dpx-subcategory-filters {
    display: flex;
    gap: 9px;
    margin: 0 0 clamp(30px, 4vw, 48px);
    padding: 0 0 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 90, 0, 0.45) transparent;
}

.dpx-subcategory-filters button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--dpx-hub-line);
    border-radius: 2px;
    color: var(--dpx-hub-muted);
    background: rgba(255, 255, 255, 0.015);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.dpx-subcategory-filters button.is-active {
    border-color: var(--dpx-hub-orange);
    color: #080908;
    background: var(--dpx-hub-orange);
}

.dpx-subcategory-hub .dpx-native-subcategory-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 0 !important;
    padding: 0;
    border: 0;
}

.dpx-subcategory-hub .dpx-native-subcategory-card {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.dpx-subcategory-hub .dpx-native-subcategory-card[hidden] {
    display: none !important;
}

.dpx-subcategory-hub .content-cats-small__item,
.dpx-subcategory-hub .dpx-category-tile {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 156px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    background: #111317;
    color: var(--dpx-hub-text);
    isolation: isolate;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.dpx-subcategory-hub .dpx-category-tile > * {
    min-width: 0;
}

.dpx-subcategory-hub .content-cats-small__item::before,
.dpx-subcategory-hub .dpx-category-tile::before {
    position: absolute;
    z-index: 3;
    inset: auto 0 0;
    height: 3px;
    background: var(--dpx-hub-orange);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.dpx-subcategory-hub .content-cats-small__item::after,
.dpx-subcategory-hub .dpx-category-tile::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 7, 9, 0.16) 0%, rgba(6, 7, 9, 0.58) 48%, rgba(6, 7, 9, 0.97) 100%);
    content: "";
    pointer-events: none;
}

.dpx-subcategory-hub .content-cats-small_link {
    position: absolute !important;
    z-index: 5;
    inset: 0;
}

.dpx-subcategory-hub .dpx-category-tile-link {
    position: absolute !important;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.dpx-subcategory-hub .content-cats-small__image,
.dpx-subcategory-hub .dpx-category-tile-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #111317;
    pointer-events: none;
}

.dpx-subcategory-hub .content-cats-small__image .square,
.dpx-subcategory-hub .content-cats-small__image .inner,
.dpx-subcategory-hub .dpx-category-tile-media picture {
    position: static !important;
    display: block !important;
    width: 100%;
    height: 100%;
    padding: 0 !important;
}

.dpx-subcategory-hub .content-cats-small__image img,
.dpx-subcategory-hub .dpx-category-tile-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    opacity: 0.5;
    filter: saturate(0.92) contrast(1.04) brightness(0.68);
    transform: scale(1.01);
    transition: opacity 240ms ease-out, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease-out;
}

.dpx-subcategory-hub .dpx-category-tile-copy-shell {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-width: 0;
    margin-top: auto;
    pointer-events: none;
}

.dpx-subcategory-hub .dpx-category-tile-copy-shell a {
    pointer-events: auto;
}

.dpx-subcategory-hub .content-cats-small_titles-folder,
.dpx-subcategory-hub .dpx-category-tile-copy {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 88%;
    min-height: 0;
    margin-top: auto;
    flex-direction: column;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    text-align: left !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.92);
}

.dpx-subcategory-meta {
    color: #ff7a32;
    font-family: var(--display, "Arial Narrow", Arial, sans-serif);
    font-size: 10px;
    font-weight: 850;
    line-height: 1.1;
    text-transform: uppercase;
}

.dpx-subcategory-hub .content-cats-small_title,
.dpx-subcategory-hub .dpx-category-tile-title {
    position: relative;
    z-index: 4;
    display: block;
    color: var(--dpx-hub-text);
    font-family: var(--display, "Arial Narrow", Arial, sans-serif);
    font-size: 20px;
    font-weight: 850;
    line-height: 1.04;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-transform: uppercase;
    text-decoration: none;
}

.dpx-subcategory-cta {
    position: relative;
    display: grid;
    width: min(1380px, calc(100% - 72px));
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.68fr) auto;
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    margin: 0 auto clamp(90px, 10vw, 150px);
    padding: clamp(48px, 7vw, 92px);
    overflow: hidden;
    border: 1px solid var(--dpx-hub-line);
    background:
        linear-gradient(115deg, rgba(17, 20, 17, 0.98) 0%, rgba(14, 17, 15, 0.94) 55%, rgba(19, 17, 13, 0.96) 100%),
        radial-gradient(circle at 78% 36%, rgba(255, 90, 0, 0.3), transparent 40%);
}

.dpx-subcategory-cta::before {
    position: absolute;
    z-index: 0;
    top: -130px;
    right: 7%;
    width: 430px;
    height: 320px;
    content: "";
    opacity: 0.2;
    border-radius: 50%;
    background: var(--dpx-hub-orange);
    filter: blur(100px);
}

.dpx-subcategory-cta > * {
    position: relative;
    z-index: 1;
}

.dpx-subcategory-cta h2 {
    max-width: 900px;
    font-size: clamp(36px, 5vw, 70px);
}

.dpx-subcategory-cta > p {
    margin: 0;
    color: var(--dpx-hub-muted);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.65;
}

.dpx-subcategory-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid var(--dpx-hub-orange);
    color: #080908;
    background: var(--dpx-hub-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .dpx-subcategory-filters button:hover:not(.is-active) {
        border-color: rgba(255, 90, 0, 0.55);
        color: var(--dpx-hub-orange);
        transform: translateY(-2px);
    }

    .dpx-subcategory-hub .content-cats-small__item:hover,
    .dpx-subcategory-hub .content-cats-small__item:focus-within,
    .dpx-subcategory-hub .dpx-category-tile:hover,
    .dpx-subcategory-hub .dpx-category-tile:focus-within {
        z-index: 2;
        border-color: rgba(255, 80, 0, 0.72);
        background: #191c21;
        box-shadow: 0 12px 30px rgba(255, 80, 0, 0.14);
        transform: translateY(-4px);
    }

    .dpx-subcategory-hub .content-cats-small__item:hover::before,
    .dpx-subcategory-hub .content-cats-small__item:focus-within::before,
    .dpx-subcategory-hub .dpx-category-tile:hover::before,
    .dpx-subcategory-hub .dpx-category-tile:focus-within::before {
        transform: scaleX(1);
    }

    .dpx-subcategory-hub .content-cats-small__item:hover img,
    .dpx-subcategory-hub .content-cats-small__item:focus-within img,
    .dpx-subcategory-hub .dpx-category-tile:hover img,
    .dpx-subcategory-hub .dpx-category-tile:focus-within img {
        opacity: 0.68;
        filter: saturate(1) contrast(1.08) brightness(0.78);
        transform: scale(1.055);
    }

    .dpx-subcategory-button:hover {
        color: #080908;
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(255, 90, 0, 0.24);
    }
}

@media (max-width: 1219px) {
    .dpx-subcategory-hub .dpx-native-subcategory-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    body.dpx-subcategory-hub main {
        padding-top: 98px;
    }

    .dpx-subcategory-hub .dpx-native-subcategory-heading,
    .dpx-subcategory-cta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .dpx-subcategory-hub .dpx-native-subcategory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .dpx-subcategory-hub .dpx-native-subcategory-body {
        width: calc(100% - 28px);
    }

    .dpx-subcategory-hub .dpx-native-subcategory-heading {
        gap: 20px;
    }

    .dpx-subcategory-hub .dpx-native-subcategory-heading h1 {
        font-size: clamp(38px, 13vw, 56px);
    }

    .dpx-subcategory-hub .dpx-native-subcategory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .dpx-subcategory-hub .content-cats-small__item,
    .dpx-subcategory-hub .dpx-category-tile {
        min-height: 124px;
        gap: 14px;
        padding: 12px;
    }

    .dpx-subcategory-hub .content-cats-small_titles-folder,
    .dpx-subcategory-hub .dpx-category-tile-copy {
        max-width: 96%;
    }

    .dpx-subcategory-hub .content-cats-small_title,
    .dpx-subcategory-hub .dpx-category-tile-title {
        font-size: 15px;
        line-height: 1.08;
    }

    .dpx-subcategory-meta {
        font-size: 9px;
    }

    .dpx-subcategory-cta {
        width: calc(100% - 28px);
        padding: 34px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dpx-subcategory-hub .content-cats-small__item,
    .dpx-subcategory-hub .dpx-category-tile,
    .dpx-subcategory-hub .content-cats-small__image img,
    .dpx-subcategory-hub .dpx-category-tile-media img,
    .dpx-subcategory-hub .content-cats-small__item::before,
    .dpx-subcategory-hub .dpx-category-tile::before,
    .dpx-subcategory-button {
        transition: none;
    }
}

@media (hover: none) {
    .dpx-subcategory-hub .content-cats-small__item::before {
        transform: scaleX(1);
    }
}

/* RC14 native shop contrast and product-gallery framing. */
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .hr-sect,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .hr-sect {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .hr-sect::before,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .hr-sect::after,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .hr-sect::before,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .hr-sect::after {
    border-color: rgba(247, 245, 241, 0.42) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .product-wrapper,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .product-wrapper a,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .base-price,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .product-wrapper,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .product-wrapper a,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .base-price {
    color: var(--dpx-muted) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .product-wrapper a:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .product-wrapper a:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .product-wrapper a:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .product-wrapper a:focus {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .price,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-xsell .productbox-price,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .price,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #slider-related .productbox-price {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #product-tabs .nav-link:not(.active) {
    border-bottom-color: transparent !important;
    color: var(--dpx-muted) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #gallery,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper .slick-list,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper .slick-track,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper .slick-slide,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper .square-image,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper .square-image > .inner,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper picture {
    background: #050607 !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper .slick-list,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper .square-image,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper .square-image > .inner,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper picture {
    overflow: hidden !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper img.product-image {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    transform: none !important;
    transform-origin: center !important;
    background: #050607 !important;
}

/* JTL's generated 1200px image for article 2267 contains a 29px white edge. */
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content #image_wrapper img.product-image[src*="/product/2267/"] {
    transform: scale(1.052) !important;
}

/* 2.0.19: one readable dark treatment across all native JTL page types. */
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .title,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .h1,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .h2,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .h3,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .h4,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .h5,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .h6,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content legend,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content label {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content a:not(.btn):not(.badge):not(.dropdown-item):not(.nav-link):not(.text-danger):not(.text-success) {
    color: #d6d7db !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content a:not(.btn):not(.badge):not(.dropdown-item):not(.nav-link):not(.text-danger):not(.text-success):hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content a:not(.btn):not(.badge):not(.dropdown-item):not(.nav-link):not(.text-danger):not(.text-success):focus {
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content label .required-star,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content label .text-danger,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .form-group.required label::after {
    border: 0 !important;
    background: transparent !important;
    color: var(--dpx-orange-soft) !important;
    box-shadow: none !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .alert-info,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .alert-light,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .alert-secondary {
    border-color: rgba(255, 90, 0, 0.42) !important;
    background: #0c0e12 !important;
    color: var(--dpx-orange-soft) !important;
    box-shadow: 0 0 24px rgba(255, 90, 0, 0.08) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select > .dropdown-toggle,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select > .dropdown-toggle.btn-light,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select.show > .dropdown-toggle {
    border-color: rgba(255, 255, 255, 0.24) !important;
    background: #0c0e12 !important;
    color: var(--dpx-white) !important;
    box-shadow: none !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select > .dropdown-toggle .filter-option,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select > .dropdown-toggle .filter-option-inner,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select > .dropdown-toggle .filter-option-inner-inner {
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select .dropdown-menu,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select .dropdown-menu.inner {
    border-color: rgba(255, 255, 255, 0.16) !important;
    background: #111419 !important;
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select .dropdown-item {
    background: transparent !important;
    color: var(--dpx-white) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select .dropdown-item:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select .dropdown-item:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select .dropdown-item.active,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #content .bootstrap-select .selected > .dropdown-item {
    background: rgba(255, 90, 0, 0.14) !important;
    color: var(--dpx-orange-soft) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left .collapse,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left .collapsing,
html.dpx-cinematic-template body.dpx-cinematic-shell:not(.dpx-custom-route) #sidepanel_left .snippets-categories-collapse {
    background-color: #0b0d10 !important;
    color: var(--dpx-white) !important;
}

/* 2.0.20: native JTL 5.7 online withdrawal flow in the DIPOXY visual system. */
html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: clamp(32px, 6vw, 72px) clamp(18px, 4vw, 56px);
    border-top: 1px solid rgba(255, 90, 0, 0.38);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #080a0d;
}

html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form .form-control,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form .form-control,
html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form input,
html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form textarea,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form input,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form textarea {
    border-color: rgba(255, 255, 255, 0.26) !important;
    background: #0d1014 !important;
    color: var(--dpx-white) !important;
    caret-color: var(--dpx-orange) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form .form-control:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form .form-control:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form input:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form textarea:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form input:focus,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form textarea:focus {
    border-color: var(--dpx-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.16) !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form .form-text,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form .form-text,
html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form small,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form small {
    color: #b8bbc2 !important;
}

html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form .btn-primary,
html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form .btn-primary {
    min-height: 50px;
    border-color: var(--dpx-orange) !important;
    background: var(--dpx-orange) !important;
    color: #08090a !important;
    font-weight: 900;
    box-shadow: 0 12px 34px rgba(255, 90, 0, 0.2) !important;
}

@media (hover: hover) and (pointer: fine) {
    html.dpx-cinematic-template body.dpx-cinematic-shell #online-revocation-form .btn-primary:hover,
    html.dpx-cinematic-template body.dpx-cinematic-shell .online-revocation-form .btn-primary:hover {
        background: var(--dpx-orange-soft) !important;
        transform: translateY(-2px);
        box-shadow: 0 18px 42px rgba(255, 90, 0, 0.3) !important;
    }
}

/* RC22: authenticated, consent-gated Instagram gallery. */
html.dpx-cinematic-template body.dpx-cinematic-shell #content .tab-navigation .nav-link::after,
html.dpx-cinematic-template body.dpx-cinematic-shell #content .tab-navigation .nav-link:hover::after,
html.dpx-cinematic-template body.dpx-cinematic-shell #content .tab-navigation .nav-link:focus::after {
  border-color: #ff5a00 !important;
  background-color: #ff5a00 !important;
}
html.dpx-cinematic-template body.dpx-cinematic-shell #content .tab-navigation .nav-link:hover,
html.dpx-cinematic-template body.dpx-cinematic-shell #content .tab-navigation .nav-link:focus-visible { color: #ff7933 !important; }
.dpx-gallery-experience .dpx-instagram-stage { padding: 56px 0; background:#08090b; border-bottom:1px solid #333; }
.dpx-instagram-stage [hidden] { display:none !important; }
.dpx-ig-heading,.dpx-ig-consent,.dpx-ig-status,.dpx-ig-toolbar,.dpx-ig-row-heading,.dpx-ig-footnote { width:min(1480px,calc(100% - 64px)); margin-inline:auto; }
.dpx-ig-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:28px; }
.dpx-gallery-experience .dpx-ig-heading h1 { font-family:var(--display); font-size:48px; line-height:1; margin:12px 0; letter-spacing:0; }
.dpx-ig-heading h1 span { color:#ff7933; }
.dpx-ig-heading p,.dpx-ig-consent p { color:#d0d0d3; margin-bottom:12px; }
.dpx-ig-heading .button { flex-shrink:0; gap:10px; }
.dpx-instagram-stage svg { width:22px; height:22px; flex:none; vertical-align:middle; }
.dpx-ig-consent { border-block:1px solid #303238; padding-block:24px; }
.dpx-ig-consent p { max-width:760px; }
.dpx-ig-consent > div { display:flex; gap:24px; flex-wrap:wrap; align-items:center; }
.dpx-ig-status { color:#e3e3e5; min-height:0; }
.dpx-ig-toolbar,.dpx-ig-row-heading,.dpx-ig-footnote { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.dpx-ig-toolbar { color:#bbbfc5; font-size:14px; margin-bottom:12px; }
.dpx-ig-icon-button { display:inline-grid; place-items:center; width:44px; height:44px; padding:0; border:1px solid #555963; background:#101216; color:#f5f5f5; border-radius:4px; cursor:pointer; transition:background-color 160ms ease,border-color 160ms ease; }
.dpx-ig-icon-button:hover,.dpx-ig-icon-button:focus-visible { border-color:#ff7933; color:#ff7933; background:#1c1815; }
.dpx-instagram-stage a:focus-visible,.dpx-instagram-stage button:focus-visible,.dpx-ig-viewport:focus-visible { outline:2px solid #ff7933; outline-offset:3px; }
.dpx-ig-icon-button:active { transform:scale(.96); }
.dpx-gallery-experience .dpx-ig-row-heading h2 { font-family:var(--display); font-size:26px; color:#f5f5f5; margin:0; letter-spacing:0; }
.dpx-ig-row-heading > div { display:flex; gap:8px; }
.dpx-gallery-experience section.dpx-ig-row { margin-bottom:26px; padding:0; }
.dpx-ig-viewport { width:100%; overflow-x:auto; overflow-y:hidden; overscroll-behavior-x:contain; scrollbar-width:thin; scrollbar-color:#a64b1c #151719; padding-block:12px; }
.dpx-ig-track { width:max-content; display:flex; gap:16px; padding-left:max(32px,calc((100vw - 1480px)/2)); padding-right:32px; }
.dpx-ig-set { display:flex; gap:16px; flex:none; }
.dpx-ig-card { position:relative; flex:none; width:248px; height:280px; overflow:hidden; border:1px solid #34383d; border-radius:6px; background:#111418; padding:0; cursor:pointer; color:white; transition:transform 180ms ease,border-color 180ms ease,box-shadow 180ms ease; }
.dpx-ig-row[data-ig-row="videos"] .dpx-ig-card { width:196px; height:306px; }
.dpx-ig-card img { width:100%; height:100%; object-fit:contain; display:block; }
.dpx-ig-card .dpx-ig-caption { position:absolute; bottom:0; left:0; right:0; padding:26px 12px 12px; font-size:13px; line-height:1.35; text-align:left; color:#fff; background:linear-gradient(transparent,rgba(0,0,0,.94)); }
.dpx-ig-caption span { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden; }
.dpx-ig-play { position:absolute; right:12px; top:12px; display:grid; place-items:center; width:40px; height:40px; color:#ff7933; background:#090b0edf; border:1px solid #ff7933; border-radius:50%; }
.dpx-ig-card.has-image-error img { visibility:hidden; }
@media(hover:hover) { .dpx-ig-card:hover { transform:translateY(-4px); border-color:#ff7933; box-shadow:0 0 18px #ff5a0022; } }
.dpx-ig-footnote { color:#bfc1c5; font-size:13px; flex-wrap:wrap; margin-top:22px; }
.dpx-ig-footnote button { border:0; background:transparent; color:#d9d9dc; text-decoration:underline; cursor:pointer; padding:10px 0; }
.dpx-ig-dialog { width:min(650px,calc(100% - 24px)); max-height:92dvh; padding:18px; border:1px solid #565961; border-radius:6px; background:#101216; color:#f5f5f5; }
.dpx-ig-dialog::backdrop { background:rgba(0,0,0,.85); }
.dpx-ig-dialog-heading { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px; }
.dpx-gallery-experience .dpx-ig-dialog h2 { font-size:22px; margin:0; }
.dpx-ig-dialog video { display:block; width:100%; height:min(65dvh,660px); object-fit:contain; background:#060708; }
.dpx-ig-dialog > a { display:inline-block; color:#ff7933; margin-top:12px; }
.dpx-gallery-experience .gallery-hero-copy h2 { font-family:var(--display); font-size:48px; line-height:1; text-transform:uppercase; }
@media(max-width:760px) {
 .dpx-gallery-experience .dpx-instagram-stage { padding:32px 0; }
 .dpx-ig-heading,.dpx-ig-consent,.dpx-ig-status,.dpx-ig-toolbar,.dpx-ig-row-heading,.dpx-ig-footnote { width:calc(100% - 32px); }
 .dpx-ig-heading { flex-direction:column; align-items:flex-start; gap:14px; }
 .dpx-gallery-experience .dpx-ig-heading h1 { font-size:36px; }
 .dpx-ig-track { padding-inline:16px; gap:12px; }
 .dpx-ig-set { gap:12px; }
 .dpx-ig-card { width:210px; height:244px; }
 .dpx-ig-row[data-ig-row="videos"] .dpx-ig-card { width:170px; height:270px; }
 .dpx-gallery-experience .gallery-hero-copy h2 { font-size:34px; }
}
@media(prefers-reduced-motion:reduce) { .dpx-ig-card,.dpx-ig-icon-button { transition:none; transform:none !important; } }

/* RC25: NOVA fullscreen product gallery must share the dark image stage. */
body.dpx-cinematic-shell #image_wrapper.fullscreen .gallery-with-action-main,
body.dpx-cinematic-shell #image_wrapper.fullscreen .product-detail-image-topbar,
body.dpx-cinematic-shell #image_wrapper.fullscreen .product-detail-image-preview-bar {
  background: #050607 !important;
}
body.dpx-cinematic-shell #image_wrapper.fullscreen #image_fullscreen_close {
  background: #111419;
  color: #f7f5f1;
}
body.dpx-cinematic-shell #image_wrapper.fullscreen #image_fullscreen_close:hover {
  background: #ff5a00;
  color: #050607;
}
body.dpx-cinematic-shell #image_wrapper.fullscreen #image_fullscreen_close:focus-visible {
  outline: 2px solid #ff5a00;
  outline-offset: 3px;
}