:root {
  color-scheme: dark;
  --bg: #090b10;
  --surface: #10131a;
  --surface-raised: #151922;
  --surface-hover: #1a1f2a;
  --surface-black: #080a0e;
  --border: rgba(255, 255, 255, .075);
  --border-strong: rgba(255, 255, 255, .13);
  --text: #f4f5f7;
  --text-soft: #c3c8d4;
  --muted: #838b9f;
  --faint: #586073;
  --accent: #6c7cff;
  --accent-hover: #8090ff;
  --accent-soft: rgba(108, 124, 255, .13);
  --success: #42d392;
  --warning: #f7b955;
  --danger: #ff6b7a;
  --sidebar: 224px;
  --radius: 10px;
  --shadow: 0 18px 55px rgba(0, 0, 0, .3);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--bg); color: var(--text); }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 9px 12px; border-radius: 8px; background: var(--text); color: var(--bg); transform: translateY(-150%); transition: transform .16s ease; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 8px; color: var(--accent-hover); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.muted { color: var(--muted); }

.auth-view { min-height: 100vh; display: grid; grid-template-columns: minmax(420px, 1.1fr) minmax(420px, .9fr); background: radial-gradient(circle at 13% 8%, rgba(108, 124, 255, .12), transparent 30%), var(--bg); }
.auth-visual { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 8vw, 120px); overflow: hidden; border-right: 1px solid var(--border); }
.auth-visual::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom right, black, transparent 72%); pointer-events: none; }
.auth-visual::after { content: ""; position: absolute; width: 480px; height: 480px; left: -170px; bottom: -230px; border: 1px solid rgba(108, 124, 255, .25); border-radius: 50%; box-shadow: 0 0 100px rgba(108, 124, 255, .08); }
.auth-visual > * { position: relative; z-index: 1; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 46px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 11px; background: linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .04)); box-shadow: inset 0 1px rgba(255, 255, 255, .13), 0 14px 32px rgba(0, 0, 0, .23); font-size: 13px; font-weight: 800; letter-spacing: -.02em; }
.auth-visual h1 { max-width: 680px; margin: 0; font-size: clamp(42px, 5.2vw, 74px); line-height: 1.03; letter-spacing: -.055em; }
.auth-visual h1 span { color: #7c8497; }
.auth-copy { max-width: 520px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.auth-signal { display: flex; align-items: center; gap: 9px; margin-top: 46px; color: var(--text-soft); font-size: 12px; }
.signal-dot, .status-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--faint); }
.signal-dot { background: var(--success); box-shadow: 0 0 0 4px rgba(66, 211, 146, .1); }
.auth-card-wrap { display: grid; place-items: center; padding: 48px; }
.auth-card { width: min(100%, 400px); padding: 34px; border: 1px solid var(--border); border-radius: 14px; background: rgba(17, 20, 28, .86); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.auth-card-head { margin-bottom: 28px; }
.auth-card-head h2 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.03em; }
.auth-card-head > p:last-child { margin: 0; color: var(--muted); font-size: 14px; }

.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field > span:first-child { color: var(--text-soft); font-size: 12px; font-weight: 600; }
.field input, .field select { width: 100%; height: 42px; padding: 0 12px; border: 1px solid var(--border-strong); border-radius: 8px; background: #0d1016; color: var(--text); outline: none; transition: border-color .14s ease, box-shadow .14s ease, background .14s ease; }
.field input::placeholder { color: var(--faint); }
.field input:hover, .field select:hover { background: #10141b; }
.field input:focus, .field select:focus { border-color: rgba(108, 124, 255, .7); box-shadow: 0 0 0 3px rgba(108, 124, 255, .12); }
.password-field { position: relative; display: block; }
.password-field input { padding-right: 43px; }
.password-field .icon-button { position: absolute; right: 5px; top: 5px; }
.form-error { min-height: 18px; margin: 12px 0 0; color: #ff8d99; font-size: 12px; line-height: 1.45; }

.button { height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 14px; border: 1px solid var(--border-strong); border-radius: 8px; color: var(--text); cursor: pointer; transition: background .14s ease, border-color .14s ease, transform .14s ease, opacity .14s ease; }
.button:hover:not(:disabled) { transform: translateY(-1px); }
.button:disabled { opacity: .45; cursor: not-allowed; }
.button-primary { border-color: transparent; background: var(--accent); box-shadow: 0 8px 25px rgba(108, 124, 255, .2); }
.button-primary:hover:not(:disabled) { background: var(--accent-hover); }
.button-secondary { background: rgba(255, 255, 255, .035); }
.button-secondary:hover:not(:disabled) { border-color: var(--border-strong); background: rgba(255, 255, 255, .07); }
.button-wide { width: 100%; height: 43px; }
.button-plus { font-size: 18px; line-height: 0; }
.button-spinner { display: none; width: 13px; height: 13px; border: 2px solid rgba(255, 255, 255, .4); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
.button:disabled .button-spinner { display: block; }
.icon-button { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid transparent; border-radius: 7px; background: transparent; color: var(--muted); cursor: pointer; }
.icon-button:hover { border-color: var(--border); background: rgba(255, 255, 255, .05); color: var(--text); }
@keyframes spin { to { transform: rotate(360deg); } }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: var(--sidebar) minmax(0, 1fr); }
.sidebar { position: sticky; z-index: 20; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 18px 12px 12px; border-right: 1px solid var(--border); background: #0c0f15; }
.sidebar-brand { height: 46px; display: flex; align-items: center; gap: 11px; padding: 0 8px; }
.brand-mark-small { width: 31px; height: 31px; margin: 0; border-radius: 8px; font-size: 10px; }
.sidebar-brand div:last-child { display: grid; gap: 2px; min-width: 0; }
.sidebar-brand strong { font-size: 13px; letter-spacing: -.01em; }
.sidebar-brand span { color: var(--faint); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.sidebar-nav { flex: 1; margin-top: 28px; }
.nav-label { margin: 0 9px 8px; color: #50586a; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nav-label-spaced { margin-top: 25px; }
.nav-item { height: 37px; display: flex; align-items: center; gap: 10px; margin: 2px 0; padding: 0 10px; border-radius: 7px; color: var(--muted); font-size: 13px; transition: color .13s ease, background .13s ease; }
.nav-item:hover { color: var(--text-soft); background: rgba(255, 255, 255, .035); }
.nav-item.active { color: var(--text); background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(108, 124, 255, .08); }
.nav-icon { width: 17px; display: inline-grid; place-items: center; color: currentColor; font-size: 15px; }
.sidebar-footer { display: grid; gap: 10px; }
.side-service { display: flex; align-items: center; gap: 8px; padding: 0 8px; color: var(--text-soft); font-size: 10px; }
.side-service .muted { margin-left: auto; font-size: 9px; }
.status-dot-success { background: var(--success) !important; box-shadow: 0 0 0 3px rgba(66, 211, 146, .09); }
.status-dot-danger { background: var(--danger) !important; box-shadow: 0 0 0 3px rgba(255, 107, 122, .09); }
.side-user { display: flex; align-items: center; gap: 9px; padding: 10px 8px 3px; border-top: 1px solid var(--border); }
.avatar { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(108, 124, 255, .24); border-radius: 8px; background: var(--accent-soft); color: #aab3ff; font-size: 11px; font-weight: 700; }
.side-user > div { min-width: 0; display: grid; gap: 2px; }
.side-user strong { max-width: 105px; overflow: hidden; color: var(--text-soft); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.side-user span { color: var(--faint); font-size: 9px; }
.side-logout { margin-left: auto; }

.app-main { min-width: 0; }
.topbar { position: sticky; z-index: 15; top: 0; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; border-bottom: 1px solid var(--border); background: rgba(9, 11, 16, .84); backdrop-filter: blur(15px); }
.topbar-title { display: flex; align-items: center; gap: 10px; }
.breadcrumb { margin: 0 0 3px; color: var(--faint); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb span { color: var(--muted); }
.topbar h1 { margin: 0; font-size: 16px; letter-spacing: -.02em; }
.topbar-actions { display: flex; align-items: center; gap: 18px; }
.topbar-status { display: flex; align-items: center; gap: 7px; color: var(--text-soft); font-size: 10px; }
.topbar-status .muted { margin-left: 5px; padding-left: 12px; border-left: 1px solid var(--border); }
.mobile-brand { display: none; }

.main-content { width: min(100%, 1580px); margin: 0 auto; padding: 30px 28px 52px; }
.page-section { scroll-margin-top: 92px; }
.navigation-focus { border-radius: 12px; box-shadow: 0 0 0 1px rgba(108, 124, 255, .48), 0 0 22px rgba(108, 124, 255, .09); animation: navigation-focus .3s ease; }
@keyframes navigation-focus {
  from { box-shadow: 0 0 0 0 rgba(108, 124, 255, 0); }
  to { box-shadow: 0 0 0 1px rgba(108, 124, 255, .48), 0 0 22px rgba(108, 124, 255, .09); }
}
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.section-heading h2, .panel-heading h2 { margin: 0; font-size: 17px; letter-spacing: -.025em; }
.section-subtitle, .panel-subtitle { margin: 5px 0 0; color: var(--muted); font-size: 11px; }

.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.metric-card { min-height: 122px; display: flex; flex-direction: column; padding: 17px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(155deg, rgba(255, 255, 255, .025), transparent 75%), var(--surface); transition: border-color .16s ease, transform .16s ease; }
.metric-card:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.metric-top { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.metric-icon { width: 23px; height: 23px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 6px; background: rgba(255, 255, 255, .035); font-size: 11px; }
.metric-caption { font-size: 10px; font-weight: 600; }
.metric-card strong { margin: 17px 0 3px; font-size: 26px; line-height: 1; letter-spacing: -.04em; }
.metric-detail { color: var(--faint); font-size: 9px; }
.metric-card-running .metric-icon { color: #aab3ff; background: var(--accent-soft); }
.metric-card-success .metric-icon { color: var(--success); background: rgba(66, 211, 146, .08); }
.metric-card-danger .metric-icon { color: var(--danger); background: rgba(255, 107, 122, .08); }

.workspace-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr); gap: 12px; margin-top: 26px; }
.panel { min-width: 0; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.panel-heading { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.count-badge { display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255, 255, 255, .025); color: var(--muted); font-size: 9px; }
.table-wrap { width: 100%; overflow: auto; }
table { width: 100%; border-collapse: collapse; font-size: 11px; }
th { height: 38px; padding: 0 12px; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, .012); color: var(--faint); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-align: left; text-transform: uppercase; white-space: nowrap; }
td { height: 47px; padding: 0 12px; border-bottom: 1px solid rgba(255, 255, 255, .045); color: var(--text-soft); white-space: nowrap; }
tbody tr { transition: background .12s ease; }
tbody tr:hover, tbody tr.is-selected { background: rgba(108, 124, 255, .04); }
tbody tr:last-child td { border-bottom: 0; }
.table-state td { height: 150px; color: var(--muted); text-align: center; }
.task-id { max-width: 136px; padding: 0; border: 0; overflow: hidden; background: transparent; color: #aab3ff; font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; text-align: left; text-overflow: ellipsis; cursor: pointer; }
.status-badge { display: inline-flex; align-items: center; gap: 6px; height: 23px; padding: 0 8px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255, 255, 255, .03); font-size: 9px; }
.status-running { color: #aab3ff; background: var(--accent-soft); border-color: rgba(108, 124, 255, .15); }
.status-running .status-dot { background: var(--accent); animation: pulse 1.6s ease infinite; }
.status-queued { color: var(--text-soft); }
.status-queued .status-dot { background: var(--warning); }
.status-succeeded { color: #86e7b8; background: rgba(66, 211, 146, .07); border-color: rgba(66, 211, 146, .13); }
.status-succeeded .status-dot { background: var(--success); }
.status-failed { color: #ff9aa5; background: rgba(255, 107, 122, .07); border-color: rgba(255, 107, 122, .13); }
.status-failed .status-dot, .status-cancelled .status-dot { background: var(--danger); }
@keyframes pulse { 50% { opacity: .35; } }
.table-actions-col { text-align: right; }
.table-actions { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.row-action { min-height: 25px; display: inline-flex; align-items: center; padding: 0 8px; border: 1px solid var(--border); border-radius: 6px; background: rgba(255, 255, 255, .025); color: var(--text-soft); font-size: 9px; cursor: pointer; }
.row-action:hover { border-color: var(--border-strong); background: rgba(255, 255, 255, .06); }
.row-action-danger { color: #ff98a3; }

.log-panel-card { display: flex; min-height: 430px; flex-direction: column; }
.live-label { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 9px; white-space: nowrap; }
.log-toolbar { min-height: 37px; display: flex; align-items: center; justify-content: flex-end; gap: 4px; padding: 5px 9px; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, .012); }
.log-offset { margin-right: auto; padding-left: 3px; color: var(--faint); font-family: "SFMono-Regular", Consolas, monospace; font-size: 8px; }
.toolbar-control { height: 25px; padding: 0 7px; border: 1px solid transparent; border-radius: 5px; background: transparent; color: var(--muted); font-size: 8px; cursor: pointer; }
.toolbar-control:hover, .toolbar-control.is-active { border-color: var(--border); background: rgba(255, 255, 255, .04); color: var(--text-soft); }
#log-panel { flex: 1; min-height: 325px; max-height: 520px; margin: 0; padding: 15px; overflow: auto; background: var(--surface-black); color: #b6bdca; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 10px; line-height: 1.65; white-space: pre-wrap; word-break: break-word; scrollbar-color: #2a3040 transparent; }
.log-placeholder { color: var(--faint); }

.file-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr); gap: 12px; margin-top: 12px; }
.upload-panel form { padding: 15px; }
.file-dropzone { min-height: 126px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 1px dashed var(--border-strong); border-radius: 8px; background: rgba(255, 255, 255, .015); color: var(--muted); cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.file-dropzone:hover, .file-dropzone.is-dragging, .file-dropzone:focus-within { border-color: rgba(108, 124, 255, .55); background: var(--accent-soft); }
.file-dropzone strong { color: var(--text-soft); font-size: 11px; }
.file-dropzone > span:last-of-type { color: var(--faint); font-size: 9px; }
.upload-icon { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 7px; background: var(--surface-raised); color: #aab3ff; }
.file-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.upload-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 11px; }
.upload-actions .muted { max-width: 60%; overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.artifact-list { min-height: 200px; margin: 0; padding: 0; list-style: none; }
.artifact-item { min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 14px; border-bottom: 1px solid rgba(255, 255, 255, .045); }
.artifact-info { min-width: 0; display: grid; gap: 3px; }
.artifact-info strong { overflow: hidden; color: var(--text-soft); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.artifact-info span { color: var(--faint); font-size: 8px; }
.empty-state { min-height: 200px; display: grid; place-items: center; color: var(--faint); font-size: 10px; }

.modal { width: min(440px, calc(100vw - 32px)); padding: 0; border: 1px solid var(--border-strong); border-radius: 12px; background: var(--surface-raised); color: var(--text); box-shadow: var(--shadow); }
.modal::backdrop { background: rgba(3, 4, 7, .74); backdrop-filter: blur(4px); }
.modal-card { padding: 20px; }
.modal-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.modal-heading h2 { margin: 0; font-size: 19px; letter-spacing: -.03em; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 24px; }
.drawer { position: fixed; z-index: 60; inset: 0; display: flex; justify-content: flex-end; background: rgba(3, 4, 7, 0); visibility: hidden; transition: background .18s ease, visibility .18s ease; }
.drawer.is-open { background: rgba(3, 4, 7, .68); visibility: visible; }
.drawer-card { width: min(390px, 100vw); height: 100%; padding: 24px; border-left: 1px solid var(--border-strong); background: var(--surface); box-shadow: -25px 0 65px rgba(0, 0, 0, .3); transform: translateX(100%); transition: transform .18s ease; }
.drawer.is-open .drawer-card { transform: translateX(0); }
.drawer-note { margin-top: 6px; padding: 12px; border: 1px solid var(--border); border-radius: 8px; background: rgba(255, 255, 255, .025); color: var(--muted); font-size: 10px; line-height: 1.55; }
.toast-region { position: fixed; z-index: 100; right: 18px; bottom: 18px; display: grid; gap: 8px; }
.toast { min-width: 240px; max-width: 360px; padding: 11px 13px; border: 1px solid var(--border-strong); border-radius: 8px; background: #181c25; box-shadow: var(--shadow); color: var(--text-soft); font-size: 11px; animation: toast-in .18s ease both; }
.toast-success { border-left: 2px solid var(--success); }
.toast-error { border-left: 2px solid var(--danger); }
@keyframes toast-in { from { opacity: 0; transform: translateY(6px); } }

@media (max-width: 1179px) {
  :root { --sidebar: 74px; }
  .sidebar { padding-inline: 10px; }
  .sidebar-brand { justify-content: center; padding: 0; }
  .sidebar-brand > div:last-child, .nav-label, .nav-item:not(.active)::after, .side-service span:not(.status-dot), .side-user > div, .side-logout { display: none; }
  .nav-item { justify-content: center; padding: 0; font-size: 0; }
  .nav-icon { font-size: 15px; }
  .side-service, .side-user { justify-content: center; padding-inline: 0; }
  .workspace-grid, .file-grid { grid-template-columns: 1fr; }
  .log-panel-card { min-height: 400px; }
}

@media (max-width: 767px) {
  :root { --sidebar: 0px; }
  .app-shell { display: block; padding-bottom: 58px; }
  .sidebar { position: fixed; z-index: 40; inset: auto 0 0; width: 100%; height: 58px; display: block; padding: 6px 10px; border: 0; border-top: 1px solid var(--border); background: rgba(12, 15, 21, .96); backdrop-filter: blur(14px); }
  .sidebar-brand, .sidebar-footer, .nav-label { display: none; }
  .sidebar-nav { height: 100%; display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; }
  .nav-item { height: 46px; margin: 0; border-radius: 7px; }
  .nav-icon { font-size: 16px; }
  .topbar { height: 62px; padding: 0 16px; }
  .mobile-brand { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 7px; font-size: 9px; font-weight: 800; }
  .topbar-status, .breadcrumb { display: none; }
  .topbar h1 { font-size: 14px; }
  .topbar-actions { gap: 8px; }
  .topbar-actions .button { height: 34px; padding-inline: 11px; font-size: 10px; }
  .main-content { padding: 22px 14px 34px; }
  .section-heading { align-items: center; }
  .section-heading .button { font-size: 0; width: 34px; padding: 0; }
  .section-heading .button::first-letter { font-size: 14px; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-card { min-height: 108px; padding: 14px; }
  .metric-card strong { margin-top: 13px; font-size: 23px; }
  .workspace-grid { margin-top: 18px; }
  .panel-heading { min-height: 58px; padding: 12px 13px; }
  .table-wrap { max-width: calc(100vw - 30px); }
  table { min-width: 760px; }
  .log-panel-card { min-height: 360px; }
  .log-toolbar { overflow-x: auto; justify-content: flex-start; }
  .log-offset { min-width: 58px; }
  #log-panel { min-height: 280px; }
  .file-grid { margin-top: 10px; }
  .auth-view { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-card-wrap { min-height: 100vh; padding: 22px; background: radial-gradient(circle at 50% 15%, rgba(108, 124, 255, .13), transparent 34%); }
  .auth-card { padding: 26px 22px; }
  .drawer-card { padding: 20px; }
  .toast-region { right: 12px; bottom: 72px; left: 12px; }
  .toast { min-width: 0; max-width: none; }
}

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