/* Atlas workstation simplification — 2026-06-14. noindex /workstation/ only.
   Loaded ONLY by workstation/index.html; the shared atlas.css used by the
   indexed homepage is untouched. Visual reorder + light hero additions only,
   no DOM moves and no handler changes. Selectors stay anchored to the
   workstation page so nothing here can affect any other surface. */

/* 1) Command surface first: hero -> tool -> account rail.
   In source order the account rail sat between the hero and the tool, pushing
   the input below the fold. Flex order lifts the tool directly under the hero. */
#workstation.atlas-workstation-page { display: flex; flex-direction: column; }
#workstation.atlas-workstation-page > .atlas-workstation-page-head { order: 0; }
#workstation.atlas-workstation-page > .atlas-workstation { order: 1; }
#workstation.atlas-workstation-page > .atlas-command-center { order: 2; }

/* The full market browser/chart/calendar rails made the workstation read as a
   second product. Keep them below the main workflow and collapse the browser
   behind an explicit drawer. */
#workstation.atlas-workstation-page ~ .atlas-ws-secondary-divider,
#workstation.atlas-workstation-page ~ .atlas-calendar,
#workstation.atlas-workstation-page ~ .atlas-templates,
#workstation.atlas-workstation-page ~ .atlas-how,
#workstation.atlas-workstation-page ~ .atlas-support,
#workstation.atlas-workstation-page ~ .atlas-tier-strip {
  display: none !important;
}

#workstation.atlas-workstation-page ~ .atlas-market-center-drawer {
  width: min(100% - 32px, 1180px);
  margin: 18px auto 0;
  border: 1px solid rgba(103, 217, 255, 0.24);
  border-radius: 12px;
  background: rgba(7, 17, 31, 0.68);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

#workstation.atlas-workstation-page ~ .atlas-market-center-drawer > summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  color: var(--text, #f2fbff);
  font: 900 0.78rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#workstation.atlas-workstation-page ~ .atlas-market-center-drawer > summary::-webkit-details-marker {
  display: none;
}

#workstation.atlas-workstation-page ~ .atlas-market-center-drawer > summary::after {
  content: "+";
  float: right;
  color: var(--accent, #67d9ff);
}

#workstation.atlas-workstation-page ~ .atlas-market-center-drawer[open] > summary::after {
  content: "-";
}

#workstation.atlas-workstation-page ~ .atlas-market-center-drawer .atlas-market-center {
  margin-top: 0;
}

/* 1b) Keep the command form in the first viewport on the live workstation.
   The shared Atlas hero spacing is homepage-friendly but too tall for an app. */
#workstation.atlas-workstation-page {
  margin-top: clamp(16px, 3.2vw, 38px);
}
#workstation.atlas-workstation-page > .atlas-workstation-page-head {
  margin-bottom: clamp(10px, 2vw, 18px);
}
#workstation.atlas-workstation-page > .atlas-workstation-page-head h1 {
  font-size: clamp(2rem, 4.2vw, 3.05rem);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
#workstation.atlas-workstation-page > .atlas-workstation-page-head p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
#workstation.atlas-workstation-page > .atlas-workstation {
  margin-top: clamp(8px, 1.6vw, 16px);
}

@media (max-width: 820px) {
  #workstation.atlas-workstation-page {
    width: min(100% - 18px, 1180px);
    margin-top: 16px;
  }
  #workstation.atlas-workstation-page > .atlas-workstation-page-head h1 {
    font-size: clamp(1.75rem, 8.4vw, 2.12rem);
    line-height: 1.02;
  }
  #workstation.atlas-workstation-page > .atlas-workstation-page-head p {
    display: none;
  }
  #workstation.atlas-workstation-page > .atlas-workstation {
    margin-top: 6px;
  }
}

/* 2) Dedup: hide the redundant "Different research jobs" chooser block. It
   duplicates the in-form template <select> (the real chooser) and the templates
   explainer below it. */
.atlas-workflows { display: none !important; }

/* 3) Hero 1-2-3 orientation strip + the browse hint under the input. */
.atlas-ws-steps {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 14px 0 0; padding: 0; list-style: none;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-muted, #5c6677);
}
.atlas-ws-steps li { display: inline-flex; align-items: center; gap: 6px; }
.atlas-ws-steps b {
  display: inline-grid; place-items: center; width: 18px; height: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent, #2563eb) 14%, transparent);
  color: var(--accent, #2563eb); font-weight: 800;
}
.atlas-ws-hint {
  display: block; margin-top: 6px;
  font-size: 12px; color: var(--text-muted, #5c6677);
}

/* 4) Phase 1: keep the legal boundary and Pro path visible beside the run
   control after the full tier strip was intentionally hidden. */
.atlas-workstation-rail {
  display: grid;
  gap: 10px;
  margin: 4px 0 2px;
}
.atlas-trust-line {
  margin: 0;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--accent, #2563eb) 22%, var(--border, #d9dee6));
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent, #2563eb) 8%, transparent);
  color: var(--text-muted, #5c6677);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}
.atlas-pro-chip {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, #f2c94c 46%, var(--border, #d9dee6));
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.18), rgba(34, 211, 238, 0.10));
  color: var(--text, #0c1730);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}
.atlas-pro-chip span,
.atlas-pro-chip strong {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.atlas-pro-chip span {
  font-size: 10px;
  color: var(--text-muted, #5c6677);
}
.atlas-pro-chip strong {
  color: var(--text, #0c1730);
  font-size: 13px;
}
.atlas-pro-chip em {
  min-width: 0;
  color: var(--text-muted, #5c6677);
  font-size: 12px;
  font-style: normal;
  overflow-wrap: anywhere;
}
.atlas-pro-chip:hover,
.atlas-pro-chip:focus {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, #f2c94c 70%, var(--accent, #2563eb));
  outline: none;
}
#workstation.atlas-workstation-page .aw-run {
  min-height: 48px;
  font-size: 0.98rem;
  font-weight: 900;
}

/* 5) Koyfin wedge: the finished report should read as the product, not a
   generic text box. This rail is injected by atlas-workstation.js only after a
   completed report appears inside #tt-result. */
#workstation.atlas-workstation-page .atlas-report-proof-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}
#workstation.atlas-workstation-page .atlas-report-proof-rail article {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  min-height: 124px;
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--accent, #2563eb) 34%, var(--border, #d9dee6));
  border-radius: 9px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent, #2563eb) 12%, transparent), transparent 70%),
    color-mix(in srgb, var(--bg, #07111f) 82%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent);
}
#workstation.atlas-workstation-page .atlas-report-proof-rail span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #2563eb);
}
#workstation.atlas-workstation-page .atlas-report-proof-rail strong {
  min-width: 0;
  color: var(--text-primary, var(--text, #0c1730));
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}
#workstation.atlas-workstation-page .atlas-report-proof-rail p {
  margin: 0;
  color: var(--text-muted, #5c6677);
  font-size: 12px;
  line-height: 1.35;
}
#workstation.atlas-workstation-page .atlas-proof-action {
  justify-self: start;
  min-height: 32px;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--accent, #2563eb) 50%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent, #2563eb) 11%, transparent);
  color: var(--accent, #2563eb);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
#workstation.atlas-workstation-page .atlas-proof-action:hover,
#workstation.atlas-workstation-page .atlas-proof-action:focus-visible {
  border-color: color-mix(in srgb, var(--accent, #2563eb) 72%, transparent);
  outline: none;
}
#workstation.atlas-workstation-page .atlas-report__actions,
#workstation.atlas-workstation-page .atlas-report-pdf-theme {
  position: relative;
}
#workstation.atlas-workstation-page .atlas-report__actions::before,
#workstation.atlas-workstation-page .atlas-report-pdf-theme::before {
  content: "output controls";
  display: block;
  width: 100%;
  margin: 0 0 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #2563eb);
}

.atlas-ticker-picker__close {
  display: none;
}

@media (max-width: 820px) {
  body[data-site="atlas"].atlas-ticker-picker-open > .atlas-ticker-picker {
    position: fixed !important;
    top: 74px !important;
    right: 3vw !important;
    bottom: calc(72px + env(safe-area-inset-bottom)) !important;
    left: 3vw !important;
    z-index: 9200 !important;
    width: auto !important;
    max-width: 440px !important;
    max-height: none !important;
    margin: 0 auto !important;
    isolation: isolate;
  }

  body[data-site="atlas"].atlas-ticker-picker-open > .atlas-ticker-picker .atlas-ticker-picker__searchbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
    align-items: center;
  }

  body[data-site="atlas"].atlas-ticker-picker-open > .atlas-ticker-picker .atlas-ticker-picker__close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(82, 220, 255, 0.28);
    border-radius: 12px;
    background: rgba(2, 9, 20, 0.74);
    color: #eafcff;
    font: 700 1.55rem/1 system-ui, sans-serif;
    cursor: pointer;
  }

  html[data-theme="light"] body[data-site="atlas"].atlas-ticker-picker-open > .atlas-ticker-picker .atlas-ticker-picker__close {
    border-color: rgba(7, 95, 124, 0.24);
    background: #ffffff;
    color: #075f7c;
  }

  body[data-site="atlas"] .atlas-workstation-page {
    width: min(100% - 18px, 1180px);
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page > .atlas-workstation {
    order: 0;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page > .atlas-workstation-page-head {
    order: 1;
    margin-top: 14px;
  }

  body[data-site="atlas"] .atlas-workstation-page-head {
    margin-bottom: 8px;
  }

  body[data-site="atlas"] .atlas-workstation-page-head .atlas-kicker {
    margin-bottom: 8px;
  }

  body[data-site="atlas"] .atlas-workstation-page-head h1 {
    font-size: clamp(1.48rem, 7vw, 1.92rem);
    line-height: 1.05;
  }

  body[data-site="atlas"] .atlas-workstation-page-head .atlas-hero-cta-row {
    display: none;
  }

  body[data-site="atlas"] .atlas-ws-steps {
    display: none;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page > .atlas-workstation {
    border-radius: 14px;
    overflow: hidden;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-bar {
    padding: 11px 12px;
    gap: 8px;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-brand-rail {
    display: none;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pills {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 5px;
    text-align: center;
    white-space: normal;
    letter-spacing: 0.04em;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-body {
    display: flex;
    flex-direction: column;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane {
    padding: 12px;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-form {
    gap: 10px;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-label--ticker {
    order: 1;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .fc-quick-market-chips {
    order: 2;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-label--template,
  body[data-site="atlas"] #workstation.atlas-workstation-page .fc-report-type-toggle {
    order: 3;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run {
    order: 4;
    min-height: 48px;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-status {
    order: 5;
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-workstation-rail {
    order: 6;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-receipt {
    order: 7;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-research-history {
    order: 8;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-label-text {
    font-size: 0.58rem;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-input {
    min-height: 46px;
    font-size: 0.82rem;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-ticker-toggle {
    width: 40px;
    height: 40px;
    top: 25px;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-ticker-picker {
    top: 74px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    width: min(94vw, 440px);
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-ticker-picker__list {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane--response {
    min-height: 0;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-response-body {
    max-height: min(72dvh, 690px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-output {
    min-height: 220px;
    max-height: none;
    overflow: visible;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-scout-loader__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-scout-loader__steps span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .atlas-workstation-rail {
    gap: 8px;
  }
  .atlas-trust-line {
    font-size: 11px;
  }
  .atlas-pro-chip {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 10px;
  }
  .atlas-pro-chip em {
    grid-column: 1 / -1;
    font-size: 11px;
  }
  #workstation.atlas-workstation-page .atlas-report-proof-rail {
    grid-template-columns: 1fr;
  }
  #workstation.atlas-workstation-page .atlas-report-proof-rail article {
    min-height: 0;
  }
}

/* 2026-07-02 23:40 mobile workstation finish.
   This route-only file is loaded after atlas.css, so it owns the final mobile
   dimensions for the Run form and saved-research surface. */
@media (max-width: 820px) {
  body[data-site="atlas"] #workstation.atlas-workstation-page {
    width: min(calc(100vw - 10px), 1180px) !important;
    max-width: calc(100vw - 10px) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    box-sizing: border-box !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page > .atlas-workstation {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    border-radius: 16px !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-body {
    padding: 0 !important;
    gap: 8px !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane,
  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane--form,
  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane--response {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-form {
    gap: 12px !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .fc-selected-market-card {
    padding: 14px !important;
    border-radius: 14px !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .fc-selected-market-card__eyebrow,
  body[data-site="atlas"] #workstation.atlas-workstation-page .fc-selected-market-card small {
    color: rgba(199, 217, 232, 0.78) !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-workstation-rail {
    padding: 10px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(82, 220, 255, 0.18) !important;
    background: rgba(2, 9, 20, 0.48) !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip {
    min-height: 48px !important;
    border-radius: 12px !important;
    background: rgba(64, 217, 246, 0.10) !important;
    border-color: rgba(82, 220, 255, 0.24) !important;
    color: #eafcff !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip span,
  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip strong,
  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip em {
    color: inherit !important;
  }

  html[data-theme="light"] body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-workstation-rail {
    border-color: rgba(7, 65, 90, 0.18) !important;
    background: rgba(7, 95, 124, 0.05) !important;
  }

  html[data-theme="light"] body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip {
    background: rgba(7, 95, 124, 0.08) !important;
    border-color: rgba(7, 65, 90, 0.22) !important;
    color: #061120 !important;
  }

  html[data-theme="light"] body[data-site="atlas"] #workstation.atlas-workstation-page .fc-selected-market-card {
    background: rgba(7, 95, 124, 0.08) !important;
    border-color: rgba(7, 65, 90, 0.22) !important;
    color: #061120 !important;
  }

  html[data-theme="light"] body[data-site="atlas"] #workstation.atlas-workstation-page .fc-selected-market-card__eyebrow,
  html[data-theme="light"] body[data-site="atlas"] #workstation.atlas-workstation-page .fc-selected-market-card small {
    color: #405164 !important;
  }
}

/* Atlas mobile final nav clearance, 2026-07-03. This file loads after
   atlas.css on the Desk route, so keep route-specific clearance here too. */
@media (max-width: 820px) {
  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-receipt {
    display: none !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip {
    display: none !important;
  }

  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-research-history {
    display: none !important;
  }
}

/* Atlas desktop terminal layout, 2026-07-07.
   Route-only: keep public SEO/static pages untouched and leave mobile P0
   overrides above in control. */
.atlas-terminal-command-bar {
  display: none;
}

@media (min-width: 1180px) {
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) main {
    width: min(100vw - 48px, 1760px) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 58px 0 34px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.44fr) minmax(360px, 0.56fr) !important;
    gap: 18px !important;
    align-items: start !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 0.68fr) minmax(420px, 1fr) minmax(360px, 0.72fr);
    gap: 14px;
    align-items: center;
    min-height: 78px;
    padding: 14px 16px;
    border: 1px solid color-mix(in srgb, var(--atlas-border, rgba(82, 220, 255, 0.24)) 82%, transparent);
    border-radius: 8px;
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--atlas-primary, #30c7df) 11%, transparent), transparent 62%),
      color-mix(in srgb, var(--atlas-panel, rgba(6, 19, 34, 0.88)) 94%, transparent);
    box-shadow: 0 22px 54px rgba(2, 8, 20, 0.26);
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav {
    min-width: 0;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity {
    display: grid;
    gap: 4px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity span,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status span {
    color: var(--atlas-text-muted, #b8c7d8);
    font-family: var(--mono, ui-monospace, monospace);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity strong {
    color: var(--atlas-text, #f4fbff);
    font-size: clamp(1.18rem, 1.7vw, 1.85rem);
    line-height: 1;
    letter-spacing: 0;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity small {
    color: var(--atlas-text-muted, #b8c7d8);
    font-size: 0.84rem;
    line-height: 1.35;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid color-mix(in srgb, var(--atlas-border, rgba(82, 220, 255, 0.24)) 84%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--atlas-surface, rgba(7, 17, 31, 0.86)) 82%, transparent);
    color: var(--atlas-text, #f4fbff);
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a:first-child {
    border-color: color-mix(in srgb, var(--atlas-primary, #30c7df) 70%, transparent);
    background: var(--atlas-primary, #30c7df);
    color: #031018;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a:hover,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a:focus-visible {
    border-color: color-mix(in srgb, var(--atlas-primary, #30c7df) 72%, transparent);
    outline: none;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(16, 185, 129, 0.30);
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.10);
    color: var(--atlas-success, #33d69f);
    text-align: center;
    letter-spacing: 0.06em;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page {
    grid-column: 1 / 2;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 12px !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page > .atlas-workstation-page-head {
    width: 100%;
    margin: 0 !important;
    padding: 18px 20px !important;
    border: 1px solid color-mix(in srgb, var(--atlas-border, rgba(82, 220, 255, 0.24)) 78%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--atlas-panel, rgba(6, 19, 34, 0.82)) 94%, transparent);
    text-align: left !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page > .atlas-workstation-page-head .atlas-kicker {
    color: var(--atlas-primary, #30c7df);
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page > .atlas-workstation-page-head h1 {
    max-width: 960px;
    margin-inline: 0 !important;
    font-size: clamp(2.05rem, 2.9vw, 3.08rem) !important;
    line-height: 0.98 !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page > .atlas-workstation-page-head p {
    max-width: 820px;
    margin-inline: 0 !important;
    color: var(--atlas-text-muted, #b8c7d8);
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .atlas-ws-steps {
    justify-content: flex-start;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .atlas-hero-cta-row {
    display: none !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page > .atlas-workstation {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    min-height: clamp(620px, 70vh, 860px);
    border-radius: 8px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .aw-body {
    grid-template-columns: minmax(315px, 0.52fr) minmax(0, 1fr);
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .atlas-ticker-combo {
    position: relative;
    z-index: 12;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .atlas-ticker-picker {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: min(420px, 56vh);
    margin: 0;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .atlas-ticker-picker__body {
    max-height: calc(min(420px, 56vh) - 64px);
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .atlas-ticker-picker__list {
    max-height: 300px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .aw-pane {
    padding: 18px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .aw-output {
    min-height: 410px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .atlas-report-trustbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-center {
    grid-column: 2 / 3;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 16px !important;
    border-radius: 8px !important;
    position: sticky;
    top: 86px;
    max-height: calc(100vh - 108px);
    overflow: auto;
    scrollbar-width: thin;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-center__head h2 {
    font-size: 1.36rem;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-tabs button {
    min-height: 38px;
    padding-inline: 7px;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-center__metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-center__metrics div {
    min-height: 62px;
    padding: 10px 8px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-center__metrics strong {
    font-size: 1.12rem;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-center__metrics span {
    font-size: 0.52rem;
    letter-spacing: 0.07em;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-today-panel,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-command-panel,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-today-item,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-watchlist-row {
    border-radius: 8px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-ws-secondary-divider {
    display: none !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center-drawer,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-workstation-drawer {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 8px !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center-drawer {
    grid-column: 1 / 2;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-workstation-drawer--calendar {
    grid-column: 2 / 3;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-workstation-drawer--templates {
    grid-column: 1 / -1;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center-drawer > summary,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-workstation-drawer > summary {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 0.84rem !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center-drawer > summary::after,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-workstation-drawer > summary::after {
    min-height: 28px !important;
    min-width: 56px !important;
    font-size: 0.68rem !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center-drawer:not([open]) > .atlas-market-center,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-workstation-drawer--calendar:not([open]) > .atlas-calendar,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-workstation-drawer--templates:not([open]) > .atlas-templates {
    display: block !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-templates {
    width: 100% !important;
    margin: 0 !important;
    padding: 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: color-mix(in srgb, var(--atlas-panel, rgba(6, 19, 34, 0.86)) 92%, transparent) !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center > .atlas-section-head,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar > .atlas-section-head,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-templates > .atlas-section-head {
    margin-bottom: 12px;
    text-align: left;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center > .atlas-section-head h2,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar > .atlas-section-head h2,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-templates > .atlas-section-head h2 {
    font-size: clamp(1.22rem, 1.5vw, 1.72rem);
    line-height: 1.02;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center > .atlas-section-head p,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar > .atlas-section-head p,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-templates > .atlas-section-head p {
    max-width: none;
    margin-inline: 0;
    font-size: 0.9rem;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-tv-chart {
    height: clamp(360px, 43vh, 560px);
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-results {
    max-height: 192px;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-macro-briefing {
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-macro-checks,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-macro-family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar-bar,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-bar {
    align-items: start;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar-grid {
    max-height: 460px;
    overflow: auto;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-how,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-support,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-tier-strip,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .tt-footer {
    grid-column: 1 / -1;
  }

  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar {
    border-color: rgba(7, 65, 90, 0.20);
    background:
      linear-gradient(135deg, rgba(7, 95, 124, 0.08), transparent 62%),
      rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(6, 17, 32, 0.10);
  }

  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity strong,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity strong {
    color: #061120;
  }

  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity span,
  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity small,
  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status span,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity span,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity small,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status span {
    color: #405164;
  }

  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a {
    border-color: rgba(7, 65, 90, 0.20);
    background: rgba(248, 251, 254, 0.95);
    color: #061120;
  }

  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a:first-child,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a:first-child {
    border-color: #075f7c;
    background: #075f7c;
    color: #ffffff;
  }

  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status span,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status span {
    border-color: rgba(8, 112, 82, 0.24);
    background: rgba(8, 112, 82, 0.08);
    color: #087052;
  }

  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page > .atlas-workstation-page-head,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page > .atlas-workstation-page-head,
  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center,
  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar,
  html[data-theme="light"] body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-templates,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-market-center,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-calendar,
  body[data-theme="light"][data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-templates {
    border-color: rgba(7, 65, 90, 0.20);
    background: rgba(255, 255, 255, 0.96) !important;
  }
}

@media (min-width: 1180px) and (max-width: 1360px) {
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) main {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr) !important;
    gap: 14px !important;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar {
    grid-template-columns: minmax(250px, 0.56fr) minmax(420px, 1fr) minmax(270px, 0.62fr);
    min-height: 82px;
    padding: 12px 14px;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__identity small,
  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__nav a {
    font-size: 0.76rem;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) .atlas-terminal-command-bar__status span {
    min-height: 38px;
    padding-inline: 7px;
    font-size: 0.52rem;
    letter-spacing: 0.04em;
  }

  body[data-site="atlas"]:has(.atlas-terminal-command-bar) #workstation.atlas-workstation-page .aw-body {
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  body[data-site="atlas"].atlas-mobile-account-v2-active:is(.atlas-command-tab-saved, .atlas-command-tab-watchlist, .atlas-command-tab-account) #workstation.atlas-workstation-page > .atlas-workstation-page-head,
  body[data-site="atlas"].atlas-mobile-account-v2-active:is(.atlas-command-tab-saved, .atlas-command-tab-watchlist, .atlas-command-tab-account) #workstation.atlas-workstation-page > .atlas-workstation {
    display: none !important;
  }

  body[data-site="atlas"].atlas-mobile-account-v2-active:is(.atlas-command-tab-today, .atlas-command-tab-saved, .atlas-command-tab-watchlist, .atlas-command-tab-account) #workstation.atlas-workstation-page > .atlas-command-center {
    order: 0 !important;
    margin-top: 8px !important;
    margin-bottom: calc(104px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* Reports route first paint and archive geometry. */
body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-tabpanel[data-command-panel="today"] {
  display: none !important;
}

body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-tabpanel[data-command-panel="saved"] {
  display: block !important;
}

body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-panel > header strong {
  color: var(--atlas-text) !important;
}

@media (max-width: 760px) {
  body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved #atlas-command-archive {
    min-height: 300px;
  }
}

/* Account-owned Reports retrieval candidate. */
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 12px 16px;
  align-items: end;
  margin: 0 0 16px;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(94, 221, 232, 0.2);
  border-bottom: 1px solid rgba(94, 221, 232, 0.2);
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--atlas-muted, #a9bac6);
  font: 700 0.72rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools input,
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools select {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(94, 221, 232, 0.3);
  border-radius: 6px;
  background: rgba(5, 19, 29, 0.84);
  color: var(--atlas-text, #edfaff);
  font: 700 0.9rem/1.25 Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools input:focus-visible,
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools select:focus-visible {
  outline: 3px solid rgba(63, 205, 220, 0.32);
  outline-offset: 2px;
  border-color: #5edde8;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-menus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-result-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--atlas-muted, #a9bac6);
  font: 700 0.78rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-results {
  display: grid;
  gap: 12px;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-gap {
  margin: 8px 0 0;
  padding-left: 10px;
  border-left: 3px solid #f5bf48;
  color: #f7d88c;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version-panel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(94, 221, 232, 0.2);
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version-panel > ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(94, 221, 232, 0.14);
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version > div {
  display: grid;
  gap: 3px;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version strong,
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version span,
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version small,
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version p {
  overflow-wrap: anywhere;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version p {
  margin: 0;
  color: var(--atlas-muted, #a9bac6);
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version nav,
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version-panel > button {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version button,
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-load-more,
body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-version-panel > button {
  min-height: 44px;
}

body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-load-more {
  width: 100%;
  margin-top: 14px;
}

html[data-theme="light"] body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools input,
html[data-theme="light"] body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools select,
body[data-theme="light"][data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools input,
body[data-theme="light"][data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools select {
  border-color: rgba(7, 95, 124, 0.28);
  background: #ffffff;
  color: #082f43;
}

html[data-theme="light"] body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-gap,
body[data-theme="light"][data-site="atlas"].atlas-command-tab-saved .atlas-archive-gap {
  color: #715300;
}

@media (max-width: 760px) {
  body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-menus {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools input,
  body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-tools select {
    min-height: 48px;
    font-size: 0.86rem;
  }
}

@media (max-width: 380px) {
  body[data-site="atlas"].atlas-command-tab-saved .atlas-archive-menus {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved #atlas-command-center {
    padding-inline: 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-center__head {
    margin: 0 0 12px !important;
    padding: 0 2px !important;
  }

  body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-tabs {
    display: none !important;
  }

  body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-tabpanels,
  body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-tabpanel,
  body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-panel {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-panel > header {
    margin: 0 0 10px !important;
    padding: 0 2px !important;
    border: 0 !important;
  }

  body[data-site="atlas"].atlas-mobile-account-v2-active.atlas-command-tab-saved .atlas-command-run-cost {
    margin: 0 0 12px !important;
    padding: 0 2px 12px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(94, 221, 232, 0.2) !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
}

/* Desk experience pass, 2026-07-15.
   Route-scoped visual feedback for real research actions only. It uses the
   existing source/report/archive flow and is inert when reduced motion is on. */
body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane--form {
  position: relative;
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-workflow-context {
  border-left: 3px solid color-mix(in srgb, var(--atlas-primary, var(--accent, #22d3ee)) 72%, transparent);
  background:
    linear-gradient(100deg, color-mix(in srgb, var(--atlas-primary, var(--accent, #22d3ee)) 11%, transparent), transparent 42%),
    var(--aw-bg-pane, var(--panel, #07101c));
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-context-grid div,
body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-command-tabs button,
body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-context-grid div:hover,
body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-command-tabs button:hover,
body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip:hover {
  transform: translateY(-1px);
}

body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-command-tabs button:active,
body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip:active,
body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run:active {
  transform: translateY(1px) scale(0.992);
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run {
  isolation: isolate;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: translateX(-118%);
  background: linear-gradient(100deg, transparent 26%, rgba(255, 255, 255, 0.30) 50%, transparent 74%);
  transition: transform 460ms ease, opacity 160ms ease;
  pointer-events: none;
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run-text,
body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run-arrow {
  position: relative;
  z-index: 1;
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run:hover::before,
body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run:focus-visible::before {
  opacity: 1;
  transform: translateX(118%);
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-form.atlas-market-selected .aw-run {
  border-color: color-mix(in srgb, var(--atlas-primary, var(--accent, #22d3ee)) 86%, transparent);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--atlas-primary, var(--accent, #22d3ee)) 24%, transparent);
}

body[data-site="atlas"] #workstation.atlas-workstation-page .aw-form.atlas-market-selected .fc-quick-market-chips {
  filter: saturate(1.08);
}

@media (prefers-reduced-motion: reduce) {
  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-context-grid div,
  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-command-tabs button,
  body[data-site="atlas"] #workstation.atlas-workstation-page .atlas-pro-chip,
  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run,
  body[data-site="atlas"] #workstation.atlas-workstation-page .aw-run::before {
    transition: none;
  }
}

/* Atlas Semantic Tokens v1: Desk-owned account and research boundary rail.
   This route sheet loads after atlas.css and therefore owns its final state. */
html[data-theme] body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane--form .atlas-workstation-rail {
  border-color: var(--atlas-color-border) !important;
  border-radius: var(--atlas-radius-panel) !important;
  background: var(--atlas-color-surface-2) !important;
  color: var(--atlas-color-text) !important;
  box-shadow: var(--atlas-shadow-panel) !important;
}

html[data-theme] body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane--form .atlas-trust-line {
  border-color: var(--atlas-color-border) !important;
  background: var(--atlas-color-accent-soft) !important;
  color: var(--atlas-color-text) !important;
  font-family: var(--atlas-font-ui) !important;
}

html[data-theme] body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane--form [data-atlas-identity-cta="pro-chip"]:not(.atlas-identity-hidden) {
  border-color: var(--atlas-color-border-strong) !important;
  border-radius: var(--atlas-radius-control) !important;
  background: var(--atlas-color-surface-1) !important;
  color: var(--atlas-color-text) !important;
  font-family: var(--atlas-font-ui) !important;
  transition:
    background-color var(--atlas-duration-normal) var(--atlas-ease-standard),
    border-color var(--atlas-duration-normal) var(--atlas-ease-standard),
    transform var(--atlas-duration-normal) var(--atlas-ease-standard) !important;
}

html[data-theme] body[data-site="atlas"] #workstation.atlas-workstation-page .aw-pane--form [data-atlas-identity-cta="pro-chip"]:focus-visible {
  outline: 2px solid var(--atlas-color-focus) !important;
  outline-offset: 2px !important;
}

/* Atlas Today mission contract v3.
   Today is a research inbox: one real next action, then a bounded queue. */
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-panel {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-panel > header {
  padding: 0 0 var(--atlas-space-3) !important;
  border-bottom: 1px solid var(--atlas-color-border) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-read-all[hidden] {
  display: none !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-list {
  gap: var(--atlas-space-5) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission {
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr) !important;
  margin: 0 !important;
  padding: var(--atlas-space-5) 0 var(--atlas-space-5) var(--atlas-space-5) !important;
  border: 0 !important;
  border-left: 3px solid var(--atlas-color-accent) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--atlas-color-text) !important;
  box-shadow: none !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__copy > span,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__head span,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__next span,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue > header span,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state > span {
  color: var(--atlas-color-accent-strong) !important;
  font-family: var(--atlas-font-mono) !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__copy h3 {
  color: var(--atlas-color-text) !important;
  font-family: var(--atlas-font-ui) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__copy > p {
  max-width: 720px;
  color: var(--atlas-color-text-muted) !important;
  font-family: var(--atlas-font-ui) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue {
  min-width: 0;
  display: grid;
  gap: var(--atlas-space-3);
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__head,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue > header {
  min-width: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--atlas-space-3);
  padding-bottom: var(--atlas-space-2);
  border-bottom: 1px solid var(--atlas-color-border);
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__head span,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__head strong,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue > header span,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue > header strong {
  display: block;
  min-width: 0;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__head strong,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue > header strong {
  margin-top: var(--atlas-space-1);
  color: var(--atlas-color-text) !important;
  font-family: var(--atlas-font-ui) !important;
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__head small,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue > header small {
  flex: 0 0 auto;
  color: var(--atlas-color-text-subtle) !important;
  font-family: var(--atlas-font-mono) !important;
  font-size: 0.68rem;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__next {
  display: grid;
  gap: var(--atlas-space-1);
  padding: var(--atlas-space-3);
  border: 1px solid var(--atlas-color-border);
  border-radius: var(--atlas-radius-control);
  background: var(--atlas-color-accent-soft);
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__next p {
  margin: 0;
  color: var(--atlas-color-text) !important;
  font-family: var(--atlas-font-ui) !important;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.4;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-item--featured {
  padding: var(--atlas-space-5) !important;
  border-color: var(--atlas-color-border-strong) !important;
  border-radius: var(--atlas-radius-panel) !important;
  background: var(--atlas-color-surface-1) !important;
  color: var(--atlas-color-text) !important;
  box-shadow: var(--atlas-shadow-panel) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--atlas-space-3);
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-item--secondary {
  min-width: 0;
  border-color: var(--atlas-color-border) !important;
  border-radius: var(--atlas-radius-panel) !important;
  background: var(--atlas-color-surface-1) !important;
  color: var(--atlas-color-text) !important;
  box-shadow: none !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state {
  display: grid;
  gap: var(--atlas-space-3);
  padding: var(--atlas-space-5);
  border: 1px solid color-mix(in srgb, var(--atlas-color-success) 52%, var(--atlas-color-border));
  border-radius: var(--atlas-radius-panel);
  background: color-mix(in srgb, var(--atlas-color-success) 8%, var(--atlas-color-surface-1));
  color: var(--atlas-color-text);
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state--pending {
  border-color: color-mix(in srgb, var(--atlas-color-warning) 54%, var(--atlas-color-border));
  background: color-mix(in srgb, var(--atlas-color-warning) 8%, var(--atlas-color-surface-1));
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state h3,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state p {
  margin: 0;
  font-family: var(--atlas-font-ui);
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state h3 {
  color: var(--atlas-color-text);
  font-size: 1.2rem;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state p {
  color: var(--atlas-color-text-muted);
  line-height: 1.5;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--atlas-space-2);
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state button,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state a,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-item button,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-item a {
  min-height: var(--atlas-touch-min) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: var(--atlas-space-2) !important;
  margin-top: var(--atlas-space-3) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__actions button,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__actions a {
  min-height: var(--atlas-touch-min) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 var(--atlas-space-4) !important;
  border: 1px solid var(--atlas-color-border-strong) !important;
  border-radius: var(--atlas-radius-control) !important;
  background: var(--atlas-color-accent-soft) !important;
  color: var(--atlas-color-accent-strong) !important;
  font-family: var(--atlas-font-ui) !important;
  font-size: 0.84rem !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__actions .atlas-research-mission__primary {
  border-color: var(--atlas-color-accent) !important;
  background: var(--atlas-color-accent) !important;
  color: var(--atlas-color-accent-ink) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-actions .atlas-today-primary-action,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-actions .atlas-today-review-action {
  min-height: var(--atlas-touch-min) !important;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__progress span {
  min-width: 0;
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state button,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--atlas-space-4);
  border: 1px solid var(--atlas-color-border-strong);
  border-radius: var(--atlas-radius-control);
  background: var(--atlas-color-accent-soft);
  color: var(--atlas-color-accent-strong);
  font-family: var(--atlas-font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state button:focus-visible,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state a:focus-visible,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-item button:focus-visible,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-item a:focus-visible {
  outline: 2px solid var(--atlas-color-focus) !important;
  outline-offset: 2px !important;
}

@keyframes atlas-today-state-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured,
html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state {
  animation: atlas-today-state-enter var(--atlas-duration-normal) var(--atlas-ease-standard) both;
}

@media (max-width: 820px) {
  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: var(--atlas-space-4) 0 var(--atlas-space-4) var(--atlas-space-4) !important;
  }

  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured__head,
  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue > header {
    align-items: start;
  }

  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-item--featured {
    padding: var(--atlas-space-4) !important;
  }

  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-secondary-queue__list {
    grid-template-columns: minmax(0, 1fr);
  }

  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state nav,
  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state button,
  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state a {
    width: 100%;
    box-sizing: border-box;
  }

  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__actions button,
  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-research-mission__actions a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-featured,
  html[data-theme] body[data-site="atlas"].atlas-command-tab-today #workstation.atlas-workstation-page .atlas-today-return-state {
    animation: none !important;
  }
}
