.ch-page {
    background: var(--lumina-white);
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}
.ch-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10001;
    padding: 12px 16px;
    background: var(--lumina-black);
    color: var(--lumina-white);
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
}
.ch-skip-link:focus {
    left: 12px;
    top: 12px;
    outline: 2px solid var(--lumina-white);
    outline-offset: 2px;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.ch-shell { width: min(1240px, calc(100% - 64px)); margin: 0 auto; }
.ch-section { padding: clamp(72px, 7vw, 112px) 0; }
.ch-kicker { display: inline-block; padding: 6px 16px; background: var(--lumina-blue); color: var(--lumina-white); border-radius: 1px; font-size: var(--lumina-small); text-transform: uppercase; letter-spacing: 0.06em; }
.ch-title { margin: 16px 0 12px; text-align: left; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.08; }
.ch-lead { margin: 0; max-width: 760px; color: var(--lumina-darkergrey); line-height: 1.6; }

.ch-hero {
    padding: clamp(80px, 8vw, 120px) 0 86px;
    background: linear-gradient(180deg, #faf8f5 0%, var(--lumina-white) 100%);
}
.ch-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.ch-hero h1 { margin: 16px 0 14px; text-align: left; font-size: clamp(38px, 5vw, 62px); line-height: 1.03; }
.ch-hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.ch-hero-visual {
    position: relative;
    min-height: 400px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--lumina-lightgrey);
    box-shadow: 0 14px 28px rgba(10, 10, 51, 0.06);
}
/* Warm gradient aligned with Product Pages module tones: grey, blue-grey, sand, terracotta */
.ch-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 28%, rgba(241, 166, 95, 0.26), transparent 46%),
        radial-gradient(circle at 74% 22%, rgba(174, 191, 206, 0.42), transparent 44%),
        radial-gradient(circle at 66% 70%, rgba(221, 210, 197, 0.55), transparent 50%),
        linear-gradient(145deg, #ebe6df 0%, #e8e2da 36%, #e4dcd2 68%, #e0d5c9 100%);
}
.ch-float { position: absolute; z-index: 1; width: min(305px, 76%); border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 2px; background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(8px); box-shadow: 0 12px 26px rgba(10, 10, 51, 0.1); padding: 12px 14px; }
.ch-float strong { display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; font-size: 12px; color: var(--lumina-darkerblue); }
.ch-float p { margin: 0; color: var(--lumina-darkergrey); font-size: 14px; line-height: 1.4; }
.ch-float-a { top: 30px; left: 22px; animation: ch-float-a 7s ease-in-out infinite; }
.ch-float-b { top: 150px; right: 24px; animation: ch-float-b 8.2s ease-in-out infinite; }
.ch-float-c { bottom: 24px; left: 56px; animation: ch-float-c 7.4s ease-in-out infinite; }
.ch-chip { position: absolute; z-index: 1; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.88); background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(7px); font-size: 12px; color: var(--lumina-black); box-shadow: 0 4px 14px rgba(10, 10, 51, 0.06); }
.ch-chip-1 { top: 16px; right: 38px; animation: ch-float-a 6.4s ease-in-out infinite; }
.ch-chip-2 { bottom: 16px; right: 46px; animation: ch-float-b 7.1s ease-in-out infinite; }
@keyframes ch-float-a { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }
@keyframes ch-float-b { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }
@keyframes ch-float-c { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-7px);} }

.ch-logo-rail { padding-top: 6px; }
.ch-logo-rail p { margin: 0 0 14px; text-align: center; color: var(--lumina-grey); }

.ch-module-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.ch-module-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; border: 1px solid var(--lumina-lightgrey); border-radius: 2px; background: #fff; overflow: hidden; min-height: 410px; transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; }
.ch-module-card:hover { transform: translateY(-3px); border-color: rgba(100, 100, 255, 0.35); box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08); }
.ch-module-media { height: 280px; position: relative; overflow: hidden; }
.ch-module-card-z .ch-module-media { background: linear-gradient(155deg, #e8ebed, #f2f2f2); }
.ch-module-card-b .ch-module-media { background: linear-gradient(160deg, #c6d3df, #aebfce); }
.ch-module-card-a .ch-module-media { background: linear-gradient(160deg, #ddd2c5, #e8dfd4); }
.ch-module-card-r .ch-module-media { background: linear-gradient(160deg, #f1a65f, #dd8a47); }
.ch-media-mock { position: absolute; border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 10px; background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(7px); }
.ch-media-sheet { left: 34px; right: 34px; top: 44px; bottom: 40px; }
.ch-media-sheet::before { content: ""; position: absolute; left: 16px; right: 16px; top: 18px; bottom: 18px; background: repeating-linear-gradient(to bottom, rgba(10, 10, 51, 0.12) 0, rgba(10, 10, 51, 0.12) 1px, transparent 1px, transparent 9px); }
.ch-media-table { left: 24px; right: 24px; top: 30px; bottom: 28px; }
.ch-media-table::before { content: ""; position: absolute; inset: 14px; border-radius: 8px; background: repeating-linear-gradient(to bottom, rgba(10, 10, 51, 0.08), rgba(10, 10, 51, 0.08) 1px, transparent 1px, transparent 26px), repeating-linear-gradient(to right, rgba(10, 10, 51, 0.08), rgba(10, 10, 51, 0.08) 1px, transparent 1px, transparent 74px); }
.ch-media-flow { left: 36px; right: 36px; top: 84px; height: 112px; }
.ch-media-flow::before, .ch-media-flow::after { content: ""; position: absolute; top: 44px; width: 54px; height: 24px; border-radius: 999px; background: rgba(255, 255, 255, 0.78); }
.ch-media-flow::before { left: -26px; }
.ch-media-flow::after { right: -26px; }
.ch-media-source { width: 126px; right: 18px; top: 92px; bottom: 30px; }
.ch-media-source::before { content: ""; position: absolute; left: 12px; right: 12px; top: 16px; bottom: 16px; background: repeating-linear-gradient(to bottom, rgba(10, 10, 51, 0.12) 0, rgba(10, 10, 51, 0.12) 1px, transparent 1px, transparent 20px); }
.ch-module-body { padding: 18px 16px 18px; display: flex; flex-direction: column; gap: 12px; min-height: 168px; }
.ch-module-body h3 { margin: 0; text-align: left; font-size: 30px; line-height: 1.1; min-height: 2.2em; }
.ch-module-body p { margin: 0; text-align: left; color: var(--lumina-darkergrey); font-size: 14px; line-height: 1.5; }
.ch-module-cta { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--lumina-black); }
.ch-module-cta i { transition: transform 0.22s ease; }
.ch-module-card:hover .ch-module-cta i { transform: translateX(4px); }

/* Concept C: Operations Studio */
.ch-studio-feature-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.ch-studio-feature-card { display: grid; gap: 10px; align-content: start; }
.ch-studio-feature-visual {
    position: relative;
    min-height: 340px;
    border: 1px solid rgba(10, 10, 51, 0.08);
    border-radius: 2px;
    overflow: hidden;
    background: #eceff4;
}
.ch-studio-feature-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 3px 3px;
    mix-blend-mode: soft-light;
    opacity: 0.55;
    pointer-events: none;
}
.ch-studio-feature-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.32), rgba(10, 10, 51, 0.08));
    pointer-events: none;
}

.ch-studio-feature-visual--signal {
    background:
        radial-gradient(circle at 20% 26%, rgba(166, 206, 193, 0.52), transparent 44%),
        radial-gradient(circle at 78% 68%, rgba(191, 203, 224, 0.44), transparent 46%),
        linear-gradient(142deg, #dbe1e1 0%, #e2e7e8 55%, #e9edf1 100%);
}
.ch-model-grid {
    position: absolute;
    inset: 18px;
    display: grid;
    grid-template-columns: 0.95fr 1.15fr 0.95fr;
    gap: 10px;
    z-index: 1;
}
.ch-model-stream,
.ch-model-output,
.ch-model-stack article {
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(4px);
}
.ch-model-stream,
.ch-model-output {
    padding: 10px;
    display: grid;
    gap: 6px;
    align-content: start;
}
.ch-model-stream span,
.ch-model-output span {
    display: block;
    border: 1px solid rgba(10, 10, 51, 0.08);
    border-radius: 2px;
    padding: 7px;
    font-size: 11px;
    color: rgba(10, 10, 51, 0.8);
    background: rgba(255, 255, 255, 0.8);
}

.ch-model-stack {
    display: grid;
    gap: 8px;
    align-content: center;
}
.ch-model-stack article { padding: 8px; }
.ch-model-stack strong {
    display: block;
    font-size: 11px;
    color: rgba(10, 10, 51, 0.84);
    margin-bottom: 7px;
}
.ch-model-bars {
    display: grid;
    gap: 5px;
}
.ch-model-bars i {
    display: block;
    height: 5px;
    border-radius: 999px;
    background: rgba(100, 100, 255, 0.58);
    transform-origin: left center;
    transition: background-color 0.35s ease;
    animation-duration: 14s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.45, 0.03, 0.18, 0.98);
}
.ch-model-bars i:nth-child(1) { width: 80%; }
.ch-model-bars i:nth-child(2) { width: 62%; }
.ch-model-bars i:nth-child(3) { width: 46%; }
.ch-model-bars--deviation i:nth-child(1) { animation-name: ch-dev-top; }
.ch-model-bars--deviation i:nth-child(2) { animation-name: ch-dev-mid; }
.ch-model-bars--deviation i:nth-child(3) { animation-name: ch-dev-low; }
.ch-model-bars--anomaly i:nth-child(1) { animation-name: ch-anom-top; }
.ch-model-bars--anomaly i:nth-child(2) { animation-name: ch-anom-mid; }
.ch-model-bars--anomaly i:nth-child(3) { animation-name: ch-anom-low; }
.ch-model-bars--performance i:nth-child(1) { animation-name: ch-perf-top; }
.ch-model-bars--performance i:nth-child(2) { animation-name: ch-perf-mid; }
.ch-model-bars--performance i:nth-child(3) { animation-name: ch-perf-low; }

.ch-stream-session,
.ch-stream-inactivity,
.ch-stream-mttr {
    transition: border-color 0.34s ease, background-color 0.34s ease, color 0.34s ease, box-shadow 0.34s ease, transform 0.34s ease;
    will-change: border-color, background-color, color, box-shadow, transform;
}
.ch-stream-session.ch-stream-active-session,
.ch-stream-mttr.ch-stream-active-mttr {
    border-color: rgba(216, 77, 77, 0.55);
    background: rgba(216, 77, 77, 0.22);
    color: rgba(139, 28, 28, 1);
    box-shadow: 0 0 0 2px rgba(216, 77, 77, 0.18);
    transform: translateX(2px);
}
.ch-stream-inactivity.ch-stream-active-inactivity {
    border-color: rgba(100, 100, 255, 0.58);
    background: rgba(100, 100, 255, 0.24);
    color: rgba(10, 10, 51, 0.96);
    box-shadow: 0 0 0 2px rgba(100, 100, 255, 0.18);
    transform: translateX(2px);
}
.ch-model-realtime {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    border: 1px solid rgba(100, 100, 255, 0.3);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lumina-darkerblue);
    background: rgba(255, 255, 255, 0.72);
}

.ch-studio-feature-visual--automation {
    position: relative;
    background:
        radial-gradient(circle at 48% 36%, rgba(176, 196, 242, 0.48), transparent 44%),
        radial-gradient(circle at 24% 78%, rgba(203, 216, 238, 0.36), transparent 46%),
        linear-gradient(145deg, #dde4f2 0%, #e5ebf8 56%, #edf1f8 100%);
}
.ch-auto-orb {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    z-index: 1;
    animation: ch-core-pulse 3.8s ease-in-out infinite;
}
.ch-auto-orb i { font-size: 30px; color: var(--lumina-blue); }
.ch-auto-cloud {
    position: absolute;
    inset: 10px;
    z-index: 1;
}
.ch-auto-token {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.58);
    padding: 6px 8px;
    font-size: 11px;
    white-space: nowrap;
    color: rgba(10, 10, 51, 0.78);
    opacity: 0;
    pointer-events: none;
}
.ch-auto-token.is-from-left {
    --swipe-start-x: -20%;
    --swipe-hold-x: 34%;
}
.ch-auto-token.is-from-right {
    --swipe-start-x: 120%;
    --swipe-hold-x: 66%;
}
.ch-auto-token.is-run {
    animation: ch-token-swipe-in 1.7s cubic-bezier(0.42, 0, 0.24, 1) forwards;
}

.ch-studio-feature-visual--builder {
    position: relative;
    background:
        radial-gradient(circle at 24% 24%, rgba(188, 198, 220, 0.4), transparent 42%),
        radial-gradient(circle at 78% 72%, rgba(205, 214, 230, 0.44), transparent 48%),
        linear-gradient(145deg, #dfe4ec 0%, #e8ecf2 56%, #f0f3f7 100%);
}
/* Operations Studio — workflow builder (layout: flex + grid; no absolute nodes) */
.ch-workflow-v2 {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 2px;
    background:
        radial-gradient(circle, rgba(10, 10, 51, 0.08) 1px, transparent 1px),
        rgba(255, 255, 255, 0.62);
    background-size: 20px 20px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 12px 14px 14px;
    overflow: hidden;
}
.ch-wf-flow {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: 0;
}
.ch-wf-source {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}
.ch-wf-fork-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 48px;
    flex-shrink: 0;
    display: block;
}
.ch-wf-fork-svg .wf2-path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}
.ch-wf-fork-svg .wf2-path--base {
    stroke: rgba(146, 151, 170, 0.45);
    stroke-width: 2.25;
    stroke-dasharray: 5 7;
}
.ch-wf-fork-svg .wf2-path--accent {
    stroke: rgba(88, 94, 209, 0.88);
    stroke-width: 2.5;
    stroke-dasharray: 5 7;
}
.ch-wf-fork-svg .wf2-path--stem {
    opacity: 0.42;
}
.ch-wf-fork-svg .wf2-path--branch-left {
    opacity: 0.38;
}
.ch-wf-fork-svg .wf2-path--branch-right {
    opacity: 0.38;
}

.ch-wf-branches {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px 18px;
    flex: 1;
    min-height: 0;
    align-content: start;
}
.ch-wf-branch {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 0;
}
.ch-wf-v-join {
    flex: 0 0 auto;
    align-self: center;
    width: 0;
    height: 11px;
    border-left: 2px dashed rgba(146, 151, 170, 0.5);
}

.wf2-node {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: 2px solid rgba(88, 94, 209, 0.34);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
    padding: 6px 8px;
    display: grid;
    gap: 2px;
}
.wf2-node small {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    color: rgba(10, 10, 51, 0.54);
}
.wf2-node small i { font-size: 10px; flex-shrink: 0; }
.wf2-node span {
    font-size: 11px;
    line-height: 1.25;
    color: rgba(10, 10, 51, 0.9);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.wf2-node--source {
    max-width: min(100%, 260px);
    border-color: rgba(88, 94, 209, 0.8);
}
.wf2-node--condition { border-color: rgba(224, 117, 38, 0.8); }
.wf2-node--action { border-color: rgba(44, 189, 150, 0.8); }

/* 20s loop: 2s per step (10% each), 2s pause between branches (40–50%), linear = steady fades */
.wf2-seq {
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.wf2-seq--source { animation-name: wf-seq-source; }
.wf2-seq--r-cond { animation-name: wf-seq-r-cond; }
.wf2-seq--r-a1 { animation-name: wf-seq-r-a1; }
.wf2-seq--r-a2 { animation-name: wf-seq-r-a2; }
.wf2-seq--l-cond { animation-name: wf-seq-l-cond; }
.wf2-seq--l-a1 { animation-name: wf-seq-l-a1; }
.wf2-seq--l-a2 { animation-name: wf-seq-l-a2; }

/* Each 10% block = 2s: ~0.2s in, ~1.6s full glow, ~0.2s out */
@keyframes wf-seq-source {
    0% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(88, 94, 209, 0.8);
    }
    1%, 9% {
        box-shadow: 0 0 0 2px rgba(88, 94, 209, 0.22), 0 5px 16px rgba(88, 94, 209, 0.16);
        border-color: rgba(88, 94, 209, 1);
    }
    10%, 50% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(88, 94, 209, 0.8);
    }
    51%, 59% {
        box-shadow: 0 0 0 2px rgba(88, 94, 209, 0.22), 0 5px 16px rgba(88, 94, 209, 0.16);
        border-color: rgba(88, 94, 209, 1);
    }
    60%, 100% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(88, 94, 209, 0.8);
    }
}

@keyframes wf-seq-r-cond {
    0%, 10% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(224, 117, 38, 0.8);
    }
    11%, 19% {
        box-shadow: 0 0 0 2px rgba(224, 117, 38, 0.22), 0 5px 14px rgba(224, 117, 38, 0.14);
        border-color: rgba(224, 117, 38, 1);
    }
    20%, 100% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(224, 117, 38, 0.8);
    }
}

@keyframes wf-seq-r-a1 {
    0%, 20% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(44, 189, 150, 0.8);
    }
    21%, 29% {
        box-shadow: 0 0 0 2px rgba(44, 189, 150, 0.22), 0 5px 14px rgba(44, 189, 150, 0.14);
        border-color: rgba(44, 189, 150, 1);
    }
    30%, 100% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(44, 189, 150, 0.8);
    }
}

@keyframes wf-seq-r-a2 {
    0%, 30% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(44, 189, 150, 0.8);
    }
    31%, 39% {
        box-shadow: 0 0 0 2px rgba(44, 189, 150, 0.22), 0 5px 14px rgba(44, 189, 150, 0.14);
        border-color: rgba(44, 189, 150, 1);
    }
    40%, 100% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(44, 189, 150, 0.8);
    }
}

@keyframes wf-seq-l-cond {
    0%, 60% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(224, 117, 38, 0.8);
    }
    61%, 69% {
        box-shadow: 0 0 0 2px rgba(224, 117, 38, 0.22), 0 5px 14px rgba(224, 117, 38, 0.14);
        border-color: rgba(224, 117, 38, 1);
    }
    70%, 100% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(224, 117, 38, 0.8);
    }
}

@keyframes wf-seq-l-a1 {
    0%, 70% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(44, 189, 150, 0.8);
    }
    71%, 79% {
        box-shadow: 0 0 0 2px rgba(44, 189, 150, 0.22), 0 5px 14px rgba(44, 189, 150, 0.14);
        border-color: rgba(44, 189, 150, 1);
    }
    80%, 100% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(44, 189, 150, 0.8);
    }
}

@keyframes wf-seq-l-a2 {
    0%, 80% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(44, 189, 150, 0.8);
    }
    81%, 89% {
        box-shadow: 0 0 0 2px rgba(44, 189, 150, 0.22), 0 5px 14px rgba(44, 189, 150, 0.14);
        border-color: rgba(44, 189, 150, 1);
    }
    90%, 100% {
        box-shadow: 0 1px 4px rgba(10, 10, 51, 0.05);
        border-color: rgba(44, 189, 150, 0.8);
    }
}

.ch-studio-feature-card h3 {
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.24;
    color: var(--lumina-black);
}
.ch-studio-feature-card p {
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.45;
    color: var(--lumina-darkergrey);
}

@keyframes ch-float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@keyframes ch-dev-top {
    0%, 44%, 100% { width: 72%; background: rgba(100, 100, 255, 0.58); }
    52%, 68% { width: 98%; background: rgba(100, 100, 255, 0.74); }
}
@keyframes ch-dev-mid {
    0%, 44%, 100% { width: 58%; }
    52%, 68% { width: 66%; }
}
@keyframes ch-dev-low {
    0%, 44%, 100% { width: 40%; }
    52%, 68% { width: 48%; }
}
@keyframes ch-anom-top {
    0%, 100% { width: 74%; }
    24%, 40% { width: 66%; }
}
@keyframes ch-anom-mid {
    0%, 18%, 100% { width: 62%; background: rgba(100, 100, 255, 0.58); }
    24%, 40% { width: 16%; background: rgba(216, 77, 77, 0.86); }
}
@keyframes ch-anom-low {
    0%, 100% { width: 46%; }
    24%, 40% { width: 36%; }
}
@keyframes ch-perf-top {
    0%, 100% { width: 76%; }
    76%, 94% { width: 82%; }
}
@keyframes ch-perf-mid {
    0%, 100% { width: 62%; }
    76%, 94% { width: 56%; }
}
@keyframes ch-perf-low {
    0%, 72%, 100% { width: 46%; background: rgba(100, 100, 255, 0.58); }
    76%, 94% { width: 88%; background: rgba(216, 77, 77, 0.86); }
}
@keyframes ch-core-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(100, 100, 255, 0.2); }
    50% { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 0 0 14px rgba(100, 100, 255, 0.08); }
}
@keyframes ch-token-swipe-in {
    0% {
        left: var(--swipe-start-x);
        top: 50%;
        transform: translate(-50%, -50%) scale(0.96);
        opacity: 0;
    }
    14% { opacity: 1; }
    34% {
        left: var(--swipe-hold-x);
        top: 50%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    56% {
        left: var(--swipe-hold-x);
        top: 50%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    82% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.95;
    }
    94% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.28);
        opacity: 0;
    }
    100% { opacity: 0; }
}
.ch-assistant-grid { margin-top: 24px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; }
.ch-assistant-stage { border: 1px solid var(--lumina-lightgrey); border-radius: 14px; padding: 14px; background: linear-gradient(145deg, rgba(100, 100, 255, 0.05), rgba(255, 255, 255, 0.97)); min-height: 520px; }
.ch-assistant-scene { display: none; position: relative; width: 100%; height: 100%; border-radius: 10px; border: 1px solid rgba(100, 100, 255, 0.14); overflow: hidden; background-size: cover; background-position: center; }
.ch-assistant-scene.active { display: block; }
.ch-assistant-scene::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 3px 3px; opacity: 0.28; mix-blend-mode: soft-light; }
.ch-assistant-scene::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(10, 10, 51, 0.12)); opacity: 0.7; }
.ch-assistant-scene > *:not(.ch-assistant-ai-card) { position: relative; z-index: 1; }

/* Instant answers — wide card bleeds past right edge of scene; ~2 lines of body */
.ch-assistant-ai-card {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 11%;
    width: min(128%, 640px);
    max-width: 640px;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
    box-sizing: border-box;
}
.ch-assistant-ai-card__panel {
    box-sizing: border-box;
    padding: 16px 22px 18px;
    border-radius: 22px;
    border: 1px solid rgba(10, 10, 51, 0.06);
    background: #fff;
    box-shadow:
        0 2px 4px rgba(10, 10, 51, 0.03),
        0 28px 56px -20px rgba(10, 10, 51, 0.13),
        0 10px 24px -10px rgba(10, 10, 51, 0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}
.ch-assistant-ai-card__title-row {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}
.ch-assistant-ai-card__icon {
    font-size: 28px;
    color: var(--lumina-black);
    line-height: 1;
    opacity: 0.9;
}
.ch-assistant-ai-card__label {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--lumina-black);
}
.ch-assistant-ai-card__body {
    display: flex;
    flex-direction: column;
    gap: 11px;
    min-width: 0;
}
.ch-assistant-ai-card__badge-row {
    margin: 0;
    line-height: 1.3;
}
.ch-assistant-ai-card__text {
    margin: 0;
    font-size: clamp(18px, 1.15vw + 16px, 23px);
    line-height: 1.32;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: rgba(10, 10, 51, 0.68);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ch-assistant-ai-card__hl {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 5px 10px;
    border-radius: 1px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    background: rgba(122, 91, 232, 0.14);
    color: rgba(58, 42, 120, 0.95);
}

/* Warmer, light canvas — reads like product AI chrome */
.ch-assistant-scene--a {
    border-color: rgba(10, 10, 51, 0.08);
    background:
    radial-gradient(ellipse 85% 70% at 18% 40%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 55% at 88% 65%, rgba(241, 166, 95, 0.12), transparent 45%),
    linear-gradient(165deg, #ebe4db 0%, #e5ddd3 45%, #efe8e0 100%);
}
.ch-assistant-scene--a::before { opacity: 0.45; }
.ch-assistant-scene--a::after {
    opacity: 0.35;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), transparent 55%, rgba(255, 255, 255, 0.08));
}
.ch-assistant-scene--b { background:
    radial-gradient(circle at 18% 22%, rgba(198, 211, 223, 0.4), transparent 46%),
    radial-gradient(circle at 82% 30%, rgba(241, 166, 95, 0.22), transparent 48%),
    radial-gradient(circle at 48% 72%, rgba(221, 210, 197, 0.42), transparent 52%),
    linear-gradient(150deg, #ebe8e2 0%, #e2e6eb 38%, #ebe4db 100%);
}

/* “Wherever you’re working” — icon + label only (warm module-style gradients on tiles) */
.ch-assistant-apps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(30px, 6.75vw, 54px);
    padding: 42px 30px;
    min-height: 100%;
    box-sizing: border-box;
}
.ch-assistant-app-card {
    flex: 0 0 auto;
    width: auto;
    max-width: 165px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
    box-sizing: border-box;
}
.ch-assistant-app-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    border-radius: 27px;
    font-size: 53px;
    line-height: 1;
    color: #fff;
    box-shadow:
        0 3px 6px rgba(10, 10, 51, 0.06),
        0 21px 42px -12px rgba(10, 10, 51, 0.16);
}
.ch-assistant-app-card__icon i {
    display: block;
    line-height: 1;
    filter: drop-shadow(0 2px 2px rgba(10, 10, 51, 0.14));
}
.ch-assistant-app-card__icon--monitoring {
    background: linear-gradient(165deg, #d4dde5 0%, #b0c2d2 42%, #889eb2 100%);
}
.ch-assistant-app-card__icon--ticketing {
    background: linear-gradient(165deg, #d0c2b3 0%, #b8a896 42%, #978576 100%);
}
.ch-assistant-app-card__icon--workflow {
    background: linear-gradient(165deg, #f5c896 0%, #e9a05e 40%, #cf7d38 100%);
}
.ch-assistant-app-card__label {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(10, 10, 51, 0.78);
}
.ch-assistant-scene--c {
    border-color: rgba(10, 10, 51, 0.08);
    background:
    radial-gradient(circle at 76% 20%, rgba(241, 166, 95, 0.2), transparent 46%),
    radial-gradient(circle at 18% 55%, rgba(198, 211, 223, 0.38), transparent 48%),
    radial-gradient(circle at 48% 76%, rgba(221, 210, 197, 0.42), transparent 52%),
    linear-gradient(155deg, #ebe8e2 0%, #e4e6ea 40%, #ebe4db 100%);
}
.ch-assistant-scene--c::before { opacity: 0.42; }
.ch-assistant-scene--c::after {
    opacity: 0.32;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), transparent 55%, rgba(255, 255, 255, 0.06));
}

/* Tab 3 — embedded stack vs bolt-on GenAI (tone matches A + B) */
.ch-assistant-embed {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 32px 20px;
    box-sizing: border-box;
}
.ch-assistant-embed__diagram {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.ch-assistant-embed__plate {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 20px 18px 18px;
    border-radius: 20px;
    border: 1px solid rgba(10, 10, 51, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 2px 4px rgba(10, 10, 51, 0.04),
        0 18px 40px -22px rgba(10, 10, 51, 0.18);
}
.ch-assistant-embed__plate--data {
    z-index: 1;
}
.ch-assistant-embed__plate--infra {
    z-index: 2;
    margin-top: -14px;
    margin-left: clamp(8px, 2.5vw, 20px);
}
.ch-assistant-embed__plate--agents {
    z-index: 3;
    margin-top: -14px;
    margin-left: clamp(16px, 4.5vw, 36px);
    border-color: rgba(122, 91, 232, 0.22);
    box-shadow:
        0 2px 6px rgba(10, 10, 51, 0.05),
        0 22px 48px -20px rgba(100, 80, 180, 0.22);
}
.ch-assistant-embed__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 26px;
    line-height: 1;
    color: #fff;
    box-shadow:
        0 2px 4px rgba(10, 10, 51, 0.07),
        0 10px 22px -8px rgba(10, 10, 51, 0.14);
}
.ch-assistant-embed__ico i {
    display: block;
    line-height: 1;
    filter: drop-shadow(0 1px 1px rgba(10, 10, 51, 0.12));
}
.ch-assistant-embed__ico--infra {
    background: linear-gradient(165deg, #d4dde5 0%, #b0c2d2 42%, #889eb2 100%);
}
.ch-assistant-embed__ico--data {
    background: linear-gradient(165deg, #ddd2c5 0%, #c9bba8 45%, #a99583 100%);
}
.ch-assistant-embed__ico--agents {
    background: linear-gradient(165deg, #d4c8f0 0%, #9b87d4 45%, #7a64b8 100%);
}
.ch-assistant-embed__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.ch-assistant-embed__title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(10, 10, 51, 0.9);
}
.ch-assistant-embed__hint {
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: rgba(10, 10, 51, 0.55);
}
.ch-assistant-list { border-top: 1px solid var(--lumina-lightgrey); }
.ch-assist-item { position: relative; width: 100%; border: 0; border-bottom: 1px solid var(--lumina-lightgrey); background: transparent; text-align: left; padding: 18px 0; cursor: pointer; }
.ch-assist-item span { display: block; font-size: 20px; font-weight: 500; }
.ch-assist-item p { margin: 12px 0 0; max-height: 0; overflow: hidden; color: var(--lumina-darkergrey); line-height: 1.45; transition: max-height 0.25s ease; }
.ch-assist-item.active p { max-height: 190px; }
.ch-assist-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 4px; border-radius: 999px; background: rgba(100, 100, 255, 0.14); overflow: hidden; opacity: 0; margin-top: 14px; }
.ch-assist-progress::after { content: ""; display: block; height: 100%; width: 0; border-radius: 999px; background: var(--lumina-blue); }
.ch-assist-item.active .ch-assist-progress { opacity: 1; }
.ch-assist-item.active .ch-assist-progress::after { animation: ch-assist-progress 5s linear forwards; }
@keyframes ch-assist-progress { from { width: 0; } to { width: 100%; } }

.ch-visual-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.ch-visual-card { display: grid; gap: 10px; }
.ch-visual-card img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 2px; border: 1px solid var(--lumina-lightgrey); background: #eef2f7; filter: saturate(0.78) contrast(0.94) brightness(0.94); transition: filter 0.24s ease; }
.ch-visual-card:hover img { filter: saturate(0.84) contrast(0.96) brightness(0.95); }
.ch-visual-card h3 { margin: 0; font-size: 13px; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.04em; color: var(--lumina-darkerblue); text-align: left; }
.ch-visual-card p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--lumina-darkergrey); text-align: left; }

.ch-case-carousel { margin-top: 24px; border-radius: 16px; overflow: hidden; background: #111; position: relative; }
.ch-case-track { display: flex; transition: transform 0.45s ease; }
.ch-case-slide { min-width: 100%; min-height: 560px; position: relative; background-size: cover; background-position: center; }
.ch-case-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(98deg, rgba(10, 10, 51, 0.78), rgba(10, 10, 51, 0.25) 55%, rgba(10, 10, 51, 0.08)); }
.ch-case-overlay { position: absolute; left: 28px; right: auto; bottom: 24px; width: min(560px, calc(100% - 56px)); border: 1px solid rgba(252, 250, 250, 0.24); border-radius: 12px; background: rgba(10, 10, 51, 0.38); backdrop-filter: blur(5px); color: var(--lumina-white); padding: 20px; }
.ch-case-logo {
    display: block;
    height: auto;
    width: auto;
    max-height: 34px;
    max-width: min(210px, 85%);
    object-fit: contain;
    object-position: left center;
    margin: 0 0 14px 0;
    filter: brightness(0) invert(1);
}
.ch-case-logo--color { filter: none; }
.ch-case-overlay p { margin: 0 0 12px; text-align: left; color: var(--lumina-white); font-size: 18px; line-height: 1.4; }
.ch-case-overlay ul { margin: 0; padding-left: 18px; }
.ch-case-overlay li { margin-bottom: 7px; line-height: 1.48; color: rgba(252, 250, 250, 0.95); }
.ch-case-overlay li:last-child { margin-bottom: 0; }
.ch-case-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(252, 250, 250, 0.2);
}
.ch-case-result i {
    font-size: 20px;
    line-height: 1;
    color: rgba(252, 250, 250, 0.88);
    flex-shrink: 0;
    margin-top: 1px;
}
.ch-case-result span {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(252, 250, 250, 0.9);
}
.ch-case-controls { position: absolute; top: 16px; right: 16px; display: flex; align-items: center; gap: 10px; z-index: 2; }
.ch-case-controls button { width: 40px; height: 40px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(252, 250, 250, 0.5); background: rgba(30, 30, 30, 0.45); color: var(--lumina-white); cursor: pointer; line-height: 1; }
.ch-case-controls button:hover { background: rgba(100, 100, 255, 0.7); }
.ch-case-controls button i { display: block; font-size: 18px; line-height: 1; }
.ch-case-dots { display: flex; gap: 8px; }
.ch-case-dots span { display: block; width: 8px; height: 8px; border-radius: 999px; background: rgba(252, 250, 250, 0.48); }
.ch-case-dots span.active { width: 24px; background: var(--lumina-white); }

.ch-section.ch-cta-section { padding: clamp(64px, 7vw, 100px) 0 clamp(80px, 9vw, 120px); }
.ch-cta-shell { display: flex; justify-content: center; }
.ch-cta {
    width: 100%;
    max-width: 460px;
    margin: 0;
    padding: clamp(40px, 5vw, 52px) 0 0;
    border: 0;
    border-top: 1px solid var(--lumina-lightgrey);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    box-sizing: border-box;
}
.ch-cta h2 {
    margin: 0;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--lumina-black);
}
.ch-cta p {
    margin: 0;
    max-width: 36ch;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(10, 10, 51, 0.58);
}
.ch-cta .button-book-demo {
    margin-top: 4px;
}

.ch-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.52s ease, transform 0.52s ease; }
.ch-reveal.in { opacity: 1; transform: translateY(0); }
@keyframes ch-fade-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1120px) { .ch-module-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 980px) {
    .ch-shell { width: min(1240px, calc(100% - 40px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))); }
    .ch-hero-grid, .ch-assistant-grid { grid-template-columns: 1fr; }
    .ch-hero-visual { min-height: 320px; }
    .ch-float-a { left: 14px; } .ch-float-b { right: 14px; } .ch-float-c { left: 20px; }
    .ch-studio-feature-grid { grid-template-columns: 1fr; }
    .ch-studio-feature-visual { min-height: 300px; }
    .ch-module-card { min-height: 360px; }
    .ch-module-media { height: 230px; }
    .ch-visual-grid { grid-template-columns: 1fr 1fr; }
    .ch-case-slide { min-height: clamp(440px, 55vh, 640px); }
    .ch-case-overlay { left: 16px; right: 16px; width: auto; bottom: 16px; padding: 16px; }
    .ch-case-logo {
        max-height: 28px;
        max-width: min(190px, 78%);
        margin-bottom: 10px;
    }
    .ch-case-overlay p { font-size: 16px; }
    .ch-case-result { margin-top: 12px; padding-top: 12px; gap: 8px; }
    .ch-case-result i { font-size: 18px; }
    .ch-case-result span { font-size: 13px; }
    .ch-assistant-ai-card {
        left: 8%;
        width: min(118%, 520px);
        max-width: 520px;
        transform: translateY(-50%);
    }
    .ch-assistant-ai-card__panel {
        padding: 14px 18px 16px;
        gap: 12px;
    }
    .ch-assistant-ai-card__text {
        font-size: clamp(17px, 3.5vw, 20px);
        line-height: 1.32;
    }
    .ch-assistant-apps {
        gap: 27px;
        padding: 33px 21px;
    }
    .ch-assistant-app-card {
        max-width: 150px;
        gap: 18px;
    }
    .ch-assistant-app-card__icon {
        width: 93px;
        height: 93px;
        border-radius: 24px;
        font-size: 45px;
    }
    .ch-assistant-app-card__label {
        font-size: 20px;
    }
    .ch-assistant-embed {
        padding: 24px 14px;
    }
    .ch-assistant-embed__diagram {
        max-width: 100%;
    }
    .ch-assistant-embed__plate {
        grid-template-columns: 48px 1fr;
        gap: 12px;
        padding: 15px 16px 15px 14px;
        border-radius: 18px;
    }
    .ch-assistant-embed__plate--infra {
        margin-top: -12px;
        margin-left: 10px;
    }
    .ch-assistant-embed__plate--agents {
        margin-top: -12px;
        margin-left: 18px;
    }
    .ch-assistant-embed__ico {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 23px;
    }
    .ch-assistant-embed__title {
        font-size: 14px;
    }
    .ch-assistant-embed__hint {
        font-size: 11px;
    }
}
@media (max-width: 680px) {
    .ch-module-grid, .ch-visual-grid { grid-template-columns: 1fr; }
    .ch-section.ch-cta-section { padding: 52px 0 72px; }
    .ch-cta { gap: 16px; padding-top: 32px; }
    .ch-cta p { font-size: 14px; }
    .ch-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .ch-hero-actions .button-book-demo,
    .ch-hero-actions .button-hero-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }
    .ch-hero-actions .button-hero-outline {
        display: inline-flex;
    }
    .ch-case-slide { min-height: clamp(380px, 62vh, 540px); }
    .ch-case-controls button {
        min-width: 44px;
        min-height: 44px;
    }
    .ch-case-logo {
        max-height: 24px;
        max-width: min(150px, 70%);
        margin-bottom: 8px;
    }
    .ch-assist-item {
        min-height: 52px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .ch-visual-card img { max-width: 100%; height: auto; }
}
@media (prefers-reduced-motion: reduce) {
    .ch-float, .ch-chip, .ch-reveal,
    .ch-model-stream span, .ch-model-bars i, .ch-auto-orb, .ch-auto-cloud span,
    .ch-wf-fork-svg .wf2-path--accent,
    .wf2-seq {
        animation: none;
        transform: none;
        transition: none;
    }
    .ch-wf-fork-svg .wf2-path--accent {
        opacity: 0.5;
    }
}
