:root {
    --s01-blue: #2563eb;
    --s01-blue-dark: #1e3a8a;
    --s01-blue-soft: #eff6ff;
    --s01-ink: #0f172a;
    --s01-muted: #64748b;
    --s01-line: #dbe7f8;
    --s01-bg: #eef4fb;
    --s01-card: #f8fbff; /* 内嵌小卡片调整为现代微凹淡蓝灰质感，防套娃 */
    --s01-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    --s01-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background: radial-gradient(circle at top right, #f0f7ff, var(--s01-bg));
    background-attachment: fixed;
}

.station01-page,
.station01-page * {
    box-sizing: border-box;
}

.station01-page {
    display: grid;
    gap: 16px;
    color: var(--s01-ink);
    padding: 8px 0;
}

.station01-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 28px;
    border: 1px solid rgba(219, 231, 248, 0.7);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.station01-hero-copy {
    min-width: 0;
}

.station01-eyebrow,
.station01-section-label {
    display: block;
    margin: 0 0 6px;
    color: var(--s01-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.station01-hero h1 {
    margin: 0 0 8px;
    color: var(--s01-blue-dark);
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--s01-blue-dark) 30%, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.station01-hero p {
    max-width: 920px;
    margin: 0;
    color: var(--s01-muted);
    font-size: 14px;
    line-height: 1.6;
}

.station01-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(191, 219, 254, 0.75);
    border-radius: 999px;
    color: var(--s01-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, #eff6ff, #e0f2fe);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
}

.station01-grid {
    display: grid;
    grid-template-columns: 300px minmax(620px, 1fr) 300px;
    gap: 16px;
    align-items: start;
}

/* 面板维持 pure-white 以在渐变底色下获得鲜明凸起；而内层小白卡则用微蓝凹陷形成对比 */
.station01-panel {
    border: 1px solid rgba(219, 231, 248, 0.88);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--s01-shadow);
    min-width: 0;
    padding: 18px;
}

.station01-card {
    border: 1px solid #dce8fa;
    border-radius: 18px;
    background: var(--s01-card);
    transition: var(--s01-transition);
}

.station01-left,
.station01-right {
    align-self: start; /* 自适应高度，从根本上解决底侧荒凉空白的问题 */
}

.station01-panel-head {
    margin-bottom: 16px;
    border-bottom: 2px solid #f0f7ff;
    padding-bottom: 12px;
}

.station01-panel-head-inline {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 12px;
}

.station01-panel-head h2 {
    margin: 0;
    color: var(--s01-blue-dark);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 905;
}

.station01-block {
    display: grid;
    gap: 10px;
    padding: 0 0 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ebf3fd;
}

.station01-block:last-of-type {
    margin-bottom: 0;
}

.station01-block-title {
    color: var(--s01-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.station01-drop-zone {
    display: grid;
    gap: 7px;
    place-items: center;
    padding: 20px 14px;
    border: 2px dashed #b7cdf2;
    border-radius: 18px;
    color: var(--s01-muted);
    text-align: center;
    cursor: pointer;
    background: linear-gradient(180deg, #f8fbff 0%, #f0f6ff 100%);
    transition: var(--s01-transition);
    position: relative;
    overflow: hidden;
}

.station01-drop-zone input {
    display: none;
}

.station01-drop-zone::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.station01-drop-zone:hover::before,
.station01-drop-zone.is-dragging::before {
    opacity: 1;
    animation: station01-border-sheen 3s linear infinite;
}

.station01-drop-zone:hover,
.station01-drop-zone.is-dragging {
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
    background: #ffffff;
    transform: translateY(-2px);
}

.station01-upload-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--s01-blue), #3b82f6);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
    transition: var(--s01-transition);
}

.station01-drop-zone:hover .station01-upload-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

.station01-upload-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.station01-drop-zone strong {
    color: var(--s01-ink);
    font-size: 13px;
    font-weight: 850;
}

.station01-drop-zone small {
    color: var(--s01-muted);
    font-size: 11px;
}

.station01-samples {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.station01-sample,
.station01-preview,
.station01-operation,
.station01-param-option,
.station01-button,
.station01-text-button {
    font: inherit;
}

.station01-sample {
    display: grid;
    gap: 0;
    min-width: 0;
    padding: 0;
    border: 1px solid #dce9fb;
    border-radius: 14px;
    overflow: hidden;
    color: var(--s01-ink);
    text-align: left;
    cursor: pointer;
    background: #ffffff;
    transition: var(--s01-transition);
    position: relative;
    overflow: hidden;
}

.station01-sample:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
    border-color: #93c5fd;
}

.station01-sample.is-active {
    border-color: var(--s01-blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.16), 0 8px 20px rgba(37, 99, 235, 0.15);
    background: #eff6ff;
}

.station01-sample img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    transition: var(--s01-transition);
}

.station01-sample:hover img {
    transform: scale(1.05);
}

.station01-sample strong {
    overflow: hidden;
    color: var(--s01-ink);
    font-size: 10px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.station01-button,
.station01-text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border: 1px solid #cfe0f6;
    border-radius: 12px;
    padding: 0 14px;
    color: var(--s01-blue);
    font-weight: 855;
    cursor: pointer;
    background: #ffffff;
    transition: var(--s01-transition);
}

.station01-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    border-color: var(--s01-blue);
    background: #eff6ff;
}

.station01-button-primary {
    border-color: var(--s01-blue);
    color: #ffffff;
    background: linear-gradient(135deg, var(--s01-blue), #3b82f6);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.2);
}

.station01-button-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

.station01-operation-list {
    display: grid;
    gap: 8px;
}

.station01-operation {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    border: 1px solid #dfebfa;
    border-radius: 14px;
    padding: 0 12px;
    color: var(--s01-ink);
    text-align: left;
    cursor: pointer;
    background: #ffffff;
    transition: var(--s01-transition);
    position: relative;
}

.station01-operation:hover {
    transform: translateX(4px);
    border-color: #bfdbfe;
    background: #f8fbff;
}

.station01-operation::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #c1d3ef;
    border-radius: 50%;
    flex: 0 0 auto;
    transition: var(--s01-transition);
}

.station01-operation strong {
    font-size: 13px;
    font-weight: 850;
}

.station01-operation.is-active {
    border-color: var(--s01-blue);
    color: var(--s01-blue);
    background: linear-gradient(90deg, var(--s01-blue-soft), #fff);
    box-shadow: inset 3px 0 0 var(--s01-blue);
}

.station01-operation.is-active::before {
    border-color: var(--s01-blue);
    background: var(--s01-blue);
    box-shadow: inset 0 0 0 3px #ffffff;
}

.station01-params,
.station01-param-group {
    display: grid;
    gap: 12px;
}

.station01-param-title {
    color: var(--s01-blue-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.02em;
}

.station01-param-options {
    display: grid;
    gap: 8px;
}

.station01-param-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #dfeaf8;
    border-radius: 12px;
    color: var(--s01-ink);
    font-size: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: var(--s01-transition);
}

.station01-param-option:hover {
    border-color: var(--s01-blue);
    background: var(--s01-blue-soft);
}

.station01-param-option input {
    margin: 0;
    accent-color: var(--s01-blue);
    cursor: pointer;
}

.station01-param-slider {
    display: grid;
    gap: 8px;
}

.station01-param-slider div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--s01-muted);
    font-size: 12px;
}

.station01-param-slider strong {
    color: var(--s01-blue);
    font-weight: 900;
}

/* 现代化精致滑杆轨道样式 */
.station01-param-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.2s;
}

.station01-param-slider input[type="range"]:hover {
    background: #cbd5e1;
}

.station01-param-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--s01-blue);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    transition: transform 0.1s;
}

.station01-param-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    background: var(--s01-blue-dark);
}

.station01-tip {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(219, 231, 248, 0.6);
    border-radius: 16px;
    color: #1e3a8a;
    background: linear-gradient(135deg, #f0f7ff, #e0f2fe);
    box-shadow: inset 0 2px 4px rgba(37, 99, 235, 0.02);
}

.station01-tip p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
}

.station01-left.is-loading {
    position: relative;
}

.station01-left.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
    animation: station01-panel-loading 1s linear infinite;
}

.station01-message {
    min-height: 32px;
    max-width: 320px;
    padding: 8px 14px;
    border: 1px solid #b7e4c7;
    border-radius: 999px;
    color: #14532d;
    font-size: 12px;
    font-weight: 800;
    background: #f0fdf4;
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.05);
}

.station01-message[hidden] {
    display: none;
}

.station01-message.is-error {
    border-color: #fca5a5;
    color: #991b1b;
    background: #fef2f2;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.05);
}

.station01-status {
    display: grid;
    grid-template-columns: minmax(170px, 1.2fr) minmax(105px, 0.7fr) minmax(90px, 0.65fr) minmax(100px, 0.7fr) auto;
    gap: 8px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(219, 231, 248, 0.8);
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f7fe 100%);
}

.station01-status div {
    min-width: 0;
}

.station01-status span {
    display: block;
    margin-bottom: 4px;
    color: var(--s01-muted);
    font-size: 11px;
    font-weight: 750;
}

.station01-status strong {
    display: block;
    overflow: hidden;
    color: var(--s01-ink);
    font-size: 12.5px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.station01-status-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.station01-status-actions .station01-button {
    min-height: 32px;
    border-radius: 10px;
    white-space: nowrap;
}

.station01-flow {
    position: relative;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(219, 231, 248, 0.7);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.station01-flow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 18px;
    right: 18px;
    height: 3px;
    background: #e2e8f0;
    transform: translateY(-50%);
}

.station01-flow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--s01-blue);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.16);
    transform: translateY(-50%);
    animation: station01-flow-dot 1.5s ease-in-out infinite;
}

.station01-flow-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 8px;
}

.station01-flow-steps div {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-width: 0;
    color: var(--s01-muted);
    text-align: center;
    transition: var(--s01-transition);
}

.station01-flow-steps span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid #cfe0f6;
    border-radius: 50%;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    background: #ffffff;
    transition: var(--s01-transition);
}

.station01-flow-steps strong {
    color: inherit;
    font-size: 11px;
    font-weight: 850;
}

.station01-flow-steps .is-active span {
    border-color: var(--s01-blue);
    color: #ffffff;
    background: var(--s01-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.station01-flow-steps .is-done span {
    border-color: var(--s01-blue);
    color: #ffffff;
    background: var(--s01-blue);
}

.station01-flow-steps .is-active strong,
.station01-flow-steps .is-done strong {
    color: var(--s01-blue);
    font-weight: 900;
}

.station01-stage {
    margin-top: 12px;
}

.station01-compare {
    position: relative;
    display: grid;
    grid-template-rows: 44px minmax(310px, 43vh);
    overflow: hidden;
    border: 1px solid rgba(219, 231, 248, 0.9);
    border-radius: 24px;
    background: #f1f6fc;
    box-shadow: var(--s01-shadow);
    transition: var(--s01-transition);
}

.station01-compare-frame {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(37, 99, 235, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.02) 1px, transparent 1px),
        #eef4fb;
    background-size: 32px 32px;
}

.station01-compare-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.station01-after-layer {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 var(--split));
    pointer-events: none;
}

/* 霓虹发光激光对比线 */
.station01-compare::before {
    content: "";
    position: absolute;
    top: 44px;
    bottom: 0;
    left: var(--split);
    z-index: 5;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #2563eb, #60a5fa);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.8), 0 0 4px rgba(37, 99, 235, 0.5);
    transform: translateX(-1px);
    pointer-events: none;
}

/* 精致发光对比滑柄 */
.station01-compare-handle {
    position: absolute;
    top: calc(50% + 22px);
    left: var(--split);
    z-index: 6;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    cursor: ew-resize;
    background: var(--s01-blue);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35), 0 0 0 4px rgba(37, 99, 235, 0.15);
    transform: translate(-50%, -50%);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.station01-compare-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--s01-blue-dark);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45), 0 0 0 6px rgba(37, 99, 235, 0.2);
}

.station01-compare-handle span {
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    animation: station01-arrows-pulse 2s ease-in-out infinite;
    user-select: none;
}

.station01-stage-label {
    z-index: 7;
    align-self: center;
    padding: 6px 14px;
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(219, 231, 248, 0.7);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.station01-label-left {
    grid-row: 1;
    justify-self: start;
    margin-left: 12px;
}

.station01-label-right {
    position: absolute;
    top: 8px;
    right: 12px;
}

.station01-empty {
    position: absolute;
    inset: 44px 0 0;
    z-index: 8;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 12px;
    color: var(--s01-muted);
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #f1f7fe 100%);
}

.station01-empty strong {
    color: var(--s01-blue-dark);
    font-size: 20px;
    font-weight: 900;
}

.station01-compare.is-empty .station01-after-layer,
.station01-compare.is-empty .station01-compare-handle,
.station01-compare.is-empty::before {
    display: none;
}

.station01-compare.is-processing .station01-after {
    opacity: 0.55;
}

.station01-compare.is-geometry .station01-compare-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* 探针交叉线精密流光 */
.station01-crosshair {
    position: absolute;
    z-index: 9;
    left: var(--probe-x);
    top: var(--probe-y);
    width: 0;
    height: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.station01-crosshair::before,
.station01-crosshair::after {
    content: "";
    position: absolute;
    background: #3b82f6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.8);
}

.station01-crosshair::before {
    left: -20px;
    top: 0;
    width: 40px;
    height: 1.5px;
}

.station01-crosshair::after {
    left: 0;
    top: -20px;
    width: 1.5px;
    height: 40px;
}

.station01-probe-bubble {
    position: absolute;
    z-index: 10;
    left: calc(var(--probe-x) + 14px);
    top: calc(var(--probe-y) + 14px);
    max-width: 220px;
    padding: 8px 12px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.2s ease;
    transform: translateY(4px);
}

.station01-compare.has-probe .station01-crosshair,
.station01-compare.has-probe .station01-probe-bubble {
    opacity: 1;
}

.station01-compare.has-probe .station01-probe-bubble {
    transform: translateY(0);
}

.station01-compare.is-sweeping {
    transition: none;
}

.station01-preview-section {
    margin-top: 16px;
}

.station01-section-head,
.station01-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.station01-section-head h3,
.station01-card-head h3 {
    margin: 0;
    color: var(--s01-blue-dark);
    font-size: 15px;
    font-weight: 900;
}

.station01-card-head span {
    color: var(--s01-muted);
    font-size: 11px;
    font-weight: 800;
}

.station01-preview-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    gap: 10px;
}

.station01-preview {
    position: relative;
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 8px;
    border: 1px solid #deebfb;
    border-radius: 16px;
    color: var(--s01-ink);
    text-align: left;
    cursor: pointer;
    background: #ffffff;
    transition: var(--s01-transition);
}

.station01-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
    border-color: #93c5fd;
}

.station01-preview.is-active {
    border-color: var(--s01-blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), 0 8px 22px rgba(37, 99, 235, 0.12);
    background: var(--s01-blue-soft);
}

.station01-preview-thumb-wrap,
.station01-preview-thumb,
.station01-preview-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 10px;
}

.station01-preview-thumb {
    object-fit: cover;
}

.station01-preview-placeholder {
    background: linear-gradient(135deg, #eaf2ff, #f8fbff);
}

.station01-preview strong,
.station01-preview small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.station01-preview strong {
    font-size: 12px;
    font-weight: 900;
}

.station01-preview small {
    color: var(--s01-muted);
    font-size: 10px;
}

.station01-preview em {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 6px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
    background: var(--s01-blue);
}

.station01-stats-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.62fr) minmax(0, 0.9fr);
    grid-template-rows: 1fr;
    gap: 16px;
    margin-top: 16px;
}

/* 嵌套卡片微调：通过微妙的浅色与主白色容器进行层级对照，防止白色卡片堆叠造成的“套娃”无力感 */
.station01-card {
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(219, 231, 248, 0.6);
    border-radius: 20px;
    background: #f8fbff; /* 使其微微内凹 */
    box-shadow: inset 0 2px 4px rgba(37, 99, 235, 0.01);
}

.station01-stats-grid > .station01-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.station01-stats-grid > .station01-card > .station01-card-head {
    flex: 0 0 auto;
}

.station01-stats-grid > .station01-card > .station01-histogram,
.station01-stats-grid > .station01-card > .station01-info-list,
.station01-stats-grid > .station01-card > .station01-history-list {
    flex: 1 1 auto;
    min-height: 0;
}

.station01-stats-grid > .station01-card > .station01-info-list {
    gap: 6px;
}

.station01-stats-grid > .station01-card > .station01-info-list > div {
    padding-bottom: 5px;
}

.station01-stats-grid > .station01-card > .station01-history-list {
    overflow: auto;
}

.station01-histogram {
    width: 100%;
    height: 186px;
    border-radius: 12px;
    overflow: hidden;
}

.station01-info-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.station01-info-list > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1.5px dashed #e2edf9;
}

.station01-info-list > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.station01-info-list dt {
    color: var(--s01-muted);
    font-size: 12px;
    font-weight: 750;
}

.station01-info-list dd {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--s01-blue-dark);
    font-size: 13px;
    font-weight: 900;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.station01-history-head,
.station01-history-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 0.9fr) minmax(0, 1.1fr) 44px;
    gap: 6px;
    align-items: center;
    min-width: 0;
}

.station01-history-head {
    margin-bottom: 8px;
    color: var(--s01-muted);
    font-size: 10px;
    font-weight: 800;
    padding: 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.station01-history-list {
    display: grid;
    gap: 8px;
}

/* 历史卡片在灰色凹槽中反转为白色立体悬浮，更有卡片质感 */
.station01-history-row {
    padding: 8px 10px;
    border: 1px solid rgba(219, 231, 248, 0.7);
    border-radius: 14px;
    background: #ffffff;
    font-size: 11px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    transition: var(--s01-transition);
}

.station01-history-row:hover {
    transform: translateY(-2px);
    border-color: var(--s01-blue);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
}

.station01-history-head span,
.station01-history-row span,
.station01-history-row time {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.station01-history-head span:last-child,
.station01-history-row span:last-child {
    text-align: right;
    font-weight: 800;
}

.station01-history-row time {
    color: var(--s01-muted);
}

.station01-history-empty {
    padding: 20px;
    border: 2px dashed #cbdcf5;
    border-radius: 14px;
    color: var(--s01-muted);
    font-size: 12px;
    text-align: center;
    background: #f8fbff;
}

.station01-text-button {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 9px;
    color: var(--s01-blue);
    font-size: 11px;
    font-weight: 800;
    border: 1px solid #cfe0f6;
    background: #ffffff;
    cursor: pointer;
    transition: var(--s01-transition);
}

.station01-text-button:hover {
    border-color: var(--s01-blue);
    background: var(--s01-blue-soft);
    color: var(--s01-blue-dark);
}

.station01-notes {
    display: grid;
    gap: 8px;
}

.station01-note-card {
    padding: 10px 12px;
    border: 1px solid rgba(219, 231, 248, 0.7);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.015);
}

.station01-note-card h4 {
    margin: 0 0 6px;
    color: var(--s01-blue);
    font-size: 12px;
    font-weight: 900;
}

.station01-note-card p,
.station01-note-card code {
    margin: 0;
    color: #334155;
    font-size: 11px;
    line-height: 1.5;
}

.station01-note-card code {
    display: block;
    padding: 8px;
    border-radius: 12px;
    color: #1e3a8a;
    background: #f1f7fe;
    white-space: normal;
    border: 1px solid #e2eefd;
    margin-top: 6px;
}

.station01-note-card.has-cdf::after {
    content: "";
    display: block;
    height: 34px;
    margin-top: 10px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, transparent 0 18%, rgba(37, 99, 235, 0.25) 18% 20%, transparent 20%),
        linear-gradient(90deg, #e0edff, #bfdbfe);
}

.station01-pixel-card {
    margin-top: 12px;
}

.station01-probe-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.station01-probe-summary div {
    padding: 10px;
    border: 1px solid rgba(219, 231, 248, 0.6);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.012);
}

.station01-probe-summary span {
    display: block;
    margin-bottom: 4px;
    color: var(--s01-muted);
    font-size: 11px;
    font-weight: 800;
}

.station01-probe-summary strong {
    color: var(--s01-ink);
    font-size: 12.5px;
    font-weight: 900;
    word-break: break-word;
}

.station01-channel-bars {
    display: grid;
    gap: 8px;
}

.station01-channel-bar {
    position: relative;
    display: grid;
    grid-template-columns: 80px 42px;
    justify-content: space-between;
    gap: 8px;
    min-height: 32px;
    overflow: hidden;
    padding: 8px 12px;
    border: 1px solid rgba(219, 231, 248, 0.6);
    border-radius: 12px;
    background: #ffffff;
}

.station01-channel-bar span,
.station01-channel-bar strong {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 900;
}

.station01-channel-bar span {
    color: #475569;
}

.station01-channel-bar strong {
    text-align: right;
    color: var(--s01-blue-dark);
}

.station01-channel-bar i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    opacity: 0.15;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.station01-channel-bar.is-red i {
    background: linear-gradient(90deg, #ef4444, #f87171);
}
.station01-channel-bar.is-green i {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}
.station01-channel-bar.is-blue i {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.station01-channel-bar.is-gray i {
    background: linear-gradient(90deg, #64748b, #94a3b8);
}

.station01-gray-calc {
    margin-top: 10px;
    padding: 10px;
    border-radius: 12px;
    color: var(--s01-blue-dark);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    background: #eff6ff;
    border: 1px dashed rgba(37, 99, 235, 0.25);
}

.station01-gray-calc.is-pulsing {
    animation: station01-calc-pulse 0.62s ease;
}

.station01-summary-list {
    margin-top: 2px;
}

/* =========================================================
   右侧计算过程可视化卡片：高端动态像素计算流
   ========================================================= */
.station01-process-viz {
    margin-top: 12px;
}

.station01-process-scene {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
    gap: 8px;
    min-height: 110px;
    padding: 16px 12px;
    border-radius: 18px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.10) 0 25%, transparent 25%),
        radial-gradient(ellipse at 70% 80%, rgba(37, 99, 235, 0.08) 0 25%, transparent 25%),
        linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #e0f2fe 100%);
    border: 1px solid rgba(191, 219, 254, 0.85);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 8px 24px rgba(37, 99, 235, 0.10);
    overflow: hidden;
}

/* 科技感网格背景 */
.station01-process-scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
    pointer-events: none;
}

.station01-process-field {
    position: relative;
    min-height: 90px;
    z-index: 1;
}

.station01-process-node {
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-radius: 4px;
    box-shadow: 0 0 12px currentColor;
    opacity: 0;
    transform: translateX(-30px) scale(0.6);
    animation: station01-node-pass 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.station01-process-field--output .station01-process-node {
    left: auto;
    right: 0;
    transform: translateX(30px) scale(0.6);
    animation-name: station01-node-exit;
}

.station01-process-node:nth-child(1) { animation-delay: 0s; }
.station01-process-node:nth-child(2) { animation-delay: 0.25s; }
.station01-process-node:nth-child(3) { animation-delay: 0.5s; }
.station01-process-node:nth-child(4) { animation-delay: 0.75s; }
.station01-process-node:nth-child(5) { animation-delay: 1s; }

/* 核心处理单元 */
.station01-process-core {
    position: relative;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    z-index: 2;
}

.station01-process-core-shape {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    animation: station01-core-breathe 2.2s ease-in-out infinite;
    z-index: 2;
}

.station01-process-core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 99, 235, 0.25);
    animation: station01-core-ring 2.6s linear infinite;
}

.station01-process-core-ring--outer {
    inset: -18px;
    border-color: rgba(37, 99, 235, 0.12);
    animation-duration: 4.2s;
}

.station01-process-core-ring:not(.station01-process-core-ring--outer)::before,
.station01-process-core-ring:not(.station01-process-core-ring--outer)::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.18);
    animation: station01-core-ring 3.4s linear infinite reverse;
}

.station01-process-core-ring:not(.station01-process-core-ring--outer)::after {
    inset: -20px;
    border-color: rgba(37, 99, 235, 0.10);
    animation-duration: 4.2s;
}

.station01-process-core-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0, transparent 70%);
    filter: blur(8px);
    animation: station01-core-glow 2.2s ease-in-out infinite;
    z-index: 1;
}

/* 轨道连线 */
.station01-process-field::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(100% + 8px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.18), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.station01-process-field--input::after { left: 0; }
.station01-process-field--output::after { right: 0; }

/* 输入 → 核心的光束 */
.station01-process-beams {
    position: absolute;
    left: calc(33.33% - 20px);
    right: calc(33.33% - 20px);
    top: 50%;
    height: 60px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.station01-process-beam {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: station01-beam-stretch 2s ease-in-out infinite;
}

.station01-process-beam[data-beam="r"] { top: 22%; animation-delay: 0s; }
.station01-process-beam[data-beam="g"] { top: 50%; animation-delay: 0.2s; }
.station01-process-beam[data-beam="b"] { top: 78%; animation-delay: 0.4s; }

/* 核心扫描线 */
.station01-process-core-scan {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
    opacity: 0.5;
}

.station01-process-core-scan::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 12px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: rotate(25deg);
    animation: station01-core-scan 2.8s linear infinite;
}

/* 背景漂浮尘埃 */
.station01-process-dust {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.station01-process-dust i {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.25);
    animation: station01-dust-float 5s ease-in-out infinite;
}

.station01-process-dust i:nth-child(1) { left: 12%; top: 20%; animation-delay: 0s; }
.station01-process-dust i:nth-child(2) { left: 25%; top: 75%; animation-delay: 0.7s; }
.station01-process-dust i:nth-child(3) { left: 45%; top: 30%; animation-delay: 1.4s; }
.station01-process-dust i:nth-child(4) { left: 60%; top: 65%; animation-delay: 2.1s; }
.station01-process-dust i:nth-child(5) { left: 78%; top: 25%; animation-delay: 2.8s; }
.station01-process-dust i:nth-child(6) { left: 88%; top: 70%; animation-delay: 3.5s; }
.station01-process-dust i:nth-child(7) { left: 5%; top: 55%; animation-delay: 4.2s; }
.station01-process-dust i:nth-child(8) { left: 95%; top: 45%; animation-delay: 4.9s; }

/* 默认灰度化：RGB → Gray
   结构：三路颜色流从左侧不同高度汇入核心，融合后单路灰色输出 */
.station01-process-viz.is-grayscale .station01-process-field--input .station01-process-node:nth-child(1) { top: 20%; }
.station01-process-viz.is-grayscale .station01-process-field--input .station01-process-node:nth-child(2) { top: 38%; }
.station01-process-viz.is-grayscale .station01-process-field--input .station01-process-node:nth-child(3) { top: 50%; }
.station01-process-viz.is-grayscale .station01-process-field--input .station01-process-node:nth-child(4) { top: 62%; }
.station01-process-viz.is-grayscale .station01-process-field--input .station01-process-node:nth-child(5) { top: 80%; }
.station01-process-viz.is-grayscale .station01-process-node[data-channel="r"] { color: #f87171; background: #f87171; }
.station01-process-viz.is-grayscale .station01-process-node[data-channel="g"] { color: #4ade80; background: #4ade80; }
.station01-process-viz.is-grayscale .station01-process-node[data-channel="b"] { color: #60a5fa; background: #60a5fa; }
.station01-process-viz.is-grayscale .station01-process-node[data-channel="r2"] { color: #fb7185; background: #fb7185; }
.station01-process-viz.is-grayscale .station01-process-node[data-channel="g2"] { color: #34d399; background: #34d399; }
.station01-process-viz.is-grayscale .station01-process-field--output .station01-process-node { top: 50%; color: #94a3b8; background: #94a3b8; }
.station01-process-viz.is-grayscale .station01-process-field--output .station01-process-node:nth-child(1) { animation-delay: 0.1s; }
.station01-process-viz.is-grayscale .station01-process-field--output .station01-process-node:nth-child(2) { animation-delay: 0.35s; }
.station01-process-viz.is-grayscale .station01-process-field--output .station01-process-node:nth-child(3) { animation-delay: 0.6s; }
.station01-process-viz.is-grayscale .station01-process-field--output .station01-process-node:nth-child(4) { animation-delay: 0.85s; }
.station01-process-viz.is-grayscale .station01-process-field--output .station01-process-node:nth-child(5) { animation-delay: 1.1s; }
.station01-process-viz.is-grayscale .station01-process-beam[data-beam="r"] { top: 22%; background: linear-gradient(90deg, #f87171, transparent); box-shadow: 0 0 10px #f87171; }
.station01-process-viz.is-grayscale .station01-process-beam[data-beam="g"] { top: 50%; background: linear-gradient(90deg, #4ade80, transparent); box-shadow: 0 0 10px #4ade80; }
.station01-process-viz.is-grayscale .station01-process-beam[data-beam="b"] { top: 78%; background: linear-gradient(90deg, #60a5fa, transparent); box-shadow: 0 0 10px #60a5fa; }
.station01-process-viz.is-grayscale .station01-process-core-shape {
    background: conic-gradient(from 0deg, #f87171, #4ade80, #60a5fa, #f87171);
    animation: station01-core-spin 2.2s linear infinite, station01-core-breathe 2.2s ease-in-out infinite;
}

/* 二值化：灰度被阈值切分
   结构：单路灰度进入，核心水平阈值线闪过，输出分裂为上下黑白两路 */
.station01-process-viz.is-binary .station01-process-field--input .station01-process-node { top: 50%; color: #94a3b8; background: #94a3b8; }
.station01-process-viz.is-binary .station01-process-field--output .station01-process-node:nth-child(odd) { top: 28%; color: #64748b; background: #f8fafc; box-shadow: 0 0 12px #64748b, inset 0 0 0 1px #94a3b8; }
.station01-process-viz.is-binary .station01-process-field--output .station01-process-node:nth-child(even) { top: 72%; color: #020617; background: #020617; }
.station01-process-viz.is-binary .station01-process-beam[data-beam="r"],
.station01-process-viz.is-binary .station01-process-beam[data-beam="b"] { opacity: 0; }
.station01-process-viz.is-binary .station01-process-beam[data-beam="g"] {
    top: 50%;
    background: linear-gradient(90deg, #94a3b8 60%, transparent);
    box-shadow: 0 0 10px #94a3b8;
}
.station01-process-viz.is-binary .station01-process-core-shape {
    background: linear-gradient(180deg, #f8fafc 50%, #020617 50%);
    border-radius: 50%;
    animation: station01-core-flip 2.6s ease-in-out infinite;
}
.station01-process-viz.is-binary .station01-process-core::before {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: calc(50% - 1px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    box-shadow: 0 0 8px #38bdf8;
    animation: station01-threshold-sweep 2.6s ease-in-out infinite;
    z-index: 4;
}
.station01-process-viz.is-binary .station01-process-core-ring { border-color: rgba(148, 163, 184, 0.5); }
.station01-process-viz.is-binary .station01-process-core-scan::before { background: linear-gradient(90deg, transparent, rgba(248, 250, 252, 0.5), transparent); }

/* 通道分离：RGB 分裂成三路
   结构：彩色 RGB 从中间进入，核心三叉分裂，输出向上/中/下三路散开 */
.station01-process-viz.is-channel .station01-process-field--input .station01-process-node { top: 50%; color: #ffffff; background: linear-gradient(135deg, #f87171, #4ade80 50%, #60a5fa); }
.station01-process-viz.is-channel .station01-process-field--output .station01-process-node[data-channel="gray"] { top: 18%; color: #f87171; background: #f87171; }
.station01-process-viz.is-channel .station01-process-field--output .station01-process-node[data-channel="gray2"] { top: 50%; color: #4ade80; background: #4ade80; }
.station01-process-viz.is-channel .station01-process-field--output .station01-process-node[data-channel="gray3"] { top: 82%; color: #60a5fa; background: #60a5fa; }
.station01-process-viz.is-channel .station01-process-field--output .station01-process-node[data-channel="gray4"],
.station01-process-viz.is-channel .station01-process-field--output .station01-process-node[data-channel="gray5"] { display: none; }
.station01-process-viz.is-channel .station01-process-beam[data-beam="r"] { top: 32%; transform: rotate(10deg); transform-origin: left center; background: linear-gradient(90deg, #f87171, transparent); box-shadow: 0 0 10px #f87171; }
.station01-process-viz.is-channel .station01-process-beam[data-beam="g"] { top: 50%; background: linear-gradient(90deg, #4ade80, transparent); box-shadow: 0 0 10px #4ade80; }
.station01-process-viz.is-channel .station01-process-beam[data-beam="b"] { top: 68%; transform: rotate(-10deg); transform-origin: left center; background: linear-gradient(90deg, #60a5fa, transparent); box-shadow: 0 0 10px #60a5fa; }
.station01-process-viz.is-channel .station01-process-core-shape {
    background: transparent;
    border: 2px solid rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
    animation: station01-core-split 2.4s ease-in-out infinite;
}

/* HSV：彩虹色相环旋转
   结构：RGB 三路进入，核心色相锥旋转，输出 H/S/V 三路 */
.station01-process-viz.is-hsv .station01-process-field--input .station01-process-node:nth-child(1) { top: 25%; }
.station01-process-viz.is-hsv .station01-process-field--input .station01-process-node:nth-child(2) { top: 50%; }
.station01-process-viz.is-hsv .station01-process-field--input .station01-process-node:nth-child(3) { top: 75%; }
.station01-process-viz.is-hsv .station01-process-field--input .station01-process-node:nth-child(4) { top: 38%; }
.station01-process-viz.is-hsv .station01-process-field--input .station01-process-node:nth-child(5) { top: 62%; }
.station01-process-viz.is-hsv .station01-process-node { color: #ffffff; background: conic-gradient(from 0deg, #f87171, #facc15, #4ade80, #60a5fa, #a78bfa, #f87171); }
.station01-process-viz.is-hsv .station01-process-field--output .station01-process-node[data-channel="gray"] { top: 20%; color: #a78bfa; background: #a78bfa; }
.station01-process-viz.is-hsv .station01-process-field--output .station01-process-node[data-channel="gray2"] { top: 50%; color: #22d3ee; background: #22d3ee; }
.station01-process-viz.is-hsv .station01-process-field--output .station01-process-node[data-channel="gray3"] { top: 80%; color: #facc15; background: #facc15; }
.station01-process-viz.is-hsv .station01-process-field--output .station01-process-node[data-channel="gray4"],
.station01-process-viz.is-hsv .station01-process-field--output .station01-process-node[data-channel="gray5"] { display: none; }
.station01-process-viz.is-hsv .station01-process-beam[data-beam="r"] { top: 28%; background: linear-gradient(90deg, #f87171, transparent); box-shadow: 0 0 10px #f87171; }
.station01-process-viz.is-hsv .station01-process-beam[data-beam="g"] { top: 50%; background: linear-gradient(90deg, #4ade80, transparent); box-shadow: 0 0 10px #4ade80; }
.station01-process-viz.is-hsv .station01-process-beam[data-beam="b"] { top: 72%; background: linear-gradient(90deg, #60a5fa, transparent); box-shadow: 0 0 10px #60a5fa; }
.station01-process-viz.is-hsv .station01-process-core-shape {
    background: conic-gradient(from 0deg, #f87171, #facc15, #4ade80, #60a5fa, #a78bfa, #f87171);
    border-radius: 50%;
    animation: station01-core-spin 1.6s linear infinite, station01-core-breathe 2s ease-in-out infinite;
}

/* 直方图均衡化：灰度分布被拉开
   结构：左侧密集灰度堆，核心冲击波爆开，输出均匀分布 */
.station01-process-viz.is-equalize .station01-process-field--input .station01-process-node:nth-child(1) { top: 32%; }
.station01-process-viz.is-equalize .station01-process-field--input .station01-process-node:nth-child(2) { top: 42%; }
.station01-process-viz.is-equalize .station01-process-field--input .station01-process-node:nth-child(3) { top: 50%; }
.station01-process-viz.is-equalize .station01-process-field--input .station01-process-node:nth-child(4) { top: 58%; }
.station01-process-viz.is-equalize .station01-process-field--input .station01-process-node:nth-child(5) { top: 68%; }
.station01-process-viz.is-equalize .station01-process-field--input .station01-process-node { color: #94a3b8; background: #94a3b8; }
.station01-process-viz.is-equalize .station01-process-field--output .station01-process-node:nth-child(1) { top: 18%; }
.station01-process-viz.is-equalize .station01-process-field--output .station01-process-node:nth-child(2) { top: 36%; }
.station01-process-viz.is-equalize .station01-process-field--output .station01-process-node:nth-child(3) { top: 50%; }
.station01-process-viz.is-equalize .station01-process-field--output .station01-process-node:nth-child(4) { top: 64%; }
.station01-process-viz.is-equalize .station01-process-field--output .station01-process-node:nth-child(5) { top: 82%; }
.station01-process-viz.is-equalize .station01-process-field--output .station01-process-node { color: #38bdf8; background: #38bdf8; }
.station01-process-viz.is-equalize .station01-process-beam[data-beam="r"],
.station01-process-viz.is-equalize .station01-process-beam[data-beam="b"] { opacity: 0; }
.station01-process-viz.is-equalize .station01-process-beam[data-beam="g"] {
    top: 50%;
    background: linear-gradient(90deg, #94a3b8 40%, transparent);
    box-shadow: 0 0 10px #94a3b8;
}
.station01-process-viz.is-equalize .station01-process-core-shape {
    background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
    animation: station01-core-burst 2.4s ease-in-out infinite;
}

/* 反色：颜色反向穿越
   结构：彩色 RGB 进入，核心白光一闪，输出互补色同位反向 */
.station01-process-viz.is-invert .station01-process-field--input .station01-process-node:nth-child(1) { top: 25%; }
.station01-process-viz.is-invert .station01-process-field--input .station01-process-node:nth-child(2) { top: 42%; }
.station01-process-viz.is-invert .station01-process-field--input .station01-process-node:nth-child(3) { top: 58%; }
.station01-process-viz.is-invert .station01-process-field--input .station01-process-node:nth-child(4) { top: 34%; }
.station01-process-viz.is-invert .station01-process-field--input .station01-process-node:nth-child(5) { top: 66%; }
.station01-process-viz.is-invert .station01-process-node[data-channel="r"] { color: #f87171; background: #f87171; }
.station01-process-viz.is-invert .station01-process-node[data-channel="g"] { color: #4ade80; background: #4ade80; }
.station01-process-viz.is-invert .station01-process-node[data-channel="b"] { color: #60a5fa; background: #60a5fa; }
.station01-process-viz.is-invert .station01-process-node[data-channel="r2"] { color: #fbbf24; background: #fbbf24; }
.station01-process-viz.is-invert .station01-process-node[data-channel="g2"] { color: #c084fc; background: #c084fc; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node:nth-child(1) { top: 25%; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node:nth-child(2) { top: 42%; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node:nth-child(3) { top: 58%; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node:nth-child(4) { top: 34%; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node:nth-child(5) { top: 66%; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node[data-channel="gray"] { color: #0ea5e9; background: #0ea5e9; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node[data-channel="gray2"] { color: #a855f7; background: #a855f7; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node[data-channel="gray3"] { color: #f97316; background: #f97316; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node[data-channel="gray4"] { color: #facc15; background: #facc15; }
.station01-process-viz.is-invert .station01-process-field--output .station01-process-node[data-channel="gray5"] { color: #22d3ee; background: #22d3ee; }
.station01-process-viz.is-invert .station01-process-beam[data-beam="r"] { top: 28%; background: linear-gradient(90deg, #f87171, transparent); box-shadow: 0 0 10px #f87171; }
.station01-process-viz.is-invert .station01-process-beam[data-beam="g"] { top: 50%; background: linear-gradient(90deg, #4ade80, transparent); box-shadow: 0 0 10px #4ade80; }
.station01-process-viz.is-invert .station01-process-beam[data-beam="b"] { top: 72%; background: linear-gradient(90deg, #60a5fa, transparent); box-shadow: 0 0 10px #60a5fa; }
.station01-process-viz.is-invert .station01-process-core-shape {
    background: linear-gradient(135deg, #ffffff, #000000);
    animation: station01-core-flash 1.8s ease-in-out infinite;
}

/* 几何变换：网格旋转/镜像
   结构：2×2 像素网格进入，核心旋转方块，输出网格整体翻转/旋转 */
.station01-process-viz.is-geometry .station01-process-field--input .station01-process-node:nth-child(1) { top: 32%; left: 0; }
.station01-process-viz.is-geometry .station01-process-field--input .station01-process-node:nth-child(2) { top: 32%; left: 18px; }
.station01-process-viz.is-geometry .station01-process-field--input .station01-process-node:nth-child(3) { top: 62%; left: 0; }
.station01-process-viz.is-geometry .station01-process-field--input .station01-process-node:nth-child(4) { top: 62%; left: 18px; }
.station01-process-viz.is-geometry .station01-process-field--input .station01-process-node:nth-child(5) { top: 47%; left: 9px; }
.station01-process-viz.is-geometry .station01-process-field--output .station01-process-node:nth-child(1) { top: 22%; right: 18px; }
.station01-process-viz.is-geometry .station01-process-field--output .station01-process-node:nth-child(2) { top: 22%; right: 0; }
.station01-process-viz.is-geometry .station01-process-field--output .station01-process-node:nth-child(3) { top: 52%; right: 18px; }
.station01-process-viz.is-geometry .station01-process-field--output .station01-process-node:nth-child(4) { top: 52%; right: 0; }
.station01-process-viz.is-geometry .station01-process-field--output .station01-process-node:nth-child(5) { top: 72%; right: 9px; }
.station01-process-viz.is-geometry .station01-process-node { color: #60a5fa; background: rgba(96, 165, 250, 0.35); border: 1px solid rgba(96, 165, 250, 0.7); }
.station01-process-viz.is-geometry .station01-process-field--output .station01-process-node { color: #38bdf8; background: rgba(56, 189, 248, 0.35); border: 1px solid rgba(56, 189, 248, 0.7); }
.station01-process-viz.is-geometry .station01-process-beam[data-beam="r"],
.station01-process-viz.is-geometry .station01-process-beam[data-beam="b"] { opacity: 0; }
.station01-process-viz.is-geometry .station01-process-beam[data-beam="g"] {
    top: 50%;
    background: linear-gradient(90deg, #60a5fa 55%, transparent);
    box-shadow: 0 0 10px #60a5fa;
}
.station01-process-viz.is-geometry .station01-process-core-shape {
    background: transparent;
    border: 2px dashed rgba(37, 99, 235, 0.65);
    animation: station01-core-rotate 3s linear infinite, station01-core-breathe 2.2s ease-in-out infinite;
}

.station01-process-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    background: linear-gradient(90deg, #eff6ff, #e0f2fe);
    border: 1px solid rgba(191, 219, 254, 0.8);
}

.station01-process-caption span {
    color: #475569;
    font-size: 11px;
    font-weight: 750;
}

.station01-process-caption strong {
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 900;
}

@keyframes station01-node-pass {
    0% { opacity: 0; transform: translateX(-30px) scale(0.6); }
    20% { opacity: 1; transform: translateX(-5px) scale(1); }
    45% { opacity: 1; transform: translateX(0) scale(1); }
    55% { opacity: 0.6; transform: translateX(5px) scale(0.85); }
    100% { opacity: 0; transform: translateX(60px) scale(0.4); }
}

@keyframes station01-node-exit {
    0% { opacity: 0; transform: translateX(-10px) scale(0.6); }
    25% { opacity: 1; transform: translateX(5px) scale(1); }
    55% { opacity: 1; transform: translateX(10px) scale(1); }
    100% { opacity: 0; transform: translateX(40px) scale(0.6); }
}

@keyframes station01-core-breathe {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.12); opacity: 1; }
}

@keyframes station01-core-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes station01-core-ring {
    0% { transform: rotate(0deg) scale(1); opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { transform: rotate(360deg) scale(1.05); opacity: 0.8; }
}

@keyframes station01-core-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes station01-core-flip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes station01-core-split {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.3); }
    50% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(96, 165, 250, 0); }
}

@keyframes station01-core-flash {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(2.2); }
}

@keyframes station01-core-burst {
    0%, 100% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; }
}

@keyframes station01-core-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
}

@keyframes station01-threshold-sweep {
    0%, 100% { opacity: 0.3; transform: scaleX(0.6); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes station01-beam-stretch {
    0% { opacity: 0; transform: scaleX(0) translateX(-10px); }
    30% { opacity: 1; transform: scaleX(1) translateX(0); }
    70% { opacity: 0.8; transform: scaleX(0.85) translateX(5px); }
    100% { opacity: 0; transform: scaleX(0) translateX(20px); }
}

@keyframes station01-core-scan {
    0% { transform: rotate(25deg) translateY(-120%); }
    100% { transform: rotate(25deg) translateY(220%); }
}

@keyframes station01-dust-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-8px) translateX(4px); opacity: 0.7; }
    50% { transform: translateY(4px) translateX(-6px); opacity: 0.5; }
    75% { transform: translateY(-4px) translateX(8px); opacity: 0.8; }
}

/* 压缩右侧现有模块高度 */
.station01-pixel-card {
    margin-top: 10px;
}

.station01-probe-summary {
    margin-bottom: 8px;
    gap: 6px;
}

.station01-probe-summary div {
    padding: 8px;
    border-radius: 12px;
}

.station01-probe-summary strong {
    font-size: 12px;
}

.station01-channel-bars {
    gap: 6px;
}

.station01-channel-bar {
    min-height: 26px;
    padding: 6px 10px;
    border-radius: 10px;
}

.station01-channel-bar span,
.station01-channel-bar strong {
    font-size: 11px;
}

.station01-gray-calc {
    margin-top: 8px;
    padding: 8px;
    font-size: 11px;
}

.station01-summary-list > div {
    padding-bottom: 5px;
}

.station01-summary-list dt,
.station01-summary-list dd {
    font-size: 11px;
}

.station01-stepper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    min-height: 64px;
    padding: 10px;
    border: 1px solid rgba(219, 231, 248, 0.7);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--s01-shadow);
}

.station01-stepper div {
    min-width: 0;
    padding: 8px 12px;
    border-radius: 14px;
    color: var(--s01-muted);
    background: #f8fbff;
    transition: var(--s01-transition);
}

.station01-stepper strong,
.station01-stepper span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.station01-stepper strong {
    color: var(--s01-ink);
    font-size: 12.5px;
    font-weight: 900;
}

.station01-stepper span {
    margin-top: 4px;
    font-size: 10px;
}

.station01-stepper .is-active {
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--s01-blue);
    background: var(--s01-blue-soft);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.05);
}

.station01-stepper .is-active strong {
    color: var(--s01-blue);
}

.is-hidden {
    display: none !important;
}

/* 动效与帧动画补完 */
@keyframes station01-panel-loading {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

@keyframes station01-flow-dot {
    0% { left: 16px; opacity: 0.25; }
    18% { opacity: 1; }
    100% { left: calc(100% - 24px); opacity: 0.45; }
}

@keyframes station01-calc-pulse {
    0% { transform: scale(0.98); box-shadow: inset 0 0 0 0 rgba(37, 99, 235, 0); }
    55% { transform: scale(1.02); box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.18); }
    100% { transform: scale(1); box-shadow: inset 0 0 0 0 rgba(37, 99, 235, 0); }
}

@keyframes station01-arrows-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); text-shadow: 0 0 8px rgba(255, 255, 255, 0.6); }
    100% { transform: scale(1); }
}

@keyframes station01-border-sheen {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 1500px) {
    .station01-grid {
        grid-template-columns: 260px minmax(560px, 1fr) 260px;
    }

    .station01-preview-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .station01-compare {
        grid-template-rows: 44px minmax(260px, 38vh);
    }
}

@media (max-width: 1180px) {
    .station01-grid,
    .station01-stats-grid {
        grid-template-columns: 1fr;
    }

    .station01-preview-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .station01-hero {
        display: grid;
    }

    .station01-badge {
        justify-self: start;
    }

    .station01-status {
        grid-template-columns: 1fr;
    }

    .station01-status-actions {
        justify-content: stretch;
    }

    .station01-status-actions .station01-button {
        flex: 1;
    }

    .station01-samples,
    .station01-preview-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .station01-compare {
        grid-template-rows: 44px minmax(240px, 42vh);
    }

    .station01-history-head,
    .station01-history-row {
        grid-template-columns: 66px 1fr;
    }

    .station01-history-head span:nth-child(3),
    .station01-history-head span:nth-child(4),
    .station01-history-row span:nth-child(3),
    .station01-history-row span:nth-child(4) {
        grid-column: 1 / -1;
    }

    .station01-stepper {
        grid-template-columns: 1fr;
    }
}
