/* [project]/src/components/navigation/Sidebar.module.css [app-client] (css) */
.Sidebar-module__hOqQFq__sidebar {
  background: var(--layer-1);
  border-right: 1px solid var(--layer-3);
  z-index: 100;
  width: 240px;
  height: 100vh;
  transition: width var(--duration-slow) var(--easing-decelerate);
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__collapsed {
  width: 56px;
}

.Sidebar-module__hOqQFq__overlay {
  display: none;
}

@media (max-width: 1023px) {
  .Sidebar-module__hOqQFq__sidebar {
    transition: transform var(--duration-slow) var(--easing-decelerate), width var(--duration-slow) var(--easing-decelerate);
    box-shadow: var(--shadow-28);
    transform: translateX(-100%);
    width: 240px !important;
  }

  .Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__mobileOpen {
    transform: translateX(0);
  }

  .Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__collapsed {
    width: 240px !important;
  }

  .Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__mobileOpen .Sidebar-module__hOqQFq__sectionLabel, .Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__mobileOpen .Sidebar-module__hOqQFq__logo, .Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__mobileOpen .Sidebar-module__hOqQFq__themeLabel, .Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__mobileOpen .Sidebar-module__hOqQFq__shortcutHint {
    padding: revert;
    opacity: 1 !important;
    width: auto !important;
  }

  .Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__mobileOpen .Sidebar-module__hOqQFq__subItems.Sidebar-module__hOqQFq__expanded {
    max-height: 600px !important;
  }

  .Sidebar-module__hOqQFq__overlay {
    z-index: 99;
    animation: Sidebar-module__hOqQFq__fadeIn var(--duration-normal) var(--easing-ease) both;
    background: #00000080;
    display: block;
    position: fixed;
    inset: 0;
  }
}

@media (max-width: 767px) {
  .Sidebar-module__hOqQFq__sidebar, .Sidebar-module__hOqQFq__sidebar.Sidebar-module__hOqQFq__collapsed {
    width: 200px !important;
  }

  .Sidebar-module__hOqQFq__sectionBtn {
    font-size: 13px;
  }

  .Sidebar-module__hOqQFq__subItem {
    padding-left: 44px;
    font-size: 12px;
  }
}

@keyframes Sidebar-module__hOqQFq__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Sidebar-module__hOqQFq__header {
  height: 56px;
  padding: 0 var(--space-12);
  border-bottom: 1px solid var(--layer-3);
  align-items: center;
  gap: var(--space-8);
  flex-shrink: 0;
  display: flex;
}

.Sidebar-module__hOqQFq__hamburger {
  width: 32px;
  height: 32px;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-medium);
  transition: background var(--duration-fast) var(--easing-ease);
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  display: flex;
}

.Sidebar-module__hOqQFq__hamburger:hover {
  background: var(--layer-3);
}

.Sidebar-module__hOqQFq__logo {
  white-space: nowrap;
  opacity: 1;
  transition: opacity var(--duration-fast) var(--easing-ease);
  color: var(--atheryon-blue);
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}

.Sidebar-module__hOqQFq__collapsed .Sidebar-module__hOqQFq__logo {
  opacity: 0;
  width: 0;
}

.Sidebar-module__hOqQFq__nav {
  padding: var(--space-8) 0;
  flex: 1;
  overflow: hidden auto;
}

.Sidebar-module__hOqQFq__sectionBtn {
  width: 100%;
  height: 40px;
  padding: 0 var(--space-12);
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-sans);
  align-items: center;
  gap: var(--space-10);
  transition: background var(--duration-fast) var(--easing-ease), color var(--duration-fast) var(--easing-ease);
  white-space: nowrap;
  background: none;
  border: none;
  text-decoration: none;
  display: flex;
  position: relative;
}

.Sidebar-module__hOqQFq__sectionBtn:hover {
  background: var(--layer-2);
}

.Sidebar-module__hOqQFq__sectionBtn.Sidebar-module__hOqQFq__active {
  color: var(--atheryon-blue);
  background: #0a84ff1a;
}

.Sidebar-module__hOqQFq__sectionBtn.Sidebar-module__hOqQFq__active:before {
  content: "";
  background: var(--atheryon-blue);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  width: 3px;
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
}

.Sidebar-module__hOqQFq__sectionIcon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 18px;
  display: flex;
}

.Sidebar-module__hOqQFq__sectionLabel {
  opacity: 1;
  transition: opacity var(--duration-fast) var(--easing-ease);
  font-weight: 500;
  overflow: hidden;
}

.Sidebar-module__hOqQFq__collapsed .Sidebar-module__hOqQFq__sectionLabel {
  opacity: 0;
  width: 0;
}

.Sidebar-module__hOqQFq__subItems {
  max-height: 0;
  transition: max-height var(--duration-slow) var(--easing-decelerate);
  overflow: hidden;
}

.Sidebar-module__hOqQFq__subItems.Sidebar-module__hOqQFq__expanded {
  max-height: 600px;
}

.Sidebar-module__hOqQFq__collapsed .Sidebar-module__hOqQFq__subItems {
  max-height: 0 !important;
}

.Sidebar-module__hOqQFq__subItem {
  width: 100%;
  height: 34px;
  padding: 0 var(--space-12) 0 54px;
  color: inherit;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: background var(--duration-fast) var(--easing-ease), color var(--duration-fast) var(--easing-ease);
  opacity: .8;
  background: none;
  border: none;
  align-items: center;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.Sidebar-module__hOqQFq__subItem:hover {
  background: var(--layer-2);
  opacity: 1;
}

.Sidebar-module__hOqQFq__subItem.Sidebar-module__hOqQFq__subActive {
  color: var(--atheryon-blue);
  opacity: 1;
  font-weight: 500;
}

.Sidebar-module__hOqQFq__footer {
  border-top: 1px solid var(--layer-3);
  padding: var(--space-8) var(--space-12);
  align-items: center;
  gap: var(--space-8);
  flex-shrink: 0;
  display: flex;
}

.Sidebar-module__hOqQFq__themeToggle {
  width: 32px;
  height: 32px;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-medium);
  transition: background var(--duration-fast) var(--easing-ease);
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  display: flex;
}

.Sidebar-module__hOqQFq__themeToggle:hover {
  background: var(--layer-3);
}

.Sidebar-module__hOqQFq__themeLabel {
  opacity: .7;
  white-space: nowrap;
  transition: opacity var(--duration-fast) var(--easing-ease);
  font-size: 12px;
  overflow: hidden;
}

.Sidebar-module__hOqQFq__collapsed .Sidebar-module__hOqQFq__themeLabel {
  opacity: 0;
  width: 0;
}

.Sidebar-module__hOqQFq__mobileToggle {
  top: var(--space-12);
  left: var(--space-12);
  z-index: 98;
  background: var(--layer-2);
  width: 40px;
  height: 40px;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-4);
  border: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  display: none;
  position: fixed;
}

@media (max-width: 1023px) {
  .Sidebar-module__hOqQFq__mobileToggle {
    display: flex;
  }
}

.Sidebar-module__hOqQFq__shortcutHint {
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-8);
  margin-top: var(--space-4);
  cursor: pointer;
  border-radius: var(--radius-medium);
  color: inherit;
  font-family: var(--font-sans);
  opacity: .5;
  transition: opacity var(--duration-fast) var(--easing-ease);
  white-space: nowrap;
  background: none;
  border: none;
  font-size: 11px;
  display: flex;
  overflow: hidden;
}

.Sidebar-module__hOqQFq__shortcutHint:hover {
  opacity: .8;
}

.Sidebar-module__hOqQFq__collapsed .Sidebar-module__hOqQFq__shortcutHint {
  opacity: 0;
  width: 0;
  padding: 0;
}

.Sidebar-module__hOqQFq__kbd {
  min-width: 20px;
  height: 18px;
  padding: 0 var(--space-4);
  font-size: 10px;
  font-family: var(--font-mono);
  background: var(--layer-3);
  border-radius: var(--radius-small);
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

/* [project]/src/components/navigation/Breadcrumbs.module.css [app-client] (css) */
.Breadcrumbs-module__LGOzmW__breadcrumbs {
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  min-height: 32px;
  font-size: 12px;
  display: flex;
}

.Breadcrumbs-module__LGOzmW__crumbLink {
  color: inherit;
  opacity: .6;
  transition: opacity var(--duration-fast) var(--easing-ease);
  white-space: nowrap;
  text-decoration: none;
}

.Breadcrumbs-module__LGOzmW__crumbLink:hover {
  opacity: 1;
  text-decoration: underline;
}

.Breadcrumbs-module__LGOzmW__separator {
  opacity: .3;
  -webkit-user-select: none;
  user-select: none;
  font-size: 10px;
}

.Breadcrumbs-module__LGOzmW__current {
  opacity: 1;
  white-space: nowrap;
  font-weight: 600;
}

/* [project]/src/components/navigation/JourneyBreadcrumb.module.css [app-client] (css) */
.JourneyBreadcrumb-module__SJY-vG__journeyRow {
  align-items: center;
  gap: var(--space-4);
  color: var(--fg-tertiary);
  padding: 0 0 var(--space-4) 0;
  flex-wrap: nowrap;
  min-height: 24px;
  font-size: 12px;
  display: flex;
  overflow: hidden;
}

.JourneyBreadcrumb-module__SJY-vG__prefix {
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}

.JourneyBreadcrumb-module__SJY-vG__steps {
  align-items: center;
  gap: var(--space-4);
  min-width: 0;
  display: flex;
  overflow: hidden;
}

.JourneyBreadcrumb-module__SJY-vG__stepLink {
  color: var(--fg-tertiary);
  white-space: nowrap;
  transition: color var(--duration-fast) var(--easing-ease);
  cursor: pointer;
  text-decoration: none;
}

.JourneyBreadcrumb-module__SJY-vG__stepLink:hover {
  color: var(--fg-primary);
  text-decoration: underline;
}

.JourneyBreadcrumb-module__SJY-vG__arrow {
  color: var(--fg-tertiary);
  opacity: .5;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
}

.JourneyBreadcrumb-module__SJY-vG__hereBadge {
  white-space: nowrap;
  opacity: .7;
  font-style: italic;
}

.JourneyBreadcrumb-module__SJY-vG__overflowTrigger {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.JourneyBreadcrumb-module__SJY-vG__overflowButton {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  color: var(--fg-tertiary);
  cursor: pointer;
  transition: background var(--duration-fast) var(--easing-ease), color var(--duration-fast) var(--easing-ease);
  background: none;
  padding: 1px 6px;
  font-size: 11px;
  line-height: 1;
}

.JourneyBreadcrumb-module__SJY-vG__overflowButton:hover {
  background: var(--bg-hover);
  color: var(--fg-primary);
}

.JourneyBreadcrumb-module__SJY-vG__overflowMenu {
  z-index: var(--z-dropdown);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  max-width: 320px;
  padding: var(--space-4) 0;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
}

.JourneyBreadcrumb-module__SJY-vG__overflowMenuItem {
  width: 100%;
  padding: var(--space-6) var(--space-12);
  color: var(--fg-secondary);
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: background var(--duration-fast) var(--easing-ease);
  font-size: 12px;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.JourneyBreadcrumb-module__SJY-vG__overflowMenuItem:hover {
  background: var(--bg-hover);
  color: var(--fg-primary);
}

.JourneyBreadcrumb-module__SJY-vG__clearLink {
  margin-left: var(--space-8);
  color: var(--fg-tertiary);
  white-space: nowrap;
  cursor: pointer;
  opacity: .7;
  transition: opacity var(--duration-fast) var(--easing-ease), color var(--duration-fast) var(--easing-ease);
  flex-shrink: 0;
  font-size: 11px;
  text-decoration: none;
}

.JourneyBreadcrumb-module__SJY-vG__clearLink:hover {
  opacity: 1;
  color: var(--fg-primary);
  text-decoration: underline;
}

/* [project]/src/components/navigation/SubNavPills.module.css [app-client] (css) */
.SubNavPills-module__zyl71q__wrapper {
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-4) 0 var(--space-12) 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-height: 38px;
  display: flex;
  overflow-x: auto;
}

.SubNavPills-module__zyl71q__wrapper::-webkit-scrollbar {
  display: none;
}

.SubNavPills-module__zyl71q__pill {
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-circular);
  font-size: 13px;
  font-family: var(--font-sans);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid var(--layer-3);
  color: inherit;
  opacity: .8;
  transition: background var(--duration-fast) var(--easing-ease), border-color var(--duration-fast) var(--easing-ease), color var(--duration-fast) var(--easing-ease), opacity var(--duration-fast) var(--easing-ease);
  background: none;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.SubNavPills-module__zyl71q__pill:hover {
  background: var(--layer-2);
  opacity: 1;
}

.SubNavPills-module__zyl71q__pill.SubNavPills-module__zyl71q__active {
  background: var(--atheryon-blue);
  border-color: var(--atheryon-blue);
  color: #fff;
  opacity: 1;
}

/* [project]/src/components/navigation/CommandPalette.module.css [app-client] (css) */
.CommandPalette-module__5Enp0W__backdrop {
  z-index: 1000;
  animation: CommandPalette-module__5Enp0W__fadeIn var(--duration-fast) var(--easing-ease) both;
  background: #0000008c;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20vh;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes CommandPalette-module__5Enp0W__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.CommandPalette-module__5Enp0W__palette {
  width: 560px;
  max-width: calc(100vw - var(--space-32));
  background: var(--layer-2);
  border: 1px solid var(--layer-4);
  border-radius: var(--radius-large);
  max-height: 440px;
  box-shadow: var(--shadow-28);
  animation: CommandPalette-module__5Enp0W__slideDown var(--duration-normal) var(--easing-decelerate) both;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

@keyframes CommandPalette-module__5Enp0W__slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px)scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.CommandPalette-module__5Enp0W__inputArea {
  padding: var(--space-12) var(--space-16);
  border-bottom: 1px solid var(--layer-3);
  align-items: center;
  gap: var(--space-8);
  display: flex;
}

.CommandPalette-module__5Enp0W__searchIcon {
  opacity: .5;
  flex-shrink: 0;
  font-size: 18px;
}

.CommandPalette-module__5Enp0W__input {
  color: inherit;
  font-size: 16px;
  font-family: var(--font-sans);
  background: none;
  border: none;
  outline: none;
  flex: 1;
}

.CommandPalette-module__5Enp0W__input::placeholder {
  opacity: .4;
}

.CommandPalette-module__5Enp0W__results {
  padding: var(--space-8) 0;
  flex: 1;
  overflow-y: auto;
}

.CommandPalette-module__5Enp0W__resultItem {
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-8) var(--space-16);
  cursor: pointer;
  transition: background var(--duration-fast) var(--easing-ease);
  font-size: 14px;
  display: flex;
}

.CommandPalette-module__5Enp0W__resultItem:hover, .CommandPalette-module__5Enp0W__resultItem.CommandPalette-module__5Enp0W__highlighted {
  background: var(--layer-3);
}

.CommandPalette-module__5Enp0W__resultIcon {
  text-align: center;
  flex-shrink: 0;
  width: 24px;
  font-size: 18px;
}

.CommandPalette-module__5Enp0W__resultText {
  align-items: baseline;
  gap: var(--space-6);
  flex: 1;
  display: flex;
  overflow: hidden;
}

.CommandPalette-module__5Enp0W__resultSection {
  white-space: nowrap;
  font-weight: 500;
}

.CommandPalette-module__5Enp0W__resultSub {
  opacity: .6;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  overflow: hidden;
}

.CommandPalette-module__5Enp0W__resultSeparator {
  opacity: .3;
  font-size: 10px;
}

.CommandPalette-module__5Enp0W__footer {
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-8) var(--space-16);
  border-top: 1px solid var(--layer-3);
  opacity: .5;
  font-size: 11px;
  display: flex;
}

.CommandPalette-module__5Enp0W__footerKey {
  align-items: center;
  gap: var(--space-4);
  display: inline-flex;
}

.CommandPalette-module__5Enp0W__kbd {
  min-width: 20px;
  height: 18px;
  padding: 0 var(--space-4);
  font-size: 10px;
  font-family: var(--font-mono);
  background: var(--layer-4);
  border-radius: var(--radius-small);
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.CommandPalette-module__5Enp0W__empty {
  padding: var(--space-24) var(--space-16);
  text-align: center;
  opacity: .4;
  font-size: 14px;
}

/* [project]/src/components/assistant/AssistantTranscript.module.css [app-client] (css) */
.AssistantTranscript-module__BUJRbq__transcript {
  padding: var(--space-16, 16px) var(--space-24, 24px);
  gap: var(--space-16, 16px);
  flex-direction: column;
  display: flex;
}

.AssistantTranscript-module__BUJRbq__empty {
  height: 100%;
  padding: var(--space-48, 48px) var(--space-24, 24px);
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: var(--space-12, 12px);
  flex-direction: column;
  display: flex;
}

.AssistantTranscript-module__BUJRbq__emptyIcon {
  letter-spacing: .1em;
  color: #0078d4;
  background: #0078d426;
  border: 1px solid #0078d44d;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: .75rem;
  font-weight: 700;
}

.AssistantTranscript-module__BUJRbq__emptyTitle {
  margin: 8px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.AssistantTranscript-module__BUJRbq__emptyHint {
  color: #ffffff80;
  max-width: 440px;
  margin: 0;
  font-size: .85rem;
}

.AssistantTranscript-module__BUJRbq__suggestions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  display: flex;
}

.AssistantTranscript-module__BUJRbq__suggestion {
  color: #fff9;
  cursor: default;
  border: 1px solid #ffffff1f;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: .8rem;
}

.AssistantTranscript-module__BUJRbq__message {
  gap: var(--space-12, 12px);
  align-items: flex-start;
  display: flex;
}

.AssistantTranscript-module__BUJRbq__user {
  flex-direction: row-reverse;
}

.AssistantTranscript-module__BUJRbq__avatar {
  letter-spacing: .05em;
  color: #ffffff80;
  background: #ffffff0f;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
}

.AssistantTranscript-module__BUJRbq__assistant .AssistantTranscript-module__BUJRbq__avatar {
  color: #0078d4;
  background: #0078d426;
}

.AssistantTranscript-module__BUJRbq__bubble {
  max-width: 75%;
  padding: var(--space-12, 12px) var(--space-16, 16px);
  background: #ffffff0a;
  border: 1px solid #ffffff0f;
  border-radius: 12px;
  min-width: 0;
}

.AssistantTranscript-module__BUJRbq__user .AssistantTranscript-module__BUJRbq__bubble {
  background: #0078d41a;
  border-color: #0078d433;
}

.AssistantTranscript-module__BUJRbq__content {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: .9rem;
  line-height: 1.6;
}

.AssistantTranscript-module__BUJRbq__meta {
  color: #ffffff4d;
  margin-top: 8px;
  font-size: .7rem;
}

.AssistantTranscript-module__BUJRbq__streaming {
  padding: 0 var(--space-24, 24px);
  gap: 4px;
  display: flex;
}

.AssistantTranscript-module__BUJRbq__dot {
  background: #0078d480;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.4s ease-in-out infinite AssistantTranscript-module__BUJRbq__pulse;
}

.AssistantTranscript-module__BUJRbq__dot:nth-child(2) {
  animation-delay: .2s;
}

.AssistantTranscript-module__BUJRbq__dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes AssistantTranscript-module__BUJRbq__pulse {
  0%, 80%, 100% {
    opacity: .3;
    transform: scale(.8);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

/* [project]/src/components/assistant/AssistantComposer.module.css [app-client] (css) */
.AssistantComposer-module__gbTaxa__composer {
  align-items: flex-end;
  gap: var(--space-8, 8px);
  padding: var(--space-12, 12px) var(--space-24, 24px) var(--space-24, 24px);
  border-top: 1px solid #ffffff0f;
  flex-shrink: 0;
  display: flex;
}

.AssistantComposer-module__gbTaxa__input {
  min-width: 300px;
  color: inherit;
  resize: none;
  background: #ffffff0a;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  outline: none;
  flex: 1;
  min-height: 52px;
  max-height: 160px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  overflow-y: auto;
}

.AssistantComposer-module__gbTaxa__input:focus {
  border-color: #0078d480;
}

.AssistantComposer-module__gbTaxa__input::placeholder {
  color: #ffffff4d;
}

.AssistantComposer-module__gbTaxa__input:disabled {
  opacity: .5;
}

.AssistantComposer-module__gbTaxa__send {
  color: #fff;
  cursor: pointer;
  background: #0078d4e6;
  border: none;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
}

.AssistantComposer-module__gbTaxa__send:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.AssistantComposer-module__gbTaxa__send:not(:disabled):hover {
  background: #0078d4;
}

.AssistantComposer-module__gbTaxa__srOnly {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

@media (max-width: 768px) {
  .AssistantComposer-module__gbTaxa__composer {
    gap: 4px;
    padding: 8px 12px 12px;
  }

  .AssistantComposer-module__gbTaxa__input {
    border-radius: 8px;
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    font-size: .9rem;
  }

  .AssistantComposer-module__gbTaxa__send {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: .875rem;
  }
}

/* [project]/src/components/assistant/AssistantPanel.module.css [app-client] (css) */
.AssistantPanel-module__Bm8DBW__body {
  flex-direction: column;
  height: 100%;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.AssistantPanel-module__Bm8DBW__closeButton {
  color: #fff9;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  transition: background .15s;
  display: flex;
}

.AssistantPanel-module__Bm8DBW__closeButton:hover {
  color: #ffffffe6;
  background: #ffffff14;
}

/* [project]/src/components/foundation/Surface.module.css [app-client] (css) */
.Surface-module__C79KCa__surface {
  border-radius: var(--radius-medium);
  position: relative;
}

.Surface-module__C79KCa__layer0 {
  background-color: var(--layer-0);
}

.Surface-module__C79KCa__layer1 {
  background-color: var(--layer-1);
}

.Surface-module__C79KCa__layer2 {
  background-color: var(--layer-2);
}

.Surface-module__C79KCa__layer3 {
  background-color: var(--layer-3);
}

.Surface-module__C79KCa__layer4 {
  background-color: var(--layer-4);
}

.Surface-module__C79KCa__layer5 {
  background-color: var(--layer-5);
}

.Surface-module__C79KCa__border1 {
  border: 1px solid var(--layer-1);
}

.Surface-module__C79KCa__border2 {
  border: 1px solid var(--layer-2);
}

.Surface-module__C79KCa__border3 {
  border: 1px solid var(--layer-3);
}

.Surface-module__C79KCa__border4 {
  border: 1px solid var(--layer-4);
}

.Surface-module__C79KCa__border5 {
  border: 1px solid var(--layer-5);
}

/* [project]/src/components/foundation/GlassCard.module.css [app-client] (css) */
.GlassCard-module__oOaNwW__card {
  border-radius: var(--radius-large);
  padding: var(--space-16);
  transition: transform var(--duration-normal) var(--easing-ease), box-shadow var(--duration-normal) var(--easing-ease);
}

.GlassCard-module__oOaNwW__default {
  background-color: var(--layer-2);
  box-shadow: var(--shadow-2);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #ffffff0f;
}

.GlassCard-module__oOaNwW__strong {
  background-color: var(--layer-3);
  box-shadow: var(--shadow-4);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #ffffff1a;
}

[data-theme="light"] .GlassCard-module__oOaNwW__default {
  border-color: #00000014;
}

[data-theme="light"] .GlassCard-module__oOaNwW__strong {
  border-color: #0000001f;
}

.GlassCard-module__oOaNwW__hoverable:hover {
  box-shadow: var(--shadow-8);
  transform: translateY(-1px);
}

/* [project]/src/components/foundation/MetricCard.module.css [app-client] (css) */
.MetricCard-module__v6M9va__metric {
  border-left: 3px solid #0000;
  position: relative;
}

.MetricCard-module__v6M9va__blue {
  border-left-color: var(--atheryon-blue);
}

.MetricCard-module__v6M9va__orange {
  border-left-color: var(--atheryon-orange);
}

.MetricCard-module__v6M9va__green {
  border-left-color: #34d399;
}

.MetricCard-module__v6M9va__red {
  border-left-color: #f87171;
}

.MetricCard-module__v6M9va__inner {
  align-items: flex-start;
  gap: var(--space-12);
  display: flex;
}

.MetricCard-module__v6M9va__icon {
  border-radius: var(--radius-medium);
  background-color: var(--layer-3);
  color: #c0d0e0;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 18px;
  display: flex;
}

.MetricCard-module__v6M9va__content {
  gap: var(--space-2);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.MetricCard-module__v6M9va__label {
  color: #8090a0;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

[data-theme="light"] .MetricCard-module__v6M9va__label {
  color: #607080;
}

.MetricCard-module__v6M9va__value {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

[data-theme="light"] .MetricCard-module__v6M9va__value {
  color: #0a1a2f;
}

.MetricCard-module__v6M9va__trend {
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.MetricCard-module__v6M9va__arrow {
  font-size: 14px;
}

.MetricCard-module__v6M9va__trend-up {
  color: #34d399;
}

.MetricCard-module__v6M9va__trend-down {
  color: #f87171;
}

.MetricCard-module__v6M9va__trend-neutral {
  color: #8090a0;
}

/* [project]/src/components/foundation/Badge.module.css [app-client] (css) */
.Badge-module__Aggq0q__badge {
  border-radius: var(--radius-circular);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}

.Badge-module__Aggq0q__small {
  padding: 2px 6px;
  font-size: 10px;
}

.Badge-module__Aggq0q__medium {
  padding: 4px 10px;
  font-size: 12px;
}

.Badge-module__Aggq0q__blue {
  color: #0a84ff;
  background-color: #0a84ff1a;
}

.Badge-module__Aggq0q__orange {
  color: #f90;
  background-color: #ff99001a;
}

.Badge-module__Aggq0q__green {
  color: #34d399;
  background-color: #34d3991a;
}

.Badge-module__Aggq0q__red {
  color: #f87171;
  background-color: #f871711a;
}

.Badge-module__Aggq0q__neutral {
  color: #8090a0;
  background-color: #c0d0e01a;
}

[data-theme="light"] .Badge-module__Aggq0q__blue {
  color: #005bb8;
  background-color: #0a84ff1a;
}

[data-theme="light"] .Badge-module__Aggq0q__orange {
  color: #cc7a00;
  background-color: #ff99001a;
}

[data-theme="light"] .Badge-module__Aggq0q__green {
  color: #059669;
  background-color: #0596691a;
}

[data-theme="light"] .Badge-module__Aggq0q__red {
  color: #dc2626;
  background-color: #dc26261a;
}

[data-theme="light"] .Badge-module__Aggq0q__neutral {
  color: #607080;
  background-color: #6070801a;
}

/* [project]/src/components/foundation/ProgressBar.module.css [app-client] (css) */
.ProgressBar-module__XtBI4W__wrapper {
  gap: var(--space-6);
  flex-direction: column;
  width: 100%;
  display: flex;
}

.ProgressBar-module__XtBI4W__header {
  justify-content: space-between;
  align-items: baseline;
  display: flex;
}

.ProgressBar-module__XtBI4W__label {
  color: #c0d0e0;
  font-size: 12px;
  font-weight: 500;
}

[data-theme="light"] .ProgressBar-module__XtBI4W__label {
  color: #374a60;
}

.ProgressBar-module__XtBI4W__valueText {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

[data-theme="light"] .ProgressBar-module__XtBI4W__valueText {
  color: #0a1a2f;
}

.ProgressBar-module__XtBI4W__track {
  background-color: var(--layer-3);
  border-radius: var(--radius-circular);
  width: 100%;
  overflow: hidden;
}

.ProgressBar-module__XtBI4W__small {
  height: 4px;
}

.ProgressBar-module__XtBI4W__medium {
  height: 8px;
}

.ProgressBar-module__XtBI4W__large {
  height: 12px;
}

.ProgressBar-module__XtBI4W__fill {
  border-radius: var(--radius-circular);
  height: 100%;
  transition: width var(--duration-slow) var(--easing-decelerate);
  will-change: width;
}

.ProgressBar-module__XtBI4W__blue {
  background-color: var(--atheryon-blue);
}

.ProgressBar-module__XtBI4W__orange {
  background-color: var(--atheryon-orange);
}

.ProgressBar-module__XtBI4W__green {
  background-color: #34d399;
}

.ProgressBar-module__XtBI4W__red {
  background-color: #f87171;
}

/* [project]/src/components/foundation/Gauge.module.css [app-client] (css) */
.Gauge-module__JsA5YG__container {
  align-items: center;
  gap: var(--space-8);
  flex-direction: column;
  display: flex;
  position: relative;
}

.Gauge-module__JsA5YG__svg {
  display: block;
}

.Gauge-module__JsA5YG__progress {
  transition: stroke-dashoffset .8s var(--easing-decelerate);
  will-change: stroke-dashoffset;
}

.Gauge-module__JsA5YG__center {
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.Gauge-module__JsA5YG__value {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

[data-theme="light"] .Gauge-module__JsA5YG__value {
  color: #0a1a2f;
}

.Gauge-module__JsA5YG__label {
  color: #8090a0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

[data-theme="light"] .Gauge-module__JsA5YG__label {
  color: #607080;
}

/* [project]/src/components/foundation/AtheryonButton.module.css [app-client] (css) */
.AtheryonButton-module__JGsQgW__btn {
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  border-radius: var(--radius-medium);
  padding: var(--space-6) var(--space-16);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: transform var(--duration-normal) var(--easing-ease), box-shadow var(--duration-normal) var(--easing-ease), background-color var(--duration-fast) var(--easing-ease);
  border: 1px solid #0000;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.AtheryonButton-module__JGsQgW__btn:focus-visible {
  outline: 2px solid var(--atheryon-blue);
  outline-offset: 2px;
}

.AtheryonButton-module__JGsQgW__btn:hover {
  transform: translateY(-1px);
}

.AtheryonButton-module__JGsQgW__btn:active {
  transform: translateY(0);
}

.AtheryonButton-module__JGsQgW__primary {
  color: #fff;
  background-color: #f90;
  border-color: #f90;
}

.AtheryonButton-module__JGsQgW__primary:hover {
  box-shadow: var(--shadow-4);
  background-color: #e68a00;
}

.AtheryonButton-module__JGsQgW__brand {
  color: #fff;
  background-color: #0a84ff;
  border-color: #0a84ff;
}

.AtheryonButton-module__JGsQgW__brand:hover {
  box-shadow: var(--shadow-4);
  background-color: #0070e0;
}

.AtheryonButton-module__JGsQgW__subtle {
  color: #c0d0e0;
  background-color: #0000;
}

.AtheryonButton-module__JGsQgW__subtle:hover {
  background-color: var(--layer-3);
  box-shadow: var(--shadow-2);
}

[data-theme="light"] .AtheryonButton-module__JGsQgW__subtle {
  color: #374a60;
}

.AtheryonButton-module__JGsQgW__outline {
  color: var(--atheryon-blue);
  border-color: var(--atheryon-blue);
  background-color: #0000;
}

.AtheryonButton-module__JGsQgW__outline:hover {
  box-shadow: var(--shadow-2);
  background-color: #0a84ff14;
}

.AtheryonButton-module__JGsQgW__ghost {
  color: var(--atheryon-blue);
  background-color: #0000;
  border-color: #0000;
}

.AtheryonButton-module__JGsQgW__ghost:hover {
  background-color: #0a84ff0f;
}

/* [project]/src/components/foundation/CodeBlock.module.css [app-client] (css) */
.CodeBlock-module__GGPZEa__block {
  background-color: var(--layer-2);
  border-radius: var(--radius-large);
  font-family: var(--font-mono);
  border: 1px solid #ffffff0f;
  font-size: 13px;
  line-height: 1.6;
  overflow: hidden;
}

[data-theme="light"] .CodeBlock-module__GGPZEa__block {
  border-color: #00000014;
}

.CodeBlock-module__GGPZEa__header {
  padding: var(--space-8) var(--space-12);
  background-color: var(--layer-3);
  border-bottom: 1px solid #ffffff0f;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

[data-theme="light"] .CodeBlock-module__GGPZEa__header {
  border-bottom-color: #00000014;
}

.CodeBlock-module__GGPZEa__headerLeft {
  align-items: center;
  gap: var(--space-8);
  display: flex;
}

.CodeBlock-module__GGPZEa__title {
  color: #c0d0e0;
  font-size: 12px;
  font-weight: 600;
}

[data-theme="light"] .CodeBlock-module__GGPZEa__title {
  color: #374a60;
}

.CodeBlock-module__GGPZEa__copyBtn {
  font-family: var(--font-sans);
  color: var(--atheryon-blue);
  cursor: pointer;
  padding: var(--space-2) var(--space-8);
  border-radius: var(--radius-small);
  transition: background-color var(--duration-fast) var(--easing-ease);
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 600;
}

.CodeBlock-module__GGPZEa__copyBtn:hover {
  background-color: #0a84ff1a;
}

.CodeBlock-module__GGPZEa__codeArea {
  padding: var(--space-12);
  overflow: auto;
}

.CodeBlock-module__GGPZEa__pre {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}

.CodeBlock-module__GGPZEa__table {
  border-collapse: collapse;
  width: 100%;
}

.CodeBlock-module__GGPZEa__lineNo {
  width: 1%;
  padding-right: var(--space-12);
  text-align: right;
  color: #8090a0;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  vertical-align: top;
  opacity: .5;
}

.CodeBlock-module__GGPZEa__lineCode {
  white-space: pre-wrap;
  word-break: break-word;
}

.ath-hl-string {
  color: #34d399;
}

.ath-hl-number {
  color: #fbbf24;
}

.ath-hl-keyword {
  color: #a78bfa;
}

.ath-hl-attr {
  color: #60a5fa;
}

.ath-hl-comment {
  color: #8090a0;
  font-style: italic;
}

[data-theme="light"] .ath-hl-string {
  color: #059669;
}

[data-theme="light"] .ath-hl-number {
  color: #d97706;
}

[data-theme="light"] .ath-hl-keyword {
  color: #7c3aed;
}

[data-theme="light"] .ath-hl-attr {
  color: #2563eb;
}

[data-theme="light"] .ath-hl-comment {
  color: #607080;
}

/* [project]/src/components/assistant/AssistantCitations.module.css [app-client] (css) */
.AssistantCitations-module__ZPszFq__panel {
  padding: var(--space-24, 24px) var(--space-16, 16px);
  border-left: 1px solid #ffffff0f;
  height: 100%;
}

.AssistantCitations-module__ZPszFq__heading {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff6;
  margin: 0 0 var(--space-16, 16px);
  font-size: .8rem;
  font-weight: 600;
}

.AssistantCitations-module__ZPszFq__empty {
  color: #ffffff4d;
  font-size: .8rem;
  line-height: 1.5;
}

.AssistantCitations-module__ZPszFq__list {
  gap: var(--space-12, 12px);
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.AssistantCitations-module__ZPszFq__item {
  padding: var(--space-12, 12px);
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 8px;
}

.AssistantCitations-module__ZPszFq__source {
  color: #0078d4cc;
  margin-bottom: 4px;
  font-size: .7rem;
  font-weight: 600;
}

.AssistantCitations-module__ZPszFq__title {
  margin-bottom: 4px;
  font-size: .8rem;
  font-weight: 500;
}

.AssistantCitations-module__ZPszFq__excerpt {
  color: #ffffff80;
  font-size: .75rem;
  line-height: 1.4;
}

.AssistantCitations-module__ZPszFq__relevance {
  color: #ffffff40;
  margin-top: 6px;
  font-size: .65rem;
}

/* [project]/src/components/afim/AfimPanel.module.css [app-client] (css) */
.AfimPanel-module__qnYMvq__drawerBody {
  flex-direction: column;
  height: 100%;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.AfimPanel-module__qnYMvq__fullscreenOverlay {
  z-index: 1100;
  background: var(--colorNeutralBackground1, #1b1b1f);
  display: flex;
  position: fixed;
  inset: 0;
}

.AfimPanel-module__qnYMvq__fullscreenInner {
  flex: 1;
  height: 100%;
  display: flex;
}

.AfimPanel-module__qnYMvq__fullscreenMain {
  border-right: 1px solid #ffffff0f;
  flex-direction: column;
  flex: 6;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.AfimPanel-module__qnYMvq__fullscreenSide {
  flex-direction: column;
  flex: 4;
  height: 100%;
  display: flex;
  overflow-y: auto;
}

.AfimPanel-module__qnYMvq__transcriptArea {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.AfimPanel-module__qnYMvq__composerArea {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .AfimPanel-module__qnYMvq__fullscreenInner {
    flex-direction: column;
  }

  .AfimPanel-module__qnYMvq__fullscreenMain {
    border-bottom: 1px solid #ffffff0f;
    border-right: none;
  }

  .AfimPanel-module__qnYMvq__fullscreenSide {
    max-height: 40vh;
  }
}

/* [project]/src/components/afim/AfimFAB.module.css [app-client] (css) */
.AfimFAB-module__PzXQJa__fab {
  z-index: 1000;
  color: #fff;
  letter-spacing: .08em;
  cursor: pointer;
  background: #0078d4e6;
  border: none;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-size: .7rem;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .15s;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 4px 16px #0006, 0 0 0 1px #0078d44d;
}

.AfimFAB-module__PzXQJa__fab:hover {
  background: #0078d4;
  transform: scale(1.06);
  box-shadow: 0 6px 24px #00000080, 0 0 0 1px #0078d480;
}

.AfimFAB-module__PzXQJa__fab:active {
  transform: scale(.97);
}

.AfimFAB-module__PzXQJa__fab:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #0078d4;
}

.AfimFAB-module__PzXQJa__wrapper {
  z-index: 1000;
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.AfimFAB-module__PzXQJa__badge {
  border: 2px solid var(--colorNeutralBackground1, #1b1b1f);
  pointer-events: none;
  background: #e74c3c;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: absolute;
  top: -2px;
  right: -2px;
}

.AfimFAB-module__PzXQJa__pulse {
  animation: 2s ease-in-out infinite AfimFAB-module__PzXQJa__fabPulse;
}

@keyframes AfimFAB-module__PzXQJa__fabPulse {
  0%, 100% {
    box-shadow: 0 4px 16px #0006, 0 0 0 1px #0078d44d, 0 0 #0078d466;
  }

  50% {
    box-shadow: 0 4px 16px #0006, 0 0 0 1px #0078d44d, 0 0 12px 4px #0078d440;
  }
}

@media (prefers-reduced-motion: reduce) {
  .AfimFAB-module__PzXQJa__pulse {
    animation: none;
  }
}

/* [project]/src/components/cross-page/TrayItemCard.module.css [app-client] (css) */
.TrayItemCard-module__amN1qa__card {
  background-color: var(--layer-3);
  border-radius: var(--radius-medium);
  min-width: 180px;
  max-width: 220px;
  transition: transform var(--duration-fast) var(--easing-ease), box-shadow var(--duration-fast) var(--easing-ease);
  border: 1px solid #ffffff0f;
  flex-shrink: 0;
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: hidden;
}

.TrayItemCard-module__amN1qa__card:hover {
  box-shadow: var(--shadow-4);
  transform: translateY(-1px);
}

.TrayItemCard-module__amN1qa__card:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 1px;
}

[data-theme="light"] .TrayItemCard-module__amN1qa__card {
  border-color: #00000014;
}

.TrayItemCard-module__amN1qa__accentStripe {
  background-color: var(--tray-accent, var(--brand-primary));
  flex-shrink: 0;
  width: 3px;
}

.TrayItemCard-module__amN1qa__iconContainer {
  background-color: var(--tray-accent-bg, #ffffff0a);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  display: flex;
}

.TrayItemCard-module__amN1qa__icon {
  font-size: 16px;
  line-height: 1;
}

.TrayItemCard-module__amN1qa__content {
  padding: var(--space-4) var(--space-8);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  display: flex;
  overflow: hidden;
}

.TrayItemCard-module__amN1qa__label {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}

.TrayItemCard-module__amN1qa__summary {
  color: var(--text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11px;
  line-height: 1.3;
  overflow: hidden;
}

.TrayItemCard-module__amN1qa__sourceBadge {
  color: var(--tray-accent, var(--text-tertiary));
  background-color: var(--tray-accent-bg, #ffffff0a);
  border-radius: var(--radius-circular);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: fit-content;
  padding: 1px 5px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  overflow: hidden;
}

.TrayItemCard-module__amN1qa__actions {
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 4px;
  display: flex;
}

.TrayItemCard-module__amN1qa__useButton {
  color: var(--text-secondary);
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--easing-ease), color var(--duration-fast) var(--easing-ease);
  background: none;
  border: 1px solid #ffffff1a;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.TrayItemCard-module__amN1qa__useButton:hover {
  background-color: var(--tray-accent-bg, #ffffff14);
  color: var(--tray-accent, var(--brand-primary));
  border-color: var(--tray-accent, var(--brand-primary));
}

.TrayItemCard-module__amN1qa__useButton:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 1px;
}

[data-theme="light"] .TrayItemCard-module__amN1qa__useButton {
  border-color: #0000001a;
}

.TrayItemCard-module__amN1qa__removeButton {
  color: var(--text-tertiary);
  cursor: pointer;
  border-radius: var(--radius-small);
  transition: color var(--duration-fast) var(--easing-ease);
  background: none;
  border: none;
  padding: 0 2px;
  font-size: 16px;
  line-height: 1;
}

.TrayItemCard-module__amN1qa__removeButton:hover {
  color: #f87171;
}

.TrayItemCard-module__amN1qa__removeButton:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 1px;
}

.TrayItemCard-module__amN1qa__useMenu {
  background-color: var(--layer-3);
  border-radius: var(--radius-medium);
  min-width: 160px;
  box-shadow: var(--shadow-8);
  padding: var(--space-4) 0;
  z-index: 910;
  border: 1px solid #ffffff14;
  position: absolute;
  bottom: 100%;
  right: 0;
}

[data-theme="light"] .TrayItemCard-module__amN1qa__useMenu {
  border-color: #0000001a;
}

.TrayItemCard-module__amN1qa__useMenuItem {
  padding: var(--space-4) var(--space-12);
  color: var(--text-primary);
  white-space: nowrap;
  transition: background-color var(--duration-fast) var(--easing-ease);
  font-size: 12px;
  text-decoration: none;
  display: block;
}

.TrayItemCard-module__amN1qa__useMenuItem:hover {
  background-color: #ffffff0f;
}

[data-theme="light"] .TrayItemCard-module__amN1qa__useMenuItem:hover {
  background-color: #0000000a;
}

.TrayItemCard-module__amN1qa__useMenuItem:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: -2px;
}

/* [project]/src/components/cross-page/WorkspaceTray.module.css [app-client] (css) */
.WorkspaceTray-module__l493CG__tray {
  z-index: 900;
  transition: height var(--duration-normal) var(--easing-decelerate), left var(--duration-slow) var(--easing-decelerate);
  position: fixed;
  bottom: 0;
  left: 240px;
  right: 0;
}

:is(.collapsed ~ .WorkspaceTray-module__l493CG__tray, [data-sidebar-collapsed="true"] .WorkspaceTray-module__l493CG__tray) {
  left: 56px;
}

@media (max-width: 1023px) {
  .WorkspaceTray-module__l493CG__tray {
    left: 0 !important;
  }
}

.WorkspaceTray-module__l493CG__collapsed {
  height: 32px;
}

.WorkspaceTray-module__l493CG__collapsedBar {
  height: 32px;
  padding: 0 var(--space-16);
  background-color: var(--layer-2);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  gap: var(--space-8);
  border-top: 1px solid #ffffff0f;
  display: flex;
}

[data-theme="light"] .WorkspaceTray-module__l493CG__collapsedBar {
  border-top-color: #00000014;
}

.WorkspaceTray-module__l493CG__collapsedBar:hover {
  background-color: var(--layer-3);
}

.WorkspaceTray-module__l493CG__collapsedBar:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: -2px;
}

.WorkspaceTray-module__l493CG__collapsedLabel {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
}

.WorkspaceTray-module__l493CG__collapsedIcons {
  gap: 4px;
  display: flex;
}

.WorkspaceTray-module__l493CG__typeIcon {
  font-size: 14px;
  line-height: 1;
}

.WorkspaceTray-module__l493CG__expandChevron {
  color: var(--text-tertiary);
  margin-left: auto;
  font-size: 10px;
}

.WorkspaceTray-module__l493CG__expanded {
  height: 120px;
}

.WorkspaceTray-module__l493CG__expandedStrip {
  background-color: var(--layer-2);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #ffffff0f;
  flex-direction: column;
  height: 120px;
  display: flex;
}

[data-theme="light"] .WorkspaceTray-module__l493CG__expandedStrip {
  border-top-color: #00000014;
}

.WorkspaceTray-module__l493CG__expandedHeader {
  padding: var(--space-4) var(--space-16);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.WorkspaceTray-module__l493CG__expandedTitle {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 12px;
  font-weight: 600;
}

.WorkspaceTray-module__l493CG__expandedActions {
  gap: var(--space-8);
  align-items: center;
  display: flex;
}

.WorkspaceTray-module__l493CG__clearButton, .WorkspaceTray-module__l493CG__closeButton {
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-small);
  background: none;
  border: none;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1;
}

.WorkspaceTray-module__l493CG__clearButton:hover, .WorkspaceTray-module__l493CG__closeButton:hover {
  color: var(--text-primary);
  background-color: #ffffff0f;
}

:is([data-theme="light"] .WorkspaceTray-module__l493CG__clearButton:hover, [data-theme="light"] .WorkspaceTray-module__l493CG__closeButton:hover) {
  background-color: #0000000f;
}

.WorkspaceTray-module__l493CG__clearButton:focus-visible, .WorkspaceTray-module__l493CG__closeButton:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 1px;
}

.WorkspaceTray-module__l493CG__itemsScroller {
  gap: var(--space-8);
  padding: 0 var(--space-16) var(--space-8);
  scrollbar-width: thin;
  scrollbar-color: var(--layer-4) transparent;
  flex: 1;
  align-items: stretch;
  display: flex;
  overflow: auto hidden;
}

.WorkspaceTray-module__l493CG__itemsScroller::-webkit-scrollbar {
  height: 4px;
}

.WorkspaceTray-module__l493CG__itemsScroller::-webkit-scrollbar-thumb {
  background: var(--layer-4);
  border-radius: 2px;
}

.WorkspaceTray-module__l493CG__itemsScroller::-webkit-scrollbar-track {
  background: none;
}

/* [project]/src/components/notifications/NotificationDrawer.module.css [app-client] (css) */
.NotificationDrawer-module__iWxDnW__overlay {
  z-index: 900;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--easing-ease);
  pointer-events: none;
  background: #00000059;
  position: fixed;
  inset: 0;
}

.NotificationDrawer-module__iWxDnW__overlay.NotificationDrawer-module__iWxDnW__open {
  opacity: 1;
  pointer-events: auto;
}

.NotificationDrawer-module__iWxDnW__drawer {
  z-index: 901;
  background-color: var(--layer-1);
  width: 320px;
  max-width: 100vw;
  box-shadow: var(--shadow-28);
  transition: transform var(--duration-slow) var(--easing-decelerate);
  border-left: 1px solid #ffffff0f;
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
}

.NotificationDrawer-module__iWxDnW__drawer.NotificationDrawer-module__iWxDnW__open {
  transform: translateX(0);
}

[data-theme="light"] .NotificationDrawer-module__iWxDnW__drawer {
  border-left-color: #00000014;
}

.NotificationDrawer-module__iWxDnW__header {
  padding: var(--space-16);
  border-bottom: 1px solid #ffffff0f;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

[data-theme="light"] .NotificationDrawer-module__iWxDnW__header {
  border-bottom-color: #00000014;
}

.NotificationDrawer-module__iWxDnW__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.NotificationDrawer-module__iWxDnW__markAllRead {
  color: var(--atheryon-blue);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
}

.NotificationDrawer-module__iWxDnW__markAllRead:hover {
  text-decoration: underline;
}

.NotificationDrawer-module__iWxDnW__list {
  flex: 1;
  overflow-y: auto;
}

.NotificationDrawer-module__iWxDnW__empty {
  justify-content: center;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-48) var(--space-24);
  color: #c0d0e080;
  flex-direction: column;
  display: flex;
}

[data-theme="light"] .NotificationDrawer-module__iWxDnW__empty {
  color: #374a6080;
}

.NotificationDrawer-module__iWxDnW__emptyIcon {
  opacity: .4;
}

.NotificationDrawer-module__iWxDnW__emptyText {
  font-size: 13px;
  font-weight: 500;
}

.NotificationDrawer-module__iWxDnW__footer {
  padding: var(--space-12);
  border-top: 1px solid #ffffff0f;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

[data-theme="light"] .NotificationDrawer-module__iWxDnW__footer {
  border-top-color: #00000014;
}

.NotificationDrawer-module__iWxDnW__viewAll {
  color: var(--atheryon-blue);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
}

.NotificationDrawer-module__iWxDnW__viewAll:hover {
  text-decoration: underline;
}

.NotificationDrawer-module__iWxDnW__divider {
  height: 1px;
  margin: 0 var(--space-16);
  background: #ffffff0a;
}

[data-theme="light"] .NotificationDrawer-module__iWxDnW__divider {
  background: #0000000d;
}

@media (prefers-reduced-motion: reduce) {
  .NotificationDrawer-module__iWxDnW__overlay, .NotificationDrawer-module__iWxDnW__drawer {
    transition: none;
  }
}

/* [project]/src/components/layout/AppShell.module.css [app-client] (css) */
.AppShell-module__cB5iMW__shell {
  min-height: 100vh;
  display: flex;
}

.AppShell-module__cB5iMW__main {
  min-height: 100vh;
  transition: margin-left var(--duration-slow) var(--easing-decelerate);
  flex-direction: column;
  flex: 1;
  margin-left: 240px;
  display: flex;
}

.AppShell-module__cB5iMW__main.AppShell-module__cB5iMW__collapsed {
  margin-left: 56px;
}

@media (max-width: 1023px) {
  .AppShell-module__cB5iMW__main, .AppShell-module__cB5iMW__main.AppShell-module__cB5iMW__collapsed {
    margin-left: 0 !important;
  }
}

.AppShell-module__cB5iMW__topBar {
  padding: var(--space-4) var(--space-24) 0 var(--space-24);
  flex-shrink: 0;
}

.AppShell-module__cB5iMW__topBarRow {
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-16);
  display: flex;
}

.AppShell-module__cB5iMW__topBarLeft {
  flex: 1;
  min-width: 0;
}

.AppShell-module__cB5iMW__topBarRight {
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-4);
  flex-shrink: 0;
  display: flex;
}

@media (max-width: 1023px) {
  .AppShell-module__cB5iMW__topBar {
    padding-left: var(--space-16);
    padding-right: var(--space-16);
    padding-top: 56px;
  }
}

.AppShell-module__cB5iMW__content {
  padding: 0 var(--space-24) var(--space-24) var(--space-24);
  flex: 1;
}

@media (max-width: 1023px) {
  .AppShell-module__cB5iMW__content {
    padding: 0 var(--space-16) var(--space-16) var(--space-16);
  }
}

.AppShell-module__cB5iMW__versionStamp {
  color: var(--color-text-tertiary, #ffffff4d);
  pointer-events: none;
  z-index: 1;
  font-family: monospace;
  font-size: 10px;
  position: fixed;
  bottom: 4px;
  right: 8px;
}

/* [project]/src/styles/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --atheryon-blue: #0a84ff;
  --atheryon-orange: #f90;
  --atheryon-light-blue: #4bc0ff;
  --atheryon-navy: #0a1a2f;
  --layer-0: #0a1a2f;
  --layer-1: #0d2240;
  --layer-2: #112a4a;
  --layer-3: #153254;
  --layer-4: #1a3a5e;
  --layer-5: #1f3d63;
  --font-sans: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-mono: "Cascadia Code", "Fira Code", "JetBrains Mono", "Consolas", monospace;
  --shadow-2: 0 1px 2px #0000001f;
  --shadow-4: 0 2px 4px #00000024;
  --shadow-8: 0 4px 8px #00000024;
  --shadow-16: 0 8px 16px #00000024;
  --shadow-28: 0 14px 28px #0000003d;
  --shadow-64: 0 32px 64px #0000003d;
  --duration-ultra-fast: 50ms;
  --duration-faster: .1s;
  --duration-fast: .15s;
  --duration-normal: .2s;
  --duration-gentle: .25s;
  --duration-slow: .3s;
  --duration-slower: .4s;
  --duration-ultra-slow: .5s;
  --easing-ease: cubic-bezier(.33, 0, .67, 1);
  --easing-accelerate: cubic-bezier(.9, .1, 1, .2);
  --easing-decelerate: cubic-bezier(.1, .9, .2, 1);
  --radius-none: 0;
  --radius-small: 2px;
  --radius-medium: 4px;
  --radius-large: 8px;
  --radius-xlarge: 12px;
  --radius-circular: 9999px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-36: 36px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-64: 64px;
}

[data-theme="light"] {
  --layer-0: #fff;
  --layer-1: #f5f7fa;
  --layer-2: #edf1f7;
  --layer-3: #e5ebf3;
  --layer-4: #dde5ef;
  --layer-5: #d5dfeb;
}

html {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

[data-theme="light"] html, html[data-theme="light"] {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

body {
  font-family: var(--font-sans);
  background: var(--layer-0);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

[data-theme="light"] body {
  color: #0a1a2f;
}

code, pre, kbd {
  font-family: var(--font-mono);
}

a {
  color: var(--atheryon-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--atheryon-blue);
  outline-offset: 2px;
}

[data-theme="light"] :focus-visible {
  outline-color: var(--atheryon-navy);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  border-radius: var(--radius-circular);
  background: #ffffff26;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff40;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: #00000026;
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: #00000040;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  animation: fadeUp var(--duration-slow) var(--easing-decelerate) both;
}

.animate-fade-in {
  animation: fadeIn var(--duration-normal) var(--easing-ease) both;
}

.animate-slide-in {
  animation: slideInLeft var(--duration-slow) var(--easing-decelerate) both;
}

/*# sourceMappingURL=src_d30fb45c._.css.map*/