body.lp-pilot-dash-hub {
  --lp-logo-min-width: 136px;
  --lp-logo-clearspace: .75rem;
  --dash-primary: #30398d;
  --dash-navy: #1f2b66;
  --dash-mid: #1a52a8;
  --dash-text: #20263f;
  --dash-muted: #59637c;
  --dash-border: rgba(31, 43, 77, .10);
  --dash-bg: #f5f6fa;
  display: block;
  min-height: 100vh;
  padding: 0;
  overflow-x: hidden;
  background: var(--dash-bg);
  color: var(--dash-text);
}

body.lp-pilot-dash-hub.dash-menu-lock {
  overflow: hidden;
}

body.lp-pilot-dash-hub .lp-header-shell {
  display: none;
}

body.lp-pilot-dash-hub > .lp-footer {
  display: block;
  width: auto;
  margin: 0 0 0 236px;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  background: var(--dash-navy);
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  line-height: 1.35;
  text-align: center;
}

body.lp-pilot-dash-hub main#main-content {
  max-width: none;
  min-height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
}

body.lp-pilot-dash-hub .dash-app {
  min-height: 100vh;
}

body.lp-pilot-dash-hub .dash-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 180;
  display: flex;
  flex-direction: column;
  width: 236px;
  padding: 1rem .9rem .8rem;
  overflow-y: auto;
  overflow-anchor: none;
  scrollbar-gutter: stable;
  border-right: 1px solid var(--dash-border);
  background: #fff;
  box-shadow: 4px 0 20px rgba(31, 43, 77, .04);
}

body.lp-pilot-dash-hub .dash-brand {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: .2rem .55rem .75rem;
}

body.lp-pilot-dash-hub .dash-brand img {
  width: var(--lp-logo-min-width);
  min-width: var(--lp-logo-min-width);
  height: auto;
  filter: none;
}

body.lp-pilot-dash-hub .dash-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: .85rem;
}

body.lp-pilot-dash-hub .dash-nav__group {
  display: flex;
  flex-direction: column;
  gap: .16rem;
}

body.lp-pilot-dash-hub .dash-nav__group h2 {
  margin: 0;
  padding: .25rem .55rem;
  color: #77809a;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.lp-pilot-dash-hub .dash-nav__link {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 37px;
  padding: .5rem .65rem;
  border-radius: 8px;
  color: #3d4868;
  font-size: .79rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}

body.lp-pilot-dash-hub button.dash-nav__link {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

body.lp-pilot-dash-hub .dash-nav__link > i:first-child {
  width: 18px;
  color: var(--dash-navy);
  text-align: center;
}

body.lp-pilot-dash-hub .dash-nav__link span {
  flex: 1;
}

body.lp-pilot-dash-hub .dash-nav__link strong {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #0f5bd8;
  color: #fff;
  font-size: .64rem;
}

body.lp-pilot-dash-hub .dash-nav__link:hover,
body.lp-pilot-dash-hub .dash-nav__link:focus-visible {
  background: rgba(48, 57, 141, .07);
  color: var(--dash-primary);
  outline: none;
}

body.lp-pilot-dash-hub .dash-nav__link.is-active {
  background: var(--dash-primary);
  color: #fff;
  box-shadow: 0 5px 14px rgba(31, 43, 102, .20);
}

body.lp-pilot-dash-hub .dash-nav__link.is-active i {
  color: #fff;
}

body.lp-pilot-dash-hub .dash-nav__link.is-muted {
  opacity: .62;
  cursor: not-allowed;
}

body.lp-pilot-dash-hub button.dash-nav__link.is-muted {
  cursor: pointer;
}

body.lp-pilot-dash-hub [aria-disabled="true"] {
  pointer-events: none;
}

body.lp-pilot-dash-hub .dash-nav__chevron {
  flex: 0;
  font-size: .58rem;
  transition: transform .15s ease;
}

body.lp-pilot-dash-hub .dash-nav__toggle[aria-expanded="false"] .dash-nav__chevron {
  transform: rotate(-90deg);
}

body.lp-pilot-dash-hub .dash-nav__children {
  display: flex;
  flex-direction: column;
  margin: .05rem 0 .25rem 1.7rem;
  padding-left: .75rem;
  border-left: 1px solid rgba(48, 57, 141, .14);
}

body.lp-pilot-dash-hub .dash-nav__children[hidden] {
  display: none;
}

body.lp-pilot-dash-hub .dash-nav__branch-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .3rem .2rem .3rem .65rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #69738e;
  font-family: inherit;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

body.lp-pilot-dash-hub .dash-nav__branch-toggle:hover,
body.lp-pilot-dash-hub .dash-nav__branch-toggle:focus-visible,
body.lp-pilot-dash-hub .dash-nav__branch-toggle.is-active {
  background: rgba(48, 57, 141, .07);
  color: var(--dash-primary);
  outline: none;
}

body.lp-pilot-dash-hub .dash-nav__branch-toggle.is-muted {
  opacity: .62;
  cursor: not-allowed;
}

body.lp-pilot-dash-hub .dash-nav__children--nested {
  margin: .02rem 0 .18rem .55rem;
  padding-left: .65rem;
  border-left-color: rgba(48, 57, 141, .22);
}

body.lp-pilot-dash-hub .dash-nav__children--nested a {
  font-size: .66rem;
}

body.lp-pilot-dash-hub .dash-nav__children--ace {
  margin-left: .42rem;
  padding-left: .55rem;
  border-left-color: rgba(48, 57, 141, .28);
}

body.lp-pilot-dash-hub .dash-nav__children--ace a {
  font-size: .64rem;
}

body.lp-pilot-dash-hub .dash-nav__children--planning {
  margin-left: .42rem;
  padding-left: .55rem;
  border-left-color: rgba(48, 57, 141, .28);
}

body.lp-pilot-dash-hub .dash-nav__children--planning-papers {
  margin-left: .35rem;
  padding-left: .48rem;
}

body.lp-pilot-dash-hub .dash-nav__children--planning a,
body.lp-pilot-dash-hub .dash-nav__children--planning .dash-nav__branch-toggle {
  font-size: .64rem;
}

body.lp-pilot-dash-hub .dash-nav__children--planning-papers a {
  font-size: .62rem;
  line-height: 1.35;
}

body.lp-pilot-dash-hub .dash-nav__children a {
  position: relative;
  padding: .3rem .2rem .3rem .65rem;
  border-radius: 6px;
  color: #69738e;
  font-size: .69rem;
  font-weight: 600;
  text-decoration: none;
}

body.lp-pilot-dash-hub .dash-nav__children a::before {
  position: absolute;
  top: 50%;
  left: -.18rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(48, 57, 141, .34);
  content: "";
  transform: translateY(-50%);
}

body.lp-pilot-dash-hub .dash-nav__children a:hover,
body.lp-pilot-dash-hub .dash-nav__children a:focus-visible {
  background: rgba(48, 57, 141, .07);
  color: var(--dash-primary);
  outline: none;
}

body.lp-pilot-dash-hub .dash-nav__module {
  display: flex;
  flex-direction: column;
}

body.lp-pilot-dash-hub .dash-sidebar__footer {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  margin-top: .8rem;
  padding-top: .65rem;
  border-top: 1px solid var(--dash-border);
}

body.lp-pilot-dash-hub .dash-user {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: .35rem 0;
  padding: .55rem;
  border-top: 1px solid var(--dash-border);
  border-bottom: 1px solid var(--dash-border);
}

body.lp-pilot-dash-hub .dash-user__avatar {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--dash-primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
}

body.lp-pilot-dash-hub .dash-user > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

body.lp-pilot-dash-hub .dash-user strong {
  overflow: hidden;
  color: var(--dash-navy);
  font-size: .72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.lp-pilot-dash-hub .dash-user small {
  color: #79829a;
  font-size: .63rem;
}

body.lp-pilot-dash-hub .dash-nav__link--logout {
  color: #73413d;
}

body.lp-pilot-dash-hub .dash-workspace {
  min-height: 100vh;
  margin-left: 236px;
}

body.lp-pilot-dash-hub .dash-utility {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(280px, 520px) minmax(100px, 1fr);
  align-items: center;
  min-height: 64px;
  padding: .65rem 1.6rem;
  border-bottom: 1px solid var(--dash-border);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

body.lp-pilot-dash-hub .dash-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #707991;
  font-size: .73rem;
}

body.lp-pilot-dash-hub .dash-breadcrumb strong {
  color: #0f5bd8;
}

body.lp-pilot-dash-hub .dash-search {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 39px;
  padding: 0 .8rem;
  border: 1px solid rgba(31, 43, 77, .12);
  border-radius: 9px;
  background: #fafbfe;
  color: #68728b;
}

body.lp-pilot-dash-hub .dash-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #667085;
  font-size: .76rem;
  outline: none;
}

body.lp-pilot-dash-hub .dash-search span {
  padding: .18rem .38rem;
  border-radius: 5px;
  background: rgba(48, 57, 141, .07);
  color: #6b7390;
  font-size: .56rem;
  font-weight: 700;
  text-transform: uppercase;
}

body.lp-pilot-dash-hub .dash-utility__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .45rem;
}

body.lp-pilot-dash-hub .dash-utility__actions a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--dash-navy);
  text-decoration: none;
}

body.lp-pilot-dash-hub .dash-utility__actions a:hover {
  background: rgba(48, 57, 141, .07);
}

body.lp-pilot-dash-hub .dash-utility__actions .dash-profile-chip {
  display: flex;
  width: auto;
  max-width: 185px;
  padding: .22rem .55rem .22rem .24rem;
  gap: .42rem;
}

body.lp-pilot-dash-hub .dash-profile-chip span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--dash-primary);
  color: #fff;
  font-size: .61rem;
  font-weight: 800;
}

body.lp-pilot-dash-hub .dash-profile-chip strong {
  overflow: hidden;
  color: var(--dash-navy);
  font-size: .65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.lp-pilot-dash-hub .dash-content {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.35rem 1.6rem 2rem;
  flex-direction: column;
  gap: 1rem;
}

body.lp-pilot-dash-hub .dash-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 154px;
  padding: 1.4rem 1.7rem;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(118deg, #1f2b66 0%, #30398d 66%, #1a52a8 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(31, 43, 102, .17);
}

body.lp-pilot-dash-hub .dash-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .035);
  clip-path: polygon(72% 0, 100% 0, 100% 100%, 50% 100%);
  content: "";
}

body.lp-pilot-dash-hub .dash-hero > * {
  position: relative;
  z-index: 1;
}

body.lp-pilot-dash-hub .dash-hero__eyebrow {
  display: inline-flex;
  padding: .23rem .58rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 6px;
  background: rgba(255, 255, 255, .09);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .03em;
}

body.lp-pilot-dash-hub .dash-hero h1 {
  margin: .45rem 0 .22rem;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

body.lp-pilot-dash-hub .dash-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: .87rem;
}

body.lp-pilot-dash-hub .dash-hero__meta {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  gap: .8rem;
  color: rgba(255, 255, 255, .93);
  font-size: .75rem;
  font-weight: 600;
}

body.lp-pilot-dash-hub .dash-hero__meta span {
  display: flex;
  align-items: center;
  gap: .55rem;
}

body.lp-pilot-dash-hub .dash-hero__meta .dash-hero__status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .05rem .55rem;
}

body.lp-pilot-dash-hub .dash-hero__status i {
  grid-row: 1 / 3;
}

body.lp-pilot-dash-hub .dash-hero__status strong,
body.lp-pilot-dash-hub .dash-hero__status small {
  line-height: 1.2;
}

body.lp-pilot-dash-hub .dash-hero__status small {
  color: rgba(255, 255, 255, .75);
  font-size: .62rem;
  font-weight: 500;
}

body.lp-pilot-dash-hub .dash-hero__meta .fa-circle {
  color: #5bd185;
  font-size: .55rem;
}

body.lp-pilot-dash-hub .dash-hero__meta .is-warning .fa-circle {
  color: #f7c552;
}

body.lp-pilot-dash-hub .dash-hero__meta .is-danger .fa-circle {
  color: #ff8b82;
}

body.lp-pilot-dash-hub .dashboard-alert {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 1rem;
  border: 1px solid #ebc7c3;
  border-radius: 12px;
  background: #fff0ee;
  color: #823f3a;
}

body.lp-pilot-dash-hub .dashboard-alert__icon {
  color: #a62b24;
  font-size: 1.1rem;
}

body.lp-pilot-dash-hub .dashboard-alert__body {
  flex: 1;
}

body.lp-pilot-dash-hub .dashboard-alert__body strong {
  display: block;
  color: #84251f;
  font-size: .82rem;
}

body.lp-pilot-dash-hub .dashboard-alert__body p {
  margin: .1rem 0 .45rem;
  font-size: .74rem;
}

body.lp-pilot-dash-hub .dashboard-alert__list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: .25rem;
  list-style: none;
}

body.lp-pilot-dash-hub .dashboard-alert__list li {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .7rem;
}

body.lp-pilot-dash-hub .dashboard-alert__badge {
  font-weight: 800;
}

body.lp-pilot-dash-hub .dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}

body.lp-pilot-dash-hub .dash-kpi {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-height: 112px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--dash-border);
  border-radius: 13px;
  background: #fff;
  color: var(--dash-text);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(31, 43, 77, .05);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}

body.lp-pilot-dash-hub .dash-kpi:hover {
  border-color: rgba(48, 57, 141, .24);
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(31, 43, 77, .09);
}

body.lp-pilot-dash-hub .dash-kpi__icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: #eef4ff;
  color: #1956c8;
  font-size: 1.2rem;
}

body.lp-pilot-dash-hub .dash-kpi__icon.is-warning {
  background: #fff4df;
  color: #a76700;
}

body.lp-pilot-dash-hub .dash-kpi__icon.is-success {
  background: #edf9f0;
  color: #207245;
}

body.lp-pilot-dash-hub .dash-kpi > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

body.lp-pilot-dash-hub .dash-kpi strong {
  color: var(--dash-navy);
  font-size: 1.75rem;
  line-height: 1;
}

body.lp-pilot-dash-hub .dash-kpi b {
  margin-top: .25rem;
  font-size: .72rem;
}

body.lp-pilot-dash-hub .dash-kpi small {
  margin-top: .2rem;
  color: #1556c4;
  font-size: .63rem;
}

body.lp-pilot-dash-hub .dash-operational {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(290px, .95fr);
  gap: 1rem;
}

body.lp-pilot-dash-hub .dash-panel,
body.lp-pilot-dash-hub .dash-access,
body.lp-pilot-dash-hub .dash-control-internal {
  padding: 1rem 1.1rem;
  border: 1px solid var(--dash-border);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(31, 43, 77, .05);
}

body.lp-pilot-dash-hub .dash-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .8rem;
}

body.lp-pilot-dash-hub .dash-panel__head h2 {
  margin: 0;
  color: var(--dash-navy);
  font-size: .95rem;
  font-weight: 800;
}

body.lp-pilot-dash-hub .dash-panel__head p {
  margin: .16rem 0 0;
  color: var(--dash-muted);
  font-size: .68rem;
}

body.lp-pilot-dash-hub .dash-panel__head > a {
  color: #0758d2;
  font-size: .65rem;
  font-weight: 700;
  text-decoration: none;
}

body.lp-pilot-dash-hub .dash-flow__steps {
  display: grid;
  grid-template-columns: minmax(95px, 1fr) auto minmax(95px, 1fr) auto minmax(110px, 1.15fr) auto minmax(95px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: .35rem;
}

body.lp-pilot-dash-hub .dash-flow__steps > a {
  display: flex;
  min-height: 132px;
  padding: .75rem .45rem;
  border: 1px solid rgba(48, 57, 141, .13);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  color: var(--dash-text);
  text-align: center;
  text-decoration: none;
}

body.lp-pilot-dash-hub .dash-flow__steps > a > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: #eef4ff;
  color: #1557c9;
  font-size: 1.05rem;
}

body.lp-pilot-dash-hub .dash-flow__steps > a strong {
  font-size: .69rem;
}

body.lp-pilot-dash-hub .dash-flow__steps > a small {
  padding: .19rem .38rem;
  border-radius: 5px;
  background: #f3f5fb;
  color: #57617a;
  font-size: .56rem;
  font-weight: 700;
}

body.lp-pilot-dash-hub .dash-flow__steps > a:hover {
  background: rgba(48, 57, 141, .025);
}

body.lp-pilot-dash-hub .dash-flow__steps > i {
  color: #8190ad;
  font-size: .62rem;
}

body.lp-pilot-dash-hub .dash-pending__list {
  display: flex;
  flex-direction: column;
  gap: .42rem;
}

body.lp-pilot-dash-hub .dash-pending__list > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .65rem;
  min-height: 55px;
  padding: .55rem .65rem;
  border: 1px solid rgba(31, 43, 77, .08);
  border-radius: 9px;
  color: var(--dash-text);
  text-decoration: none;
}

body.lp-pilot-dash-hub .dash-pending__list > a > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
  color: #1557c9;
}

body.lp-pilot-dash-hub .dash-pending__list > a > i.is-warning {
  background: #fff3dc;
  color: #a76700;
}

body.lp-pilot-dash-hub .dash-pending__list > a > i.is-danger {
  background: #ffeded;
  color: #b42318;
}

body.lp-pilot-dash-hub .dash-pending__list span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

body.lp-pilot-dash-hub .dash-pending__list strong {
  overflow: hidden;
  font-size: .67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.lp-pilot-dash-hub .dash-pending__list small {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem;
  margin-top: .16rem;
  color: #69738d;
  font-size: .59rem;
}

body.lp-pilot-dash-hub .dash-pending__list small em {
  padding: .12rem .3rem;
  border-radius: 4px;
  background: #f2f4f8;
  color: #626c84;
  font-style: normal;
  font-weight: 650;
}

body.lp-pilot-dash-hub .dash-pending__list small em.is-high {
  background: #fff1ef;
  color: #a62b24;
}

body.lp-pilot-dash-hub .dash-pending__list b {
  min-width: 54px;
  padding: .28rem .45rem;
  border: 1px solid #1762d0;
  border-radius: 6px;
  color: #0758d2;
  font-size: .58rem;
  text-align: center;
}

body.lp-pilot-dash-hub .dash-pending__empty {
  margin: 0;
  padding: 1rem;
  color: #6c7690;
  font-size: .7rem;
  text-align: center;
}

body.lp-pilot-dash-hub .dash-access__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

body.lp-pilot-dash-hub .dash-access__grid > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  min-height: 82px;
  padding: .75rem .85rem;
  border: 1px solid rgba(31, 43, 77, .09);
  border-radius: 10px;
  color: var(--dash-text);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}

body.lp-pilot-dash-hub .dash-access__grid > a > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 10px;
  background: var(--dash-primary);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 5px 13px rgba(31, 43, 102, .18);
}

body.lp-pilot-dash-hub .dash-access__grid > a span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

body.lp-pilot-dash-hub .dash-access__grid > a strong {
  color: var(--dash-navy);
  font-size: .77rem;
}

body.lp-pilot-dash-hub .dash-access__grid > a small {
  margin-top: .12rem;
  color: var(--dash-muted);
  font-size: .62rem;
  line-height: 1.35;
}

body.lp-pilot-dash-hub .dash-access__grid > a > b {
  color: var(--dash-primary);
  font-size: .62rem;
}

body.lp-pilot-dash-hub .dash-access__grid > a:hover {
  border-color: rgba(48, 57, 141, .28);
  box-shadow: 0 7px 18px rgba(31, 43, 77, .08);
}

body.lp-pilot-dash-hub .dash-access__grid > a.is-featured {
  border-color: #1557d2;
  box-shadow: 0 0 0 1px rgba(21, 87, 210, .22);
}

body.lp-pilot-dash-hub .dash-access__grid > a.is-muted {
  opacity: .66;
}

body.lp-pilot-dash-hub .dash-control-internal > .dash-panel__head > span {
  padding: .24rem .45rem;
  border-radius: 6px;
  background: #fff4e5;
  color: #9a5b00;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.lp-pilot-dash-hub .dash-control-internal > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

body.lp-pilot-dash-hub .dash-control-internal > div:last-child > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .7rem;
  padding: .8rem;
  border: 1px solid rgba(48, 57, 141, .11);
  border-radius: 10px;
  color: var(--dash-text);
  text-decoration: none;
}

body.lp-pilot-dash-hub .dash-control-internal > div:last-child > a > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 9px;
  background: rgba(48, 57, 141, .08);
  color: var(--dash-primary);
}

body.lp-pilot-dash-hub .dash-control-internal > div:last-child > a span {
  display: flex;
  flex-direction: column;
}

body.lp-pilot-dash-hub .dash-control-internal > div:last-child > a strong {
  color: var(--dash-navy);
  font-size: .76rem;
}

body.lp-pilot-dash-hub .dash-control-internal > div:last-child > a small {
  color: var(--dash-muted);
  font-size: .62rem;
}

body.lp-pilot-dash-hub .dash-control-internal > div:last-child > a b {
  padding: .28rem .46rem;
  border-radius: 6px;
  background: rgba(48, 57, 141, .07);
  color: var(--dash-primary);
  font-size: .58rem;
}

body.lp-pilot-dash-hub .dash-mobile-menu,
body.lp-pilot-dash-hub .dash-sidebar-backdrop {
  display: none;
}

@media (max-width: 1180px) {
  body.lp-pilot-dash-hub .dash-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.lp-pilot-dash-hub .dash-operational {
    grid-template-columns: 1fr;
  }

  body.lp-pilot-dash-hub .dash-access__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.lp-pilot-dash-hub {
    --lp-logo-min-width: 128px;
    --lp-logo-clearspace: .625rem;
  }

  body.lp-pilot-dash-hub .dash-sidebar {
    transform: translateX(-105%);
    transition: transform .2s ease;
  }

  body.lp-pilot-dash-hub .dash-app.is-sidebar-open .dash-sidebar {
    transform: translateX(0);
  }

  body.lp-pilot-dash-hub .dash-workspace {
    margin-left: 0;
  }

  body.lp-pilot-dash-hub > .lp-footer {
    margin-left: 0;
  }

  body.lp-pilot-dash-hub .dash-mobile-menu {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 175;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--dash-border);
    border-radius: 8px;
    background: #fff;
    color: var(--dash-navy);
    box-shadow: 0 4px 12px rgba(31, 43, 77, .1);
  }

  body.lp-pilot-dash-hub .dash-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 170;
    border: 0;
    background: rgba(31, 43, 77, .42);
  }

  body.lp-pilot-dash-hub .dash-app.is-sidebar-open .dash-sidebar-backdrop {
    display: block;
  }

  body.lp-pilot-dash-hub .dash-utility {
    grid-template-columns: 1fr auto;
    padding-left: 4.2rem;
  }

  body.lp-pilot-dash-hub .dash-search {
    display: none;
  }

  body.lp-pilot-dash-hub .dash-profile-chip strong {
    display: none;
  }

  body.lp-pilot-dash-hub .dash-utility__actions .dash-profile-chip {
    padding-right: .24rem;
  }
}

@media (max-width: 680px) {
  body.lp-pilot-dash-hub .dash-content {
    padding: 1rem .8rem 1.5rem;
  }

  body.lp-pilot-dash-hub .dash-breadcrumb {
    display: none;
  }

  body.lp-pilot-dash-hub .dash-utility {
    grid-template-columns: 1fr;
    justify-items: end;
  }

  body.lp-pilot-dash-hub .dash-hero {
    min-height: auto;
    padding: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  body.lp-pilot-dash-hub .dash-hero__meta {
    min-width: 0;
  }

  body.lp-pilot-dash-hub .dash-kpis,
  body.lp-pilot-dash-hub .dash-access__grid,
  body.lp-pilot-dash-hub .dash-control-internal > div:last-child {
    grid-template-columns: 1fr;
  }

  body.lp-pilot-dash-hub .dash-flow__steps {
    grid-template-columns: 1fr;
  }

  body.lp-pilot-dash-hub .dash-flow__steps > a {
    min-height: 92px;
  }

  body.lp-pilot-dash-hub .dash-flow__steps > i {
    transform: rotate(90deg);
    justify-self: center;
  }
}

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