:root {
  color-scheme: dark;
  --bg: #100f0d;
  --panel: rgba(29, 27, 23, 0.9);
  --panel-light: #24211c;
  --line: rgba(255, 244, 222, 0.11);
  --line-strong: rgba(255, 184, 77, 0.35);
  --text: #f7f2e8;
  --muted: #a8a197;
  --dim: #777169;
  --amber: #f5a623;
  --amber-light: #ffc45d;
  --green: #62d19b;
  --red: #f37b72;
  --blue: #78a9ff;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  font-family: Inter, Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--bg); color: var(--text); line-height: 1.55; }
button, input { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
button:focus-visible, input:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--amber-light); outline-offset: 3px; }

.ambient { position: fixed; z-index: -1; width: 520px; height: 520px; border-radius: 50%; filter: blur(110px); opacity: .13; pointer-events: none; }
.ambient-one { top: -260px; right: -160px; background: #f5a623; }
.ambient-two { bottom: -360px; left: -240px; background: #9e6128; }
.page-shell { min-height: 100vh; }

.center-card { min-height: 100vh; display: grid; place-content: center; justify-items: center; gap: 16px; color: var(--muted); }
.spinner { display: inline-block; width: 23px; height: 23px; border: 2px solid rgba(255,255,255,.13); border-top-color: var(--amber); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.eyebrow { margin: 0 0 9px; color: var(--amber); font-size: .72rem; font-weight: 750; letter-spacing: .16em; }
.brand-mark { display: inline-flex; align-items: center; gap: 3px; height: 29px; }
.brand-mark i { display: block; width: 3px; border-radius: 3px; background: var(--amber); }
.brand-mark i:nth-child(1), .brand-mark i:nth-child(5) { height: 10px; }
.brand-mark i:nth-child(2), .brand-mark i:nth-child(4) { height: 20px; }
.brand-mark i:nth-child(3) { height: 29px; }
.brand-mark.large { height: 48px; gap: 5px; margin-bottom: 28px; }
.brand-mark.large i { width: 5px; }
.brand-mark.large i:nth-child(1), .brand-mark.large i:nth-child(5) { height: 18px; }
.brand-mark.large i:nth-child(2), .brand-mark.large i:nth-child(4) { height: 33px; }
.brand-mark.large i:nth-child(3) { height: 48px; }

.login-layout { width: min(1120px, calc(100% - 40px)); min-height: 100vh; margin: auto; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 10vw; padding: 72px 0; }
.login-intro h1 { margin: 0; font-size: clamp(3.2rem, 7vw, 6.4rem); line-height: .98; letter-spacing: -.065em; }
.login-intro h1 span, .hero-panel h1 span { color: var(--amber-light); }
.login-copy { max-width: 570px; margin: 28px 0; color: var(--muted); font-size: 1.08rem; }
.login-features { display: flex; flex-wrap: wrap; gap: 9px; }
.login-features span { padding: 7px 12px; border: 1px solid var(--line); border-radius: 100px; color: #c9c2b8; font-size: .78rem; }
.login-card { display: grid; gap: 16px; padding: 38px; background: rgba(32,29,25,.85); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.login-card h2 { margin: 0; font-size: 1.65rem; letter-spacing: -.03em; }
.login-card div > p:not(.eyebrow) { margin: 8px 0 8px; color: var(--muted); font-size: .9rem; }
.login-card label { margin-top: 8px; color: #d3cdc3; font-size: .8rem; font-weight: 650; }
.password-field { position: relative; }
.password-field input { width: 100%; height: 52px; padding: 0 48px 0 15px; border: 1px solid var(--line); border-radius: 12px; background: #141310; color: var(--text); transition: border-color .2s, box-shadow .2s; }
.password-field input:focus { border-color: var(--line-strong); box-shadow: 0 0 0 4px rgba(245,166,35,.09); }
.icon-button { display: grid; place-items: center; padding: 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; border-radius: 8px; }
.icon-button:hover { color: var(--text); background: rgba(255,255,255,.05); }
.icon-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.password-field .icon-button { position: absolute; top: 8px; right: 8px; width: 36px; height: 36px; }
.primary-button { min-height: 51px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; border: 1px solid #ffc45d; border-radius: 12px; background: linear-gradient(135deg, #ffc45d, #e99112); color: #1b1408; font-weight: 800; cursor: pointer; box-shadow: 0 12px 28px rgba(245,166,35,.15); transition: transform .2s, filter .2s, opacity .2s; }
.primary-button:hover:not(:disabled) { transform: translateY(-1px); filter: brightness(1.06); }
.primary-button:disabled { opacity: .38; cursor: not-allowed; box-shadow: none; }
.primary-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.privacy-note { margin: 2px 0 0; color: var(--dim); font-size: .74rem; text-align: center; }
.privacy-note span { color: var(--green); font-size: .6rem; }
.form-error { margin: 0; padding: 10px 12px; border: 1px solid rgba(243,123,114,.3); border-radius: 10px; background: rgba(243,123,114,.08); color: #ffaaa3; font-size: .82rem; }

.app-header { position: sticky; top: 0; z-index: 10; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 max(24px, calc((100vw - 1180px) / 2)); border-bottom: 1px solid var(--line); background: rgba(16,15,13,.84); backdrop-filter: blur(20px); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { font-size: .93rem; letter-spacing: -.01em; }
.brand small { margin-top: 5px; color: var(--dim); font-size: .54rem; letter-spacing: .17em; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.worker-pill { display: flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .73rem; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--dim); box-shadow: 0 0 0 3px rgba(255,255,255,.04); }
.worker-pill.online .status-dot { background: var(--green); box-shadow: 0 0 0 3px rgba(98,209,155,.11); }
.worker-pill.offline .status-dot { background: var(--red); }
.text-button { padding: 7px 2px; border: 0; background: transparent; color: var(--muted); font-size: .75rem; cursor: pointer; }
.text-button:hover { color: var(--text); }

.app-content { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 74px 0 96px; }
.hero-panel { min-height: 280px; display: grid; grid-template-columns: 1fr .72fr; align-items: center; overflow: hidden; padding: 48px 54px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(125deg, rgba(37,33,27,.95), rgba(21,20,17,.85)); box-shadow: var(--shadow); }
.hero-panel h1 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.3rem); line-height: 1.05; letter-spacing: -.055em; }
.hero-panel p:last-child { max-width: 600px; margin: 21px 0 0; color: var(--muted); font-size: .96rem; }
.signal-art { height: 148px; display: flex; align-items: center; justify-content: flex-end; gap: clamp(5px, .7vw, 10px); padding-left: 40px; opacity: .75; -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%); mask-image: linear-gradient(90deg, transparent, #000 25%); }
.signal-art span { width: 6px; height: var(--h); border-radius: 8px; background: linear-gradient(to top, rgba(245,166,35,.15), var(--amber-light)); box-shadow: 0 0 16px rgba(245,166,35,.2); }

.workspace-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .75fr); gap: 20px; margin-top: 20px; align-items: start; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: 0 18px 50px rgba(0,0,0,.17); }
.upload-card { padding: 30px; }
.system-card { padding: 28px; }
.section-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 23px; }
.section-heading.compact { margin-bottom: 25px; }
.step-number { display: grid; place-items: center; min-width: 39px; height: 39px; border: 1px solid var(--line-strong); border-radius: 11px; color: var(--amber-light); font: 700 .67rem/1 monospace; letter-spacing: .05em; }
.section-heading h2 { margin: 0; font-size: 1.17rem; letter-spacing: -.02em; }
.section-heading p { margin: 2px 0 0; color: var(--muted); font-size: .77rem; }
.mode-picker { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0 0 18px; padding: 0; border: 0; }
.mode-picker legend { grid-column: 1 / -1; margin-bottom: 9px; color: #d3cdc3; font-size: .76rem; font-weight: 700; }
.mode-option { min-width: 0; cursor: pointer; }
.mode-option input { position: absolute; opacity: 0; pointer-events: none; }
.mode-card { min-height: 112px; display: flex; flex-direction: column; gap: 7px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(0,0,0,.12); transition: border-color .2s, background .2s, transform .2s; }
.mode-option:hover .mode-card { border-color: var(--line-strong); transform: translateY(-1px); }
.mode-option input:checked + .mode-card { border-color: var(--amber); background: rgba(245,166,35,.075); box-shadow: inset 0 0 0 1px rgba(245,166,35,.12); }
.mode-option input:focus-visible + .mode-card { outline: 2px solid var(--amber-light); outline-offset: 3px; }
.mode-heading { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mode-heading strong { font-size: .82rem; }
.mode-heading em { padding: 3px 6px; border-radius: 999px; background: rgba(255,255,255,.055); color: var(--muted); font-size: .57rem; font-style: normal; font-weight: 700; }
.mode-option input:checked + .mode-card .mode-heading em { background: rgba(245,166,35,.14); color: var(--amber-light); }
.mode-card small { color: var(--dim); font-size: .66rem; line-height: 1.5; }
.drop-zone { display: grid; justify-items: center; padding: 35px 20px; border: 1px dashed rgba(255,196,93,.33); border-radius: 16px; background: rgba(245,166,35,.025); text-align: center; cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.drop-zone:hover, .drop-zone.dragging { border-color: var(--amber); background: rgba(245,166,35,.065); }
.drop-zone.dragging { transform: scale(.995); }
.upload-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 14px; border: 1px solid var(--line-strong); border-radius: 14px; color: var(--amber-light); background: rgba(245,166,35,.07); }
.upload-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.drop-title { margin: 0; color: var(--text); font-weight: 700; }
.drop-subtitle { margin: 2px 0 9px; color: var(--muted); font-size: .8rem; }
.drop-zone > span { color: var(--dim); font-size: .68rem; }
.selected-file { min-height: 78px; display: flex; align-items: center; gap: 14px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(245,166,35,.05); }
.selected-file > div:nth-child(2) { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.selected-file strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .86rem; }
.selected-file span { color: var(--muted); font-size: .72rem; }
.file-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: rgba(245,166,35,.11); color: var(--amber-light); }
.file-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.selected-file .icon-button { width: 34px; height: 34px; }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 18px 1px; color: #cbc4ba; cursor: pointer; }
.consent-row input { position: absolute; opacity: 0; pointer-events: none; }
.custom-checkbox { width: 19px; height: 19px; display: grid; place-items: center; margin-top: 2px; border: 1px solid #5b554c; border-radius: 5px; background: #141310; transition: .2s; }
.custom-checkbox svg { width: 13px; height: 13px; fill: none; stroke: #1b1408; stroke-width: 2.2; opacity: 0; }
.consent-row input:checked + .custom-checkbox { border-color: var(--amber); background: var(--amber); }
.consent-row input:checked + .custom-checkbox svg { opacity: 1; }
.consent-row input:focus-visible + .custom-checkbox { outline: 2px solid var(--amber-light); outline-offset: 3px; }
.consent-row > span:last-child { display: flex; flex-direction: column; }
.consent-row strong { font-size: .76rem; }
.consent-row small { margin-top: 3px; color: var(--dim); font-size: .68rem; line-height: 1.45; }
.upload-button { width: 100%; }
.quality-note { margin: 13px 3px 0; color: var(--dim); font-size: .67rem; line-height: 1.55; }

.worker-list { display: grid; gap: 10px; }
.worker-row { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: rgba(0,0,0,.12); }
.worker-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.035); color: var(--muted); }
.worker-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.worker-row > span:nth-child(2) { display: flex; flex-direction: column; }
.worker-row strong { font-size: .78rem; }
.worker-row small { color: var(--dim); font-size: .63rem; }
.worker-state { position: relative; padding-left: 11px; color: var(--muted); font-size: .66rem; }
.worker-state::before { content: ""; position: absolute; top: 50%; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--dim); transform: translateY(-50%); }
.worker-row.online { border-color: rgba(98,209,155,.19); }
.worker-row.online .worker-icon { color: var(--green); background: rgba(98,209,155,.07); }
.worker-row.online .worker-state { color: var(--green); }
.worker-row.online .worker-state::before { background: var(--green); }
.worker-row.offline { opacity: .6; }
.worker-row.offline .worker-state::before { background: var(--red); }
.route-note { display: flex; gap: 10px; margin-top: 18px; padding: 14px; border-radius: 12px; background: rgba(245,166,35,.055); color: var(--amber-light); }
.route-note svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 1px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.route-note p { display: flex; flex-direction: column; margin: 0; }
.route-note strong { font-size: .72rem; }
.route-note span { margin-top: 2px; color: var(--muted); font-size: .64rem; }

.jobs-section { margin-top: 68px; }
.jobs-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; }
.jobs-heading h2 { margin: 0; font-size: 1.75rem; letter-spacing: -.04em; }
.refresh-button { display: flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--muted); font-size: .7rem; cursor: pointer; }
.refresh-button:hover { border-color: var(--line-strong); color: var(--text); }
.refresh-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.refresh-button.loading svg { animation: spin .8s linear infinite; }
.jobs-loading { min-height: 150px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: .8rem; }
.jobs-loading .spinner { width: 17px; height: 17px; }
.empty-state { padding: 60px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(29,27,23,.55); text-align: center; }
.empty-state h3 { margin: 15px 0 4px; font-size: .96rem; }
.empty-state p { margin: 0; color: var(--dim); font-size: .76rem; }
.empty-wave { height: 33px; display: inline-flex; align-items: center; gap: 4px; }
.empty-wave i { width: 3px; border-radius: 3px; background: #554b3d; }
.empty-wave i:nth-child(1), .empty-wave i:nth-child(5) { height: 12px; }
.empty-wave i:nth-child(2), .empty-wave i:nth-child(4) { height: 23px; }
.empty-wave i:nth-child(3) { height: 33px; }
.jobs-list { display: grid; gap: 12px; }
.job-card { padding: 22px 24px; border: 1px solid var(--line); border-radius: 17px; background: var(--panel); transition: border-color .2s; }
.job-card[data-status="running"] { border-color: rgba(245,166,35,.24); }
.job-card[data-status="failed"] { border-color: rgba(243,123,114,.24); }
.job-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.job-title-wrap { min-width: 0; display: flex; align-items: center; gap: 13px; }
.job-title-wrap > div { min-width: 0; }
.job-art { flex: 0 0 45px; height: 45px; display: flex; align-items: center; justify-content: center; gap: 3px; border-radius: 12px; background: rgba(255,255,255,.035); }
.job-art i { width: 3px; border-radius: 3px; background: var(--amber); }
.job-art i:nth-child(1) { height: 12px; }.job-art i:nth-child(2) { height: 25px; }.job-art i:nth-child(3) { height: 18px; }.job-art i:nth-child(4) { height: 30px; }
.job-title { overflow: hidden; margin: 0; text-overflow: ellipsis; white-space: nowrap; font-size: .9rem; }
.job-meta { margin: 4px 0 0; color: var(--dim); font-size: .66rem; }
.job-actions { display: flex; align-items: center; gap: 8px; }
.job-status { padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.05); color: var(--muted); font-size: .63rem; font-weight: 700; }
.job-card[data-status="running"] .job-status { background: rgba(245,166,35,.1); color: var(--amber-light); }
.job-card[data-status="completed"] .job-status { background: rgba(98,209,155,.09); color: var(--green); }
.job-card[data-status="failed"] .job-status { background: rgba(243,123,114,.09); color: var(--red); }
.delete-job { width: 30px; height: 30px; }
.delete-job[hidden] { display: none; }
.job-progress-wrap { margin-top: 17px; }
.progress-info { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 7px; color: var(--muted); font-size: .68rem; }
.progress-track { height: 4px; overflow: hidden; border-radius: 4px; background: rgba(255,255,255,.065); }
.job-progress { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #d98710, var(--amber-light)); transition: width .5s ease; }
.job-card[data-status="running"] .job-progress::after { content: ""; display: block; width: 45%; height: 100%; background: rgba(255,255,255,.38); animation: progress-sheen 1.5s ease-in-out infinite; }
@keyframes progress-sheen { from { transform: translateX(-110%); } to { transform: translateX(240%); } }
.job-card[data-status="completed"] .job-progress { background: var(--green); }
.job-card[data-status="failed"] .job-progress { background: var(--red); }
.job-error { margin: 14px 0 0; padding: 9px 11px; border-radius: 9px; background: rgba(243,123,114,.07); color: #f6a49d; font-size: .7rem; }
.job-files { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 9px; margin-top: 18px; }
.file-result { min-width: 0; display: flex; align-items: center; gap: 10px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 11px; background: rgba(0,0,0,.12); color: var(--text); text-decoration: none; }
.file-result:hover { border-color: var(--line-strong); background: rgba(245,166,35,.035); }
.file-result svg { flex: 0 0 18px; width: 18px; height: 18px; fill: none; stroke: var(--amber-light); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.file-result > span { min-width: 0; display: flex; flex-direction: column; }
.file-result strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .69rem; }
.file-result small { color: var(--dim); font-size: .58rem; text-transform: uppercase; }
.file-result .download-icon { margin-left: auto; color: var(--muted); }
.audio-result { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.14); }
.audio-result > div { min-width: 0; display: flex; flex-direction: column; }
.audio-result strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 7px; font-size: .7rem; }
.audio-result audio { width: 100%; height: 34px; color-scheme: dark; }
.audio-result > a { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: var(--amber-light); }
.audio-result > a:hover { border-color: var(--line-strong); }
.audio-result svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.jobs-error { margin-top: 14px; }

footer { min-height: 92px; display: flex; align-items: center; justify-content: center; gap: 14px; border-top: 1px solid var(--line); color: var(--dim); font-size: .67rem; }
footer span { color: #aaa399; font-weight: 700; }
footer p { margin: 0; }

@media (max-width: 850px) {
  .login-layout { grid-template-columns: 1fr; gap: 55px; padding: 60px 0; }
  .login-intro { text-align: center; }
  .login-copy { margin-inline: auto; }
  .login-features { justify-content: center; }
  .hero-panel { grid-template-columns: 1fr; }
  .signal-art { display: none; }
  .workspace-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .login-layout, .app-content { width: min(100% - 28px, 1180px); }
  .login-card { padding: 26px 21px; border-radius: 21px; }
  .login-intro h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .app-header { min-height: 64px; padding: 0 15px; }
  .brand small, .worker-pill { display: none; }
  .header-actions { gap: 10px; }
  .app-content { padding-top: 35px; }
  .hero-panel { min-height: 0; padding: 35px 25px; border-radius: 21px; }
  .hero-panel h1 { font-size: 2.45rem; }
  .upload-card, .system-card { padding: 22px 18px; }
  .mode-picker { grid-template-columns: 1fr; }
  .mode-card { min-height: 0; }
  .drop-zone { padding: 30px 15px; }
  .jobs-section { margin-top: 50px; }
  .job-card { padding: 17px 16px; }
  .job-topline { align-items: flex-start; }
  .job-art { display: none; }
  .job-status { white-space: nowrap; }
  .job-files { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.signal-art span:nth-child(3n) { --h: 85%; }
.signal-art span:nth-child(3n + 1) { --h: 42%; }
.signal-art span:nth-child(3n + 2) { --h: 64%; }

.job-card[data-status="running"] .job-progress { width: 40%; }
.job-card[data-status="completed"] .job-progress, .job-card[data-status="failed"] .job-progress { width: 100%; }
