:root {
    --cd-ink: #111827;
    --cd-copy: #475569;
    --cd-muted: #68788d;
    --cd-border: #d7e2ee;
    --cd-surface: #ffffff;
    --cd-soft: #f4f8fc;
    --cd-primary: #1f5ed6;
    --cd-primary-strong: #174cae;
    --cd-accent: #10856b;
    --cd-accent-soft: #eaf8f4;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    color: var(--cd-ink);
    background: #f7f9fc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

.cd-page {
    min-height: 100vh;
    overflow: hidden;
}

.cd-hero {
    min-height: max(650px, calc(100vh - 54px));
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #eef4fa;
}

.cd-prism-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
    pointer-events: none;
}

.cd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: rgba(249, 252, 255, .16);
}

.cd-hero-frame,
.cd-info-inner {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.cd-hero-frame {
    min-height: max(650px, calc(100vh - 54px));
    display: grid;
    grid-template-rows: 76px minmax(0, 1fr) 42px;
}

.cd-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(117, 142, 171, .25);
}

.cd-brand,
.cd-nav-actions,
.cd-nav-actions a,
.cd-actions,
.cd-primary,
.cd-secondary,
.cd-facts,
.cd-facts span,
.cd-product-caption,
.cd-product-caption span {
    display: flex;
    align-items: center;
}

.cd-brand {
    min-width: 0;
    gap: 11px;
    color: inherit;
    text-decoration: none;
}

.cd-brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    overflow: hidden;
    border: 1px solid rgba(151, 174, 198, .45);
    border-radius: 8px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 8px 20px rgba(37, 58, 85, .08);
}

.cd-brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cd-brand strong,
.cd-brand small {
    display: block;
}

.cd-brand strong {
    color: var(--cd-ink);
    font-size: 15px;
    line-height: 1.2;
}

.cd-brand small {
    margin-top: 3px;
    color: var(--cd-accent);
    font-size: 10px;
    font-weight: 900;
}

.cd-nav-actions {
    gap: 8px;
}

.cd-nav-actions a {
    min-height: 36px;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(142, 164, 188, .40);
    border-radius: 7px;
    color: #42566d;
    background: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.cd-nav-actions a:hover,
.cd-nav-actions a:focus-visible {
    color: var(--cd-primary);
    border-color: rgba(31, 94, 214, .38);
    background: rgba(255, 255, 255, .9);
    outline: 0;
}

.cd-hero-main {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(390px, .84fr) minmax(520px, 1.16fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
    padding: 44px 0 38px;
}

.cd-copy {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.cd-state {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2e597e;
    font-size: 12px;
    font-weight: 900;
}

.cd-state > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #26b981;
    box-shadow: 0 0 0 5px rgba(38, 185, 129, .12);
}

.cd-state em {
    padding-left: 8px;
    border-left: 1px solid rgba(83, 109, 137, .28);
    color: var(--cd-muted);
    font-style: normal;
}

.cd-copy h1 {
    max-width: 700px;
    margin: 20px 0 0;
    color: #101827;
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

.cd-lead {
    margin: 22px 0 0;
    color: #253950;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.45;
}

.cd-description {
    max-width: 58ch;
    margin: 10px 0 0;
    color: var(--cd-copy);
    font-size: 14px;
    line-height: 1.8;
}

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

.cd-primary,
.cd-secondary,
.cd-panel-download {
    min-height: 46px;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 0 17px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 180ms cubic-bezier(.16, 1, .3, 1), border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cd-primary {
    color: #fff;
    border-color: var(--cd-primary);
    background: var(--cd-primary);
    box-shadow: 0 14px 28px rgba(31, 94, 214, .20);
}

.cd-primary small {
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, .28);
    color: rgba(255, 255, 255, .78);
    font-size: 10px;
}

.cd-primary:hover,
.cd-primary:focus-visible {
    color: #fff;
    background: var(--cd-primary-strong);
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(31, 94, 214, .25);
    outline: 0;
}

.cd-primary.is-disabled {
    color: #8795a5;
    border-color: #d2dce7;
    background: #eaf0f6;
    box-shadow: none;
}

.cd-secondary {
    color: #2f485f;
    border-color: rgba(127, 151, 176, .46);
    background: rgba(255, 255, 255, .72);
}

.cd-secondary:hover,
.cd-secondary:focus-visible {
    color: var(--cd-primary);
    border-color: rgba(31, 94, 214, .38);
    background: #fff;
    transform: translateY(-2px);
    outline: 0;
}

.cd-facts {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 25px;
    color: #586d83;
    font-size: 11px;
    font-weight: 800;
}

.cd-facts span {
    gap: 6px;
    padding: 0 13px;
    border-left: 1px solid rgba(101, 126, 151, .28);
}

.cd-facts span:first-child {
    padding-left: 0;
    border-left: 0;
}

.cd-facts i {
    color: var(--cd-accent);
}

.cd-product-stage {
    min-width: 0;
    perspective: 1200px;
}

.cd-product-window {
    overflow: hidden;
    border: 1px solid rgba(135, 158, 183, .52);
    border-radius: 8px;
    background: #f9fbfe;
    box-shadow: 0 34px 70px rgba(34, 54, 81, .22), 0 8px 20px rgba(34, 54, 81, .10);
    transform: rotateY(-2.2deg) rotateX(1deg);
    transform-origin: center;
    transition: transform 360ms cubic-bezier(.16, 1, .3, 1), box-shadow 360ms ease;
}

.cd-product-stage:hover .cd-product-window {
    transform: rotateY(-.5deg) rotateX(.2deg) translateY(-3px);
    box-shadow: 0 40px 80px rgba(34, 54, 81, .25), 0 10px 24px rgba(34, 54, 81, .11);
}

.cd-window-bar {
    min-height: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 14px;
    padding: 0 12px;
    border-bottom: 1px solid #dce5ef;
    background: #f7f9fc;
}

.cd-window-brand,
.cd-window-status,
.cd-window-controls {
    display: flex;
    align-items: center;
}

.cd-window-brand {
    min-width: 0;
    gap: 8px;
    color: #1d2c40;
    font-size: 11px;
}

.cd-window-brand img {
    width: 23px;
    height: 23px;
    border-radius: 5px;
}

.cd-window-status {
    gap: 6px;
    color: #52736c;
    font-size: 10px;
    font-weight: 800;
}

.cd-window-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #26b981;
}

.cd-window-controls {
    gap: 14px;
    color: #7a899a;
    font-size: 10px;
}

.cd-window-screen {
    position: relative;
    height: auto;
    aspect-ratio: 2434 / 1262;
    overflow: hidden;
    background: #edf4fa;
}

.cd-window-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: left bottom;
}

.cd-product-caption {
    justify-content: flex-end;
    gap: 16px;
    margin-top: 13px;
    color: #4f647a;
    font-size: 11px;
    font-weight: 800;
}

.cd-product-caption span {
    gap: 6px;
}

.cd-product-caption i {
    color: var(--cd-accent);
}

.cd-next-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #60758a;
    font-size: 11px;
    font-weight: 800;
}

.cd-next-cue i {
    animation: cdCue 1.8s ease-in-out infinite;
}

.cd-info-band {
    border-top: 1px solid #dbe4ee;
    background: #fff;
}

.cd-info-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: clamp(40px, 6vw, 88px);
    align-items: start;
    padding: 74px 0 82px;
}

.cd-capabilities {
    min-width: 0;
}

.cd-section-head > span {
    color: var(--cd-accent);
    font-size: 12px;
    font-weight: 900;
}

.cd-section-head h2 {
    margin: 8px 0 0;
    color: var(--cd-ink);
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: 0;
}

.cd-section-head p {
    max-width: 62ch;
    margin: 10px 0 0;
    color: var(--cd-copy);
    font-size: 13px;
    line-height: 1.75;
}

.cd-feature-list {
    margin: 32px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--cd-border);
    list-style: none;
}

.cd-feature-list li {
    min-width: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 19px 18px 19px 0;
    border-bottom: 1px solid var(--cd-border);
}

.cd-feature-list li:nth-child(odd) {
    border-right: 1px solid var(--cd-border);
}

.cd-feature-list li:nth-child(even) {
    padding-left: 18px;
}

.cd-feature-list i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #c9d9e8;
    border-radius: 7px;
    color: var(--cd-primary);
    background: #eff5fb;
}

.cd-feature-list strong,
.cd-feature-list small {
    display: block;
}

.cd-feature-list strong {
    color: #1e324a;
    font-size: 13px;
    line-height: 1.4;
}

.cd-feature-list small {
    margin-top: 4px;
    color: #64768a;
    font-size: 11px;
    line-height: 1.55;
}

.cd-panel {
    align-self: start;
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--cd-border);
    border-radius: 8px;
    background: var(--cd-soft);
}

.cd-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cd-os {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border: 1px solid #c9d9eb;
    border-radius: 8px;
    color: var(--cd-primary);
    background: #fff;
    font-size: 20px;
}

.cd-panel-head strong,
.cd-panel-head small {
    display: block;
}

.cd-panel-head strong {
    color: var(--cd-ink);
    font-size: 14px;
    line-height: 1.35;
}

.cd-panel-head small {
    margin-top: 3px;
    color: var(--cd-muted);
    font-size: 12px;
    font-weight: 800;
}

.cd-panel-head em {
    margin-left: auto;
    padding: 4px 7px;
    border: 1px solid #b8e4d2;
    border-radius: 6px;
    color: #127250;
    background: #ecfbf4;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.cd-meta {
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--cd-border);
}

.cd-meta div {
    min-height: 54px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 7px 0;
    border-bottom: 1px solid var(--cd-border);
}

.cd-meta div:nth-child(odd) {
    padding-right: 14px;
    border-right: 1px solid var(--cd-border);
}

.cd-meta div:nth-child(even) {
    padding-left: 14px;
}

.cd-meta dt {
    color: #73849a;
    font-size: 12px;
}

.cd-meta dd {
    margin: 0;
    color: #1f334f;
    font-size: 12px;
    font-weight: 900;
    text-align: left;
    white-space: nowrap;
}

.cd-note {
    margin-top: 14px;
    padding: 11px 12px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    border: 1px solid var(--cd-border);
    border-radius: 7px;
    color: #536a81;
    background: #fff;
    font-size: 11px;
    line-height: 1.65;
}

.cd-note i {
    margin-top: 3px;
    color: var(--cd-primary);
}

.cd-steps {
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    list-style: none;
}

.cd-steps li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 7px;
    align-items: start;
}

.cd-steps li > span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--cd-primary);
    background: #e9f1fb;
    font-size: 11px;
    font-weight: 900;
}

.cd-steps p {
    margin: 0;
}

.cd-steps strong,
.cd-steps small {
    display: block;
}

.cd-steps strong {
    color: #243b58;
    font-size: 11px;
    line-height: 1.4;
}

.cd-steps small {
    margin-top: 3px;
    color: #6d7f93;
    font-size: 10px;
    line-height: 1.45;
}

.cd-panel-download {
    min-height: 48px;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 16px;
    padding: 0 18px;
    color: #fff;
    background: var(--cd-primary);
    line-height: 1;
    white-space: nowrap;
}

.cd-panel-download i {
    width: 16px;
    height: 16px;
    display: grid;
    flex: 0 0 16px;
    place-items: center;
    line-height: 1;
}

.cd-panel-download span {
    line-height: 1;
}

.cd-panel-download small {
    padding-left: 9px;
    border-left: 1px solid rgba(255, 255, 255, .32);
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.cd-panel-download:hover,
.cd-panel-download:focus-visible {
    color: #fff;
    background: var(--cd-primary-strong);
    transform: translateY(-1px);
    outline: 0;
}

@keyframes cdCue {
    0%, 100% { transform: translateY(-1px); }
    50% { transform: translateY(3px); }
}

html[data-panda-ui="anime"] {
    --cd-primary: #c92f73;
    --cd-primary-strong: #ab215e;
    --cd-accent: #a83269;
    --cd-accent-soft: #fff0f7;
    --cd-border: #efd0de;
    --cd-soft: #fff8fc;
}

html[data-panda-ui="anime"] .cd-hero {
    background: #fff5fa;
}

html[data-panda-ui="anime"] .cd-hero::after {
    background: rgba(255, 248, 252, .14);
}

html[data-panda-ui="anime"] .cd-feature-list i,
html[data-panda-ui="anime"] .cd-os,
html[data-panda-ui="anime"] .cd-steps li > span {
    border-color: #e9b9ce;
    color: #b93470;
    background: #fff0f7;
}

html[data-panda-ui="anime"] .cd-window-status,
html[data-panda-ui="anime"] .cd-product-caption,
html[data-panda-ui="anime"] .cd-facts i {
    color: #a83269;
}

html[data-panda-ui="dark"] {
    --cd-ink: #edf5ff;
    --cd-copy: #a9bad0;
    --cd-muted: #91a5bd;
    --cd-border: #2b3d54;
    --cd-surface: #0d1828;
    --cd-soft: #111e30;
    --cd-primary: #3d7bea;
    --cd-primary-strong: #2c67d4;
    --cd-accent: #3cc5ad;
    --cd-accent-soft: #112b2b;
}

html[data-panda-ui="dark"] body,
html[data-panda-ui="dark"] .cd-info-band {
    background: #081220;
}

html[data-panda-ui="dark"] .cd-hero {
    background: #07111f;
}

html[data-panda-ui="dark"] .cd-hero::after {
    background: rgba(4, 11, 21, .08);
}

html[data-panda-ui="dark"] .cd-nav,
html[data-panda-ui="dark"] .cd-info-band {
    border-color: #26384e;
}

html[data-panda-ui="dark"] .cd-brand strong,
html[data-panda-ui="dark"] .cd-copy h1,
html[data-panda-ui="dark"] .cd-lead,
html[data-panda-ui="dark"] .cd-section-head h2,
html[data-panda-ui="dark"] .cd-feature-list strong,
html[data-panda-ui="dark"] .cd-panel-head strong,
html[data-panda-ui="dark"] .cd-meta dd,
html[data-panda-ui="dark"] .cd-steps strong {
    color: #edf5ff;
}

html[data-panda-ui="dark"] .cd-state,
html[data-panda-ui="dark"] .cd-description,
html[data-panda-ui="dark"] .cd-facts,
html[data-panda-ui="dark"] .cd-product-caption,
html[data-panda-ui="dark"] .cd-next-cue,
html[data-panda-ui="dark"] .cd-section-head p,
html[data-panda-ui="dark"] .cd-feature-list small,
html[data-panda-ui="dark"] .cd-meta dt,
html[data-panda-ui="dark"] .cd-steps small {
    color: #a9bad0;
}

html[data-panda-ui="dark"] .cd-nav-actions a,
html[data-panda-ui="dark"] .cd-secondary {
    border-color: #354b65;
    color: #d8e5f4;
    background: rgba(16, 30, 48, .74);
}

html[data-panda-ui="dark"] .cd-product-window,
html[data-panda-ui="dark"] .cd-window-bar {
    border-color: #31445c;
    background: #101c2c;
}

html[data-panda-ui="dark"] .cd-window-brand {
    color: #e8f2ff;
}

html[data-panda-ui="dark"] .cd-panel {
    border-color: #2b3d54;
    background: #111e30;
}

html[data-panda-ui="dark"] .cd-feature-list i,
html[data-panda-ui="dark"] .cd-os,
html[data-panda-ui="dark"] .cd-steps li > span {
    border-color: #315479;
    color: #86bfff;
    background: #122944;
}

html[data-panda-ui="dark"] .cd-note {
    border-color: #304960;
    color: #a9bad0;
    background: #132236;
}

html[data-panda-ui="dark"] .cd-primary:not(.is-disabled),
html[data-panda-ui="dark"] .cd-panel-download {
    color: #ffffff !important;
    border-color: #4d8cff;
    background: #2868dc;
    box-shadow: 0 14px 30px rgba(0, 7, 24, .42), inset 0 1px 0 rgba(255, 255, 255, .18);
}

html[data-panda-ui="dark"] .cd-primary:not(.is-disabled) small,
html[data-panda-ui="dark"] .cd-panel-download small {
    color: #dbeafe !important;
    border-left-color: rgba(255, 255, 255, .36);
}

html[data-panda-ui="dark"] .cd-primary:not(.is-disabled):hover,
html[data-panda-ui="dark"] .cd-primary:not(.is-disabled):focus-visible,
html[data-panda-ui="dark"] .cd-panel-download:hover,
html[data-panda-ui="dark"] .cd-panel-download:focus-visible {
    color: #ffffff !important;
    border-color: #74a7ff;
    background: #3478ef;
    box-shadow: 0 18px 36px rgba(0, 7, 24, .5), inset 0 1px 0 rgba(255, 255, 255, .22);
}

@media (max-width: 1080px) {
    .cd-hero-main {
        grid-template-columns: minmax(340px, .9fr) minmax(450px, 1.1fr);
        gap: 32px;
    }

    .cd-copy h1 {
        font-size: 46px;
    }

    .cd-window-screen {
        height: auto;
    }
}

@media (max-width: 900px) {
    .cd-hero,
    .cd-hero-frame {
        min-height: 0;
    }

    .cd-hero-frame {
        width: min(100% - 28px, 760px);
        grid-template-rows: auto auto 38px;
    }

    .cd-nav {
        min-height: 70px;
    }

    .cd-hero-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 48px 0 34px;
    }

    .cd-copy {
        max-width: 680px;
    }

    .cd-product-stage {
        width: 100%;
    }

    .cd-product-window {
        transform: none;
    }

    .cd-product-stage:hover .cd-product-window {
        transform: translateY(-2px);
    }

    .cd-window-screen {
        height: auto;
    }

    .cd-info-inner {
        width: min(100% - 32px, 760px);
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 58px 0 68px;
    }

    .cd-panel {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .cd-hero-frame {
        width: calc(100% - 24px);
    }

    .cd-nav {
        min-height: 64px;
    }

    .cd-brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .cd-brand strong {
        font-size: 13px;
    }

    .cd-nav-actions a {
        width: 36px;
        min-height: 36px;
        justify-content: center;
        padding: 0;
    }

    .cd-nav-actions span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .cd-hero-main {
        gap: 28px;
        padding: 40px 0 30px;
    }

    .cd-copy h1 {
        margin-top: 17px;
        font-size: 38px;
    }

    .cd-lead {
        margin-top: 18px;
        font-size: 17px;
    }

    .cd-description {
        font-size: 13px;
    }

    .cd-actions,
    .cd-primary,
    .cd-secondary {
        width: 100%;
    }

    .cd-primary,
    .cd-secondary {
        min-height: 46px;
    }

    .cd-facts {
        gap: 9px 0;
    }

    .cd-facts span {
        width: 50%;
        padding: 0 9px;
    }

    .cd-facts span:nth-child(3) {
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }

    .cd-window-bar {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .cd-window-status {
        display: none;
    }

    .cd-window-screen {
        height: auto;
    }

    .cd-product-caption {
        justify-content: space-between;
        gap: 8px;
    }

    .cd-info-inner {
        width: calc(100% - 28px);
        padding: 48px 0 58px;
    }

    .cd-section-head h2 {
        font-size: 25px;
    }

    .cd-feature-list {
        grid-template-columns: 1fr;
    }

    .cd-feature-list li,
    .cd-feature-list li:nth-child(even) {
        padding: 16px 0;
        border-right: 0;
    }

    .cd-panel {
        padding: 20px 17px;
    }

    .cd-meta,
    .cd-steps {
        grid-template-columns: 1fr;
    }

    .cd-meta div:nth-child(odd),
    .cd-meta div:nth-child(even) {
        padding: 8px 0;
        border-right: 0;
    }

    .cd-meta div {
        min-height: 48px;
        grid-template-columns: 88px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .cd-meta dd {
        text-align: right;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cd-primary,
    .cd-secondary,
    .cd-panel-download,
    .cd-nav-actions a,
    .cd-product-window {
        transition-duration: 1ms !important;
    }

    .cd-next-cue i {
        animation: none;
    }
}
