.public-shell {
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(20, 55, 125, 0.14), transparent 60%),
    radial-gradient(820px 520px at 100% 110%, rgba(20, 55, 125, 0.1), transparent 60%),
    linear-gradient(165deg, #fbfcfe 0%, #eef2f8 52%, #e7edf6 100%);
}

.public-shell__frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1160px, calc(100vw - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 56px;
}

/* Vertically center the auth content for a balanced, premium composition.
   margin-block: auto distributes free space without clipping when content
   is taller than the viewport (it simply scrolls). */
.public-shell__frame > main {
  margin-block: auto;
  width: 100%;
}

.public-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding: 10px 14px;
  border: 1px solid rgba(208, 215, 222, 0.72);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
}

.public-header__actions {
  display: flex;
  gap: var(--space-sm);
}

.public-header__brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.public-header__brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo--public {
  height: 30px;
}

.brand-logo--topbar {
  height: 30px;
}

.app-shell {
  background: var(--app-bg);
}

.app-shell__layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  grid-template-rows: var(--topbar-height) minmax(0, 1fr);
  transition: grid-template-columns 160ms ease;
}

.has-collapsed-sidebar .app-shell__layout {
  grid-template-columns: var(--sidebar-collapsed-width) minmax(0, 1fr);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 12px;
  height: var(--topbar-height);
  padding: 0 12px 0 10px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
  backdrop-filter: none;
  box-shadow: 0 1px 2px rgba(13, 36, 83, 0.04);
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
  color: inherit;
  text-decoration: none;
}

.topbar__sidebar-toggle {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
}

.topbar__sidebar-toggle:hover {
  background: var(--surface-hover);
  color: var(--text-strong);
}

.topbar__sidebar-toggle[aria-expanded="false"] {
  background: var(--accent-soft);
  color: var(--accent);
}

.topbar__sidebar-toggle-bars {
  width: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -4px 0 currentColor, 0 4px 0 currentColor;
}

.topbar__brand-tag {
  align-self: center;
  margin-left: 2px;
  padding-left: 10px;
  border-left: 1px solid var(--border-subtle);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
}

.topbar__search .field {
  flex: 0 1 480px;
  width: 100%;
  max-width: 480px;
  min-width: 0;
}

.topbar__search .field input {
  min-height: 32px;
  padding-left: 36px;
  border-color: transparent;
  border-radius: var(--radius-md);
  background-color: var(--surface-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23617086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-position: 12px 50%;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  color: var(--text);
}

.topbar__search .field input:hover {
  border-color: transparent;
  background-color: rgba(9, 30, 66, 0.08);
}

.topbar__search .field input:focus-visible {
  border-color: var(--accent-border);
  background-color: var(--surface);
}

.topbar__search-shortcut {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--muted-strong);
  font: inherit;
  cursor: pointer;
  transition: var(--motion-transition-interactive-fast);
}

.topbar__search-shortcut:hover {
  background: var(--surface-hover);
  color: var(--text-strong);
}

.shell-popover,
.shell-dialog {
  border: 1px solid var(--overlay-border);
  border-radius: var(--overlay-radius);
  background: var(--surface-overlay);
  box-shadow: var(--shadow-overlay);
  backdrop-filter: blur(14px) saturate(1.04);
}

.search-launcher-panel {
  position: absolute;
  top: calc(100% + var(--overlay-gap));
  left: 0;
  z-index: 50;
  width: min(560px, calc(100vw - 220px));
  transform-origin: top left;
  animation: shell-surface-enter var(--motion-duration-overlay-enter) var(--motion-ease-enter);
}

.search-launcher-panel.is-loading {
  overflow: hidden;
}

.search-launcher-panel__body {
  max-height: min(70vh, 620px);
  overflow: auto;
}

.search-launcher-panel__results,
.search-launcher-panel__empty {
  display: grid;
  gap: 12px;
  padding: var(--overlay-padding-lg);
}

.search-launcher-panel__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-launcher-groups,
.search-launcher-empty__groups {
  display: grid;
  gap: 12px;
}

.search-launcher-group {
  display: grid;
  gap: 6px;
}

.search-launcher-group__header,
.search-launcher-empty__header,
.shortcut-help__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.search-launcher-group__header span,
.search-launcher-empty__header span {
  color: var(--muted);
  font-size: 12px;
}

.search-launcher-result {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid var(--overlay-border);
  border-radius: var(--radius-md);
  color: var(--text);
  text-decoration: none;
  background: rgba(250, 251, 252, 0.88);
  transition: var(--motion-transition-row-hover);
}

.search-launcher-result:hover {
  border-color: var(--accent-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-xs);
}

.search-launcher-result:focus-visible,
.topbar__create-popover a:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.search-launcher-skeleton {
  display: grid;
  gap: 10px;
}

.search-launcher-result strong,
.search-launcher-result p {
  margin: 0;
}

.search-launcher-result p {
  color: var(--muted);
  font-size: 13px;
}

.search-launcher-result--best {
  background: linear-gradient(180deg, rgba(126, 165, 143, 0.08), rgba(255, 255, 255, 0.98));
}

.search-launcher-result__actions,
.search-best-result .search-result__actions,
.search-result__actions {
  margin-top: 8px;
}

.search-launcher-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid rgba(9, 30, 66, 0.06);
  color: var(--muted);
  font-size: 12px;
}

.shortcut-help {
  width: min(420px, calc(100vw - 32px));
  padding: 0;
}

.shortcut-help::backdrop {
  background: var(--overlay-backdrop);
}

.shortcut-help__content {
  display: grid;
  gap: 0;
}

.shortcut-help__header {
  padding: var(--overlay-padding-lg);
  border-bottom: 1px solid rgba(9, 30, 66, 0.06);
}

.shortcut-help__heading {
  display: grid;
  gap: 4px;
}

.shortcut-help__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shortcut-help__body {
  display: grid;
  gap: 12px;
  padding: var(--overlay-padding-lg);
}

.shortcut-help__header h2 {
  margin: 0;
}

.shortcut-help__list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.shortcut-help__list div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
}

.shortcut-help__list dt {
  padding: 6px 8px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  color: var(--text-strong);
  font-weight: 700;
  text-align: center;
}

.shortcut-help__list dd {
  margin: 0;
  color: var(--muted-strong);
}

.is-kbd-focus {
  outline: 2px solid var(--accent-border);
  outline-offset: 2px;
}

.topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  flex-wrap: nowrap;
}

.topbar__create-menu {
  position: relative;
}

.topbar__create-menu summary {
  list-style: none;
}

.topbar__create-menu summary::-webkit-details-marker {
  display: none;
}

.topbar__create-trigger {
  min-height: 32px;
  padding-inline: 9px;
}

.topbar__create-menu[open] .topbar__create-trigger {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.topbar__create-popover {
  position: absolute;
  top: calc(100% + var(--overlay-gap));
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 6px;
  transform-origin: top right;
  animation: shell-surface-enter var(--motion-duration-overlay-enter) var(--motion-ease-enter);
}

.topbar__create-popover a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: var(--motion-transition-interactive-fast);
}

.topbar__create-popover a:hover {
  background: rgba(9, 30, 66, 0.04);
}

.topbar__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.topbar__avatar--lg {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.topbar__user-menu {
  position: relative;
  margin-left: 2px;
  padding-left: 6px;
  border-left: 1px solid var(--border-subtle);
}

.topbar__user-menu summary {
  list-style: none;
  cursor: pointer;
}

.topbar__user-menu summary::-webkit-details-marker {
  display: none;
}

.topbar__user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 6px 0 4px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--muted-strong);
}

.topbar__user-trigger:hover {
  background: var(--surface-hover);
}

.topbar__user-menu[open] .topbar__user-trigger {
  background: var(--surface-hover);
  border-color: var(--border-subtle);
}

.topbar__user-caret {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.65;
}

.topbar__user-popover {
  position: absolute;
  top: calc(100% + var(--overlay-gap));
  right: 0;
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 8px;
  transform-origin: top right;
  animation: shell-surface-enter var(--motion-duration-overlay-enter) var(--motion-ease-enter);
}

.topbar__user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.topbar__user-card-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.topbar__user-card-copy strong {
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.topbar__user-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.topbar__user-logout {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--motion-transition-interactive-fast);
}

.topbar__user-logout:hover {
  background: rgba(9, 30, 66, 0.04);
}

.sidebar {
  grid-row: 2;
  min-width: 0;
  border-right: 1px solid var(--sidebar-border);
  background: var(--sidebar-bg);
  padding: 6px 6px 12px;
  overflow-y: auto;
  transition: padding 160ms ease;
}

.sidebar__section {
  display: grid;
  gap: var(--space-050);
  margin-bottom: var(--space-sm);
  padding: 0 var(--space-xs);
  transition: margin-bottom 160ms ease;
}

.sidebar__section-copy {
  margin: 0;
  color: var(--sidebar-muted);
  font-size: var(--font-size-sm);
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-050);
  min-height: 100%;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-group__title {
  margin: 14px 0 3px;
  padding: 0 8px;
  color: var(--sidebar-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  list-style: none;
}

.nav-group__title:first-child {
  margin-top: 2px;
}

.nav-link {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 28px;
  padding: 0 6px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--sidebar-text);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    grid-template-columns 160ms ease,
    padding 160ms ease;
}

.nav-link__icon {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  opacity: 0.7;
  /* Fallback glyph for any nav key without a dedicated icon (overridden per key below). */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3' fill='black' stroke='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3' fill='black' stroke='none'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: opacity 120ms ease;
}

.nav-link__icon--dashboard {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='9' rx='1'/%3E%3Crect x='14' y='3' width='7' height='5' rx='1'/%3E%3Crect x='14' y='12' width='7' height='9' rx='1'/%3E%3Crect x='3' y='16' width='7' height='5' rx='1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='9' rx='1'/%3E%3Crect x='14' y='3' width='7' height='5' rx='1'/%3E%3Crect x='14' y='12' width='7' height='9' rx='1'/%3E%3Crect x='3' y='16' width='7' height='5' rx='1'/%3E%3C/svg%3E");
}

.nav-link__icon--work {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-6l-2 3h-4l-2-3H2'/%3E%3Cpath d='M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-6l-2 3h-4l-2-3H2'/%3E%3Cpath d='M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z'/%3E%3C/svg%3E");
}

.nav-link__icon--commercial {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v16a2 2 0 0 0 2 2h16'/%3E%3Cpath d='m19 9-5 5-4-4-3 3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v16a2 2 0 0 0 2 2h16'/%3E%3Cpath d='m19 9-5 5-4-4-3 3'/%3E%3C/svg%3E");
}

.nav-link__icon--vacancies {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='14' x='2' y='7' rx='2' ry='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='14' x='2' y='7' rx='2' ry='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E");
}

.nav-link__icon--talent_sourcing {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M3 21v-2a4 4 0 0 1 4-4h4'/%3E%3Ccircle cx='17' cy='17' r='3'/%3E%3Cpath d='m21 21-1.9-1.9'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M3 21v-2a4 4 0 0 1 4-4h4'/%3E%3Ccircle cx='17' cy='17' r='3'/%3E%3Cpath d='m21 21-1.9-1.9'/%3E%3C/svg%3E");
}

.nav-link__icon--candidates {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.nav-link__icon--pipeline {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M8 7v7'/%3E%3Cpath d='M12 7v4'/%3E%3Cpath d='M16 7v9'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='2'/%3E%3Cpath d='M8 7v7'/%3E%3Cpath d='M12 7v4'/%3E%3Cpath d='M16 7v9'/%3E%3C/svg%3E");
}

.nav-link__icon--linkedin_sourcing {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'/%3E%3Crect width='4' height='12' x='2' y='9'/%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'/%3E%3Crect width='4' height='12' x='2' y='9'/%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3C/svg%3E");
}

.nav-link__icon--linkedin_commercial_sourcing {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/%3E%3Cpath d='M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2'/%3E%3Cpath d='M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2'/%3E%3Cpath d='M10 6h4'/%3E%3Cpath d='M10 10h4'/%3E%3Cpath d='M10 14h4'/%3E%3Cpath d='M10 18h4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/%3E%3Cpath d='M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2'/%3E%3Cpath d='M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2'/%3E%3Cpath d='M10 6h4'/%3E%3Cpath d='M10 10h4'/%3E%3Cpath d='M10 14h4'/%3E%3Cpath d='M10 18h4'/%3E%3C/svg%3E");
}

.nav-link__icon--reports {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M16 13H8'/%3E%3Cpath d='M16 17H8'/%3E%3Cpath d='M10 9H8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v4a2 2 0 0 0 2 2h4'/%3E%3Cpath d='M16 13H8'/%3E%3Cpath d='M16 17H8'/%3E%3Cpath d='M10 9H8'/%3E%3C/svg%3E");
}

.nav-link__icon--activity {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2'/%3E%3C/svg%3E");
}

.nav-link__icon--automations {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13a8 8 0 0 1 7 7 6 6 0 0 0 3-5 9 9 0 0 0 6-8 3 3 0 0 0-3-3 9 9 0 0 0-8 6 6 6 0 0 0-5 3'/%3E%3Cpath d='M7 14a6 6 0 0 0-3 6 6 6 0 0 0 6-3'/%3E%3Ccircle cx='15' cy='9' r='1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13a8 8 0 0 1 7 7 6 6 0 0 0 3-5 9 9 0 0 0 6-8 3 3 0 0 0-3-3 9 9 0 0 0-8 6 6 6 0 0 0-5 3'/%3E%3Cpath d='M7 14a6 6 0 0 0-3 6 6 6 0 0 0 6-3'/%3E%3Ccircle cx='15' cy='9' r='1'/%3E%3C/svg%3E");
}

.nav-link__icon--settings {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.nav-link__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-hover);
  color: var(--text-strong);
}

.nav-link:hover .nav-link__icon {
  opacity: 0.9;
}

.nav-link.is-active {
  border-color: rgba(20, 55, 125, 0.18);
  background: var(--sidebar-active);
  color: var(--accent);
  box-shadow: inset 2px 0 0 var(--accent);
}

.nav-link.is-active .nav-link__icon {
  opacity: 1;
}

.nav-link--secondary {
  color: var(--muted-strong);
}

.has-collapsed-sidebar .sidebar {
  padding-inline: 6px;
}

.has-collapsed-sidebar .sidebar__section {
  justify-items: center;
  margin-bottom: 6px;
  padding-inline: 0;
}

.has-collapsed-sidebar .sidebar__section .eyebrow,
.has-collapsed-sidebar .sidebar__section-copy,
.has-collapsed-sidebar .nav-link__label,
.has-collapsed-sidebar .nav-group__title {
  display: none;
}

/* Section headers only make sense in the full vertical sidebar. */
@media (max-width: 1080px) {
  .nav-group__title {
    display: none;
  }
}

.has-collapsed-sidebar .sidebar__nav {
  align-items: stretch;
}

.has-collapsed-sidebar .nav-link {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  padding: 0;
  min-height: 32px;
}

.has-collapsed-sidebar .nav-link__icon {
  width: 18px;
  height: 18px;
}

.app-shell__main {
  grid-row: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  position: relative;
  padding: 10px 16px 16px;
}

.app-shell__nav-progress {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--motion-duration-loading-fade) var(--motion-ease-enter);
}

.app-shell__nav-progress::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 55, 125, 0), rgba(20, 55, 125, 0.84), rgba(20, 55, 125, 0));
  transform: translateX(-120%);
}

.app-canvas {
  position: relative;
  display: grid;
  align-content: start;
  gap: var(--space-md);
  width: 100%;
  margin-inline: auto;
  transition:
    opacity var(--motion-duration-loading-fade) var(--motion-ease-enter),
    transform var(--motion-duration-loading-fade) var(--motion-ease-enter),
    filter var(--motion-duration-loading-fade) var(--motion-ease-enter);
}

.app-canvas::before,
.app-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-duration-loading-fade) var(--motion-ease-enter);
}

.app-canvas::before {
  inset: 0 auto auto 0;
  width: min(680px, calc(100% - 24px));
  height: 180px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(9, 30, 66, 0.06), rgba(9, 30, 66, 0.06)) 0 0 / 32% 12px no-repeat,
    linear-gradient(rgba(9, 30, 66, 0.05), rgba(9, 30, 66, 0.05)) 0 28px / 68% 10px no-repeat,
    linear-gradient(rgba(9, 30, 66, 0.04), rgba(9, 30, 66, 0.04)) 0 54px / 100% 48px no-repeat,
    linear-gradient(rgba(9, 30, 66, 0.04), rgba(9, 30, 66, 0.04)) 0 116px / 100% 48px no-repeat;
}

.app-canvas::after {
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
}

.has-collapsed-sidebar .app-canvas {
  width: 100%;
  max-width: none;
}

.app-shell__main.is-transitioning .app-shell__nav-progress {
  opacity: 1;
}

.app-shell__main.is-transitioning .app-shell__nav-progress::after {
  animation: app-shell-nav-progress 980ms var(--motion-ease-standard) infinite;
}

.app-shell__main.is-transitioning .app-canvas {
  opacity: 0.7;
  transform: translateY(var(--motion-distance-panel-slide));
  filter: saturate(0.92);
}

.app-shell__main.is-transitioning .app-canvas.is-loading::before {
  opacity: 1;
}

.app-shell__main.is-transitioning .app-canvas.is-loading::after {
  opacity: 0.7;
  animation: skeleton-sheen 1600ms linear infinite;
}

.app-shell__main.is-settling .app-canvas {
  animation: app-canvas-settle var(--motion-duration-interactive-normal) var(--motion-ease-enter);
}

@keyframes app-shell-nav-progress {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

@keyframes app-canvas-settle {
  0% {
    opacity: 0.82;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast-region {
  position: fixed;
  top: calc(var(--topbar-height) + 10px);
  right: 16px;
  z-index: 24;
  width: min(400px, calc(100vw - 32px));
  margin: 0;
  pointer-events: none;
}

.toast-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.toast-slot {
  width: 100%;
  max-height: 260px;
  margin: 0 0 8px;
  overflow: clip;
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity var(--motion-duration-overlay-exit) var(--motion-ease-exit),
    transform var(--motion-duration-overlay-exit) var(--motion-ease-exit),
    max-height var(--motion-duration-overlay-exit) var(--motion-ease-exit),
    margin var(--motion-duration-overlay-exit) var(--motion-ease-exit);
  animation: toast-enter var(--motion-duration-overlay-enter) var(--motion-ease-enter);
}

.toast-slot:last-child {
  margin-bottom: 0;
}

.toast-slot.is-dismissing {
  opacity: 0;
  transform: translate3d(10px, -2px, 0);
  max-height: 0;
  margin-bottom: 0;
  pointer-events: none;
}

.toast {
  position: relative;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  min-height: 56px;
  padding: 11px 12px 11px 14px;
  overflow: hidden;
  border: 1px solid rgba(20, 55, 125, 0.12);
  border-radius: var(--overlay-radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(9, 30, 66, 0.12), 0 1px 0 rgba(9, 30, 66, 0.04);
}

.toast::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--accent);
}

.toast__icon {
  position: relative;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border-radius: 999px;
  background: rgba(20, 55, 125, 0.1);
}

.toast__icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: rgba(20, 55, 125, 0.74);
}

.toast__content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.toast__content p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.45;
}

.toast__eyebrow {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.toast__dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  transition: var(--motion-transition-interactive-fast);
}

.toast__dismiss:hover {
  background: rgba(20, 55, 125, 0.08);
  color: var(--accent);
}

.toast__dismiss:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes shell-surface-enter {
  0% {
    opacity: 0;
    transform: translateY(var(--motion-distance-panel-slide));
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-enter {
  0% {
    opacity: 0;
    transform: translate3d(12px, -2px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.commercial-pagination-surface {
  padding: 14px 16px;
}

.commercial-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.commercial-pagination__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.toast--success {
  border-color: rgba(20, 55, 125, 0.18);
  background: linear-gradient(90deg, rgba(20, 55, 125, 0.055), rgba(255, 255, 255, 0.98) 36%);
}

.toast-slot--success .toast__icon {
  background: rgba(20, 55, 125, 0.12);
}

.toast-slot--success .toast__icon::after {
  background: rgba(20, 55, 125, 0.74);
}

.toast--warning {
  border-color: rgba(154, 103, 0, 0.18);
  background: rgba(255, 250, 242, 0.98);
}

.toast--warning::before {
  background: var(--warning);
}

.toast--warning .toast__eyebrow {
  color: var(--warning);
}

.toast-slot--warning .toast__icon {
  background: rgba(154, 103, 0, 0.14);
}

.toast-slot--warning .toast__icon::after {
  background: rgba(154, 103, 0, 0.72);
}

.toast--error {
  border-color: rgba(201, 55, 44, 0.18);
  background: rgba(255, 248, 247, 0.98);
}

.toast--error::before {
  background: var(--danger);
}

.toast--error .toast__eyebrow {
  color: var(--danger);
}

.toast-slot--error .toast__icon {
  background: rgba(201, 55, 44, 0.14);
}

.toast-slot--error .toast__icon::after {
  background: rgba(201, 55, 44, 0.72);
}

.toast-slot--info .toast__icon {
  background: rgba(20, 55, 125, 0.14);
}

.toast-slot--info .toast__icon::after {
  background: rgba(20, 55, 125, 0.72);
}

.content-card,
.product-surface {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-card {
  padding: 0;
}

@media (max-width: 1080px) {
  .app-shell__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    transition: none;
  }

  .has-collapsed-sidebar .app-shell__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    grid-template-columns: 1fr;
    height: auto;
    padding: 10px 12px;
  }

  .topbar__left {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .topbar__brand {
    flex: 1 1 auto;
    min-height: 36px;
  }

  .public-header {
    flex-direction: column;
    align-items: stretch;
  }

  .public-header__actions {
    justify-content: flex-start;
  }

  .topbar__right {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }

  .sidebar {
    grid-row: 2;
    border-right: 0;
    border-bottom: 1px solid var(--sidebar-border);
    overflow-x: auto;
    overflow-y: hidden;
  }

  .has-collapsed-sidebar .sidebar {
    display: none;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .app-shell__main {
    grid-row: 3;
    padding: var(--space-md);
  }

  .has-collapsed-sidebar .app-shell__main {
    grid-row: 2;
  }
}

@media (min-width: 721px) and (max-width: 1080px) {
  .app-shell__layout {
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
    grid-template-rows: var(--topbar-height) minmax(0, 1fr);
  }

  .has-collapsed-sidebar .app-shell__layout {
    grid-template-columns: var(--sidebar-collapsed-width) minmax(0, 1fr);
  }

  .topbar {
    grid-template-columns: auto minmax(220px, 1fr) auto;
    height: var(--topbar-height);
    gap: 10px;
    padding: 0 10px;
  }

  .topbar__brand {
    flex: 0 1 auto;
    min-height: 0;
  }

  .topbar__search .field {
    width: min(360px, 100%);
  }

  .topbar__right {
    justify-content: flex-end;
    width: auto;
    flex-wrap: nowrap;
  }

  .sidebar,
  .has-collapsed-sidebar .sidebar {
    display: block;
    grid-column: 1;
    grid-row: 2;
    padding: 6px;
    border-right: 1px solid var(--sidebar-border);
    border-bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .sidebar__section {
    display: none;
  }

  .nav-list {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .app-shell__main,
  .has-collapsed-sidebar .app-shell__main {
    grid-column: 2;
    grid-row: 2;
    padding: 10px 12px 16px;
  }
}

@media (max-width: 720px) {
  .public-shell__frame {
    width: min(100vw - 20px, 1160px);
    padding: 16px 0 28px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "left right"
      "search search";
    gap: 6px 8px;
    padding: 6px 10px;
  }

  .topbar__left {
    grid-area: left;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .topbar__sidebar-toggle {
    width: 32px;
    height: 32px;
  }

  .brand-logo--topbar {
    height: 26px;
  }

  .topbar__brand {
    min-height: 32px;
  }

  .topbar__brand-tag {
    display: none;
  }

  .topbar__search {
    grid-area: search;
    order: initial;
    width: 100%;
  }

  .topbar__search .field {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
  }

  .topbar__search .field input {
    min-height: 30px;
  }

  .topbar__search-shortcut {
    display: none;
  }

  .search-launcher-panel {
    position: fixed;
    top: 92px;
    left: 10px;
    right: 10px;
    z-index: 80;
    width: auto;
    max-height: calc(100vh - 104px);
    transform-origin: top center;
  }

  .search-launcher-panel__body {
    max-height: calc(100vh - 116px);
  }

  .topbar__right {
    grid-area: right;
    order: initial;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: auto;
    flex-wrap: nowrap;
  }

  .topbar__right > * {
    flex: 0 1 auto;
  }

  .topbar__create-menu {
    margin-right: 0;
  }

  .topbar__create-popover {
    position: fixed;
    top: 92px;
    left: 10px;
    right: 10px;
    z-index: 80;
    width: auto;
    min-width: 0;
    transform-origin: top left;
  }

  .topbar__create-trigger,
  .topbar__right .button--subtle {
    min-height: 32px;
    padding-inline: 8px;
  }

  .topbar__user-menu {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .topbar__avatar {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .sidebar {
    padding: 6px 10px;
    box-shadow: inset -18px 0 16px -18px rgba(9, 30, 66, 0.52);
    scrollbar-width: none;
  }

  .sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar__section {
    display: none;
  }

  .nav-list {
    flex-wrap: nowrap;
    width: max-content;
  }

  .nav-link {
    grid-template-columns: 16px auto;
    min-height: 34px;
    white-space: nowrap;
  }

  .app-shell__main {
    padding: 10px;
  }

  .app-canvas {
    gap: 12px;
  }

  .toast-stack {
    align-items: stretch;
  }

  .toast-slot {
    width: 100%;
  }

  .toast,
  .inline-message {
    padding: 9px 10px;
  }

  .commercial-pagination-surface {
    padding: 12px;
  }
}

@media (max-width: 560px) {
  .toast-region {
    top: 10px;
    right: 10px;
    width: calc(100vw - 20px);
  }

  .topbar__left {
    align-items: center;
  }

  .topbar__brand {
    min-width: 0;
  }

  .topbar__right {
    justify-content: flex-end;
  }

  .topbar__create-menu {
    margin-right: 0;
  }

  .topbar__user-menu {
    margin-left: 0;
  }
}
