*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.sh-body {
  margin: 0;
  font-family: var(--sh-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--sh-ink);
  background: var(--sh-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

[x-cloak] { display: none !important; }

a { color: var(--sh-secondary); text-decoration: none; }
a:hover { color: var(--sh-primary); }

:focus-visible {
  outline: none;
  box-shadow: var(--sh-focus);
}

.sh-skip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3000;
  background: var(--sh-bg-elevated);
  padding: 0.55rem 0.85rem;
  border-radius: var(--sh-radius-sm);
  box-shadow: var(--sh-shadow);
}

/* ??? Shell ??? */
.sh-app {
  display: grid;
  grid-template-columns: var(--sh-sidebar-w) 1fr;
  min-height: 100vh;
  transition: grid-template-columns var(--sh-transition);
}

.sh-app.is-collapsed {
  grid-template-columns: var(--sh-sidebar-collapsed) 1fr;
}

.sh-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(920px 420px at 100% -10%, rgba(14, 165, 233, 0.08), transparent 55%),
    radial-gradient(760px 380px at -5% 12%, rgba(22, 163, 74, 0.09), transparent 50%),
    radial-gradient(640px 320px at 70% 100%, rgba(37, 99, 235, 0.05), transparent 55%),
    var(--sh-bg);
}

html[data-bs-theme="dark"] .sh-main {
  background:
    radial-gradient(920px 420px at 100% -10%, rgba(56, 189, 248, 0.08), transparent 55%),
    radial-gradient(760px 380px at -5% 12%, rgba(34, 197, 94, 0.08), transparent 50%),
    var(--sh-bg);
}

/* ??? Sidebar ??? */
.sh-sidebar {
  background: var(--sh-sidebar-bg);
  color: var(--sh-sidebar-ink);
  border-right: 1px solid var(--sh-border);
  padding: 1.15rem 0.95rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 1040;
}

.sh-sidebar-nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.sh-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0.45rem 1rem;
  flex: 0 0 auto;
}

.sh-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.sh-brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sh-primary), #4ade80 55%, var(--sh-accent));
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.32);
}

.sh-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.sh-app.is-collapsed .sh-brand-name,
.sh-app.is-collapsed .sh-nav-section,
.sh-app.is-collapsed .sh-nav-label,
.sh-app.is-collapsed .sh-sidebar-fav,
.sh-app.is-collapsed .sh-sidebar-footer,
.sh-app.is-collapsed .sh-collapse-btn .sh-nav-label {
  display: none;
}

.sh-app.is-collapsed .sh-nav-link {
  justify-content: center;
  padding-inline: 0.55rem;
}

.sh-app.is-collapsed .sh-brand {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
}

.sh-app.is-collapsed .sh-brand-link {
  cursor: pointer;
}

.sh-nav-section {
  margin: 1.1rem 0.7rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sh-sidebar-muted);
}

.sh-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.sh-nav-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  color: var(--sh-sidebar-ink);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 650;
  position: relative;
  transition: background var(--sh-transition), color var(--sh-transition), transform var(--sh-transition), box-shadow var(--sh-transition);
}

.sh-nav-link i,
.sh-nav-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.78;
  transition: opacity var(--sh-transition), transform var(--sh-transition);
}

.sh-nav-link:hover,
.sh-nav-link:focus-visible {
  background: var(--sh-sidebar-hover);
  color: var(--sh-primary);
  transform: translateX(2px);
}

.sh-nav-link:hover i,
.sh-nav-link:hover svg,
.sh-nav-link:focus-visible i,
.sh-nav-link:focus-visible svg {
  opacity: 1;
  transform: scale(1.06);
}

.sh-nav-link.is-active {
  background: var(--sh-sidebar-active-bg);
  color: var(--sh-sidebar-active);
  font-weight: 750;
  box-shadow: inset 3px 0 0 var(--sh-sidebar-active);
}

.sh-nav-link.is-active::after {
  content: "";
  position: absolute;
  right: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sh-sidebar-active);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sh-sidebar-active) 18%, transparent);
}

.sh-nav-link.is-active i,
.sh-nav-link.is-active svg { opacity: 1; }

.sh-sidebar-footer {
  margin-top: auto;
  padding: 0.85rem 0.55rem 0.25rem;
  border-top: 1px solid var(--sh-border);
  flex: 0 0 auto;
}

.sh-collapse-btn {
  justify-content: center;
  min-height: 40px;
  padding-inline: 0.55rem;
  flex: 0 0 auto;
}

.sh-app:not(.is-collapsed) .sh-collapse-btn {
  margin-left: auto;
}

.sh-collapse-icon {
  display: inline-grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.sh-collapse-icon svg {
  width: 18px;
  height: 18px;
}

.sh-collapse-icon--open {
  display: none;
}

.sh-app.is-collapsed .sh-collapse-icon--close {
  display: none;
}

.sh-app.is-collapsed .sh-collapse-icon--open {
  display: inline-grid;
}

.sh-app.is-collapsed .sh-collapse-btn {
  padding-inline: 0.55rem;
  width: 100%;
}

.sh-nav-icon {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.sh-nav-icon svg {
  width: 18px;
  height: 18px;
}

/* ??? Topbar ??? */
.sh-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--sh-topbar-h);
  padding: 0.85rem 1.75rem;
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--sh-glass);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 80%, transparent);
}

.sh-navbar-start,
.sh-navbar-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sh-search { position: relative; min-width: min(560px, 52vw); }

.sh-search-wrap { position: relative; }

.sh-search-input {
  border-radius: 14px !important;
  border: 1px solid var(--sh-border) !important;
  background: var(--sh-bg-elevated) !important;
  color: var(--sh-ink) !important;
  padding: 0.7rem 4.5rem 0.7rem 2.7rem !important;
  box-shadow: var(--sh-shadow-soft);
  min-height: 44px;
  font-size: 14.5px !important;
  transition: border-color var(--sh-transition), box-shadow var(--sh-transition) !important;
}

.sh-search-input:focus {
  border-color: var(--sh-primary) !important;
  box-shadow: var(--sh-focus), var(--sh-shadow-soft) !important;
}

.sh-search-wrap .sh-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--sh-muted);
  pointer-events: none;
}

.sh-kbd {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.22rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--sh-border);
  background: var(--sh-surface);
  color: var(--sh-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.sh-search-dropdown,
.sh-command {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 0.55rem);
  background: var(--sh-bg-elevated);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-md);
  box-shadow: var(--sh-shadow-lift);
  max-height: min(440px, 70vh);
  overflow: auto;
  z-index: 50;
  padding: 0.55rem;
}

.sh-search-dropdown:empty { display: none; }

.sh-command-label {
  margin: 0.55rem 0.55rem 0.35rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-command-static .sh-stat-icon {
  width: 2rem;
  height: 2rem;
}

.sh-search-hit-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: background var(--sh-transition), transform var(--sh-transition);
}

.sh-search-hit-link:hover {
  background: var(--sh-sidebar-hover);
  color: inherit;
  transform: translateX(2px);
}

.sh-date-chip {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--sh-radius-pill);
  background: var(--sh-bg-elevated);
  border: 1px solid var(--sh-border);
  color: var(--sh-muted);
  font-size: 13px;
  font-weight: 650;
}

@media (min-width: 1200px) {
  .sh-date-chip { display: inline-flex; }
}

.sh-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transition: transform var(--sh-transition), box-shadow var(--sh-transition), background var(--sh-transition);
}

.sh-icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-shadow-soft);
  background: var(--sh-surface);
}

.sh-icon-btn svg { width: 18px; height: 18px; }

.sh-icon-btn .sh-dot {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sh-danger);
  box-shadow: 0 0 0 2px var(--sh-bg-elevated);
}

.sh-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.55rem 0.25rem 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  cursor: pointer;
  transition: box-shadow var(--sh-transition), transform var(--sh-transition);
}

.sh-profile-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-shadow-soft);
}

.sh-profile-meta {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  padding-right: 0.2rem;
}

.sh-profile-meta strong {
  font-size: 13px;
  font-weight: 750;
}

.sh-profile-meta span {
  font-size: 11.5px;
  color: var(--sh-muted);
}

@media (min-width: 1100px) {
  .sh-profile-meta { display: flex; }
}

/* ??? Buttons ??? */
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.5rem 1.05rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform var(--sh-transition-fast), box-shadow var(--sh-transition), background var(--sh-transition), filter var(--sh-transition), border-color var(--sh-transition);
}

.sh-btn:hover { transform: translateY(-1px); }
.sh-btn:active { transform: translateY(0) scale(0.98); }
.sh-btn.is-loading { pointer-events: none; opacity: 0.72; }
.sh-btn svg { width: 16px; height: 16px; }

.sh-btn-primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--sh-primary) 88%, white), var(--sh-primary));
  color: #fff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.28);
}

.sh-btn-primary:hover { color: #fff; filter: brightness(1.05); box-shadow: 0 10px 24px rgba(16, 185, 129, 0.34); }

.sh-btn-secondary {
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  border-color: var(--sh-border);
  box-shadow: var(--sh-shadow-soft);
}

.sh-btn-outline {
  background: transparent;
  color: var(--sh-ink);
  border-color: var(--sh-border);
}

.sh-btn-outline:hover {
  border-color: color-mix(in srgb, var(--sh-primary) 40%, var(--sh-border));
  background: var(--sh-primary-soft);
}

.sh-btn-danger {
  background: var(--sh-danger);
  color: #fff;
}

.sh-btn-ghost {
  background: transparent;
  color: var(--sh-muted);
  border-color: transparent;
}

.sh-btn-ghost:hover {
  color: var(--sh-ink);
  background: var(--sh-surface);
}

.btn-primary {
  --bs-btn-bg: var(--sh-primary);
  --bs-btn-border-color: var(--sh-primary);
  --bs-btn-hover-bg: color-mix(in srgb, var(--sh-primary) 88%, black);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--sh-primary) 88%, black);
  border-radius: 12px;
  font-weight: 700;
}

.form-control,
.form-select {
  border-radius: 12px;
  min-height: 48px;
  border-color: var(--sh-border);
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  font-size: 15px;
}

.form-floating > .form-control,
.form-floating > .form-select { min-height: 56px; }

.form-control:focus,
.form-select:focus {
  border-color: var(--sh-primary);
  box-shadow: var(--sh-focus);
}

.form-control.is-invalid,
.form-select.is-invalid { border-color: var(--sh-danger); }

.form-control.is-valid,
.form-select.is-valid { border-color: var(--sh-success); }

.invalid-feedback { color: var(--sh-danger); font-size: 13px; }
.valid-feedback { color: var(--sh-success); font-size: 13px; }

.sh-form .form-floating > label { color: var(--sh-muted); }

.sh-input-icon {
  position: relative;
}

.sh-input-icon > i,
.sh-input-icon > svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--sh-muted);
  pointer-events: none;
  z-index: 2;
}

.sh-input-icon .form-control {
  padding-left: 2.6rem;
}

/* ??? Content / typography ??? */
.sh-content {
  padding: 1.15rem 1.5rem 2rem;
  flex: 1;
  animation: sh-fade 220ms var(--sh-ease);
}

.sh-page-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin: 0.15rem 0 1rem;
}

.sh-page-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.sh-page-subtitle {
  margin: 0.45rem 0 0;
  color: var(--sh-muted);
  font-size: 15px;
  max-width: 42rem;
}

.sh-section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.sh-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.sh-muted { color: var(--sh-muted); }
.sh-small { font-size: 14px; }

.sh-breadcrumbs { margin-bottom: 0.2rem; }

.sh-breadcrumbs .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.sh-breadcrumbs .breadcrumb-item a { color: var(--sh-muted); }
.sh-breadcrumbs .breadcrumb-item.active { color: var(--sh-ink); font-weight: 650; }

.sh-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.75rem 1.5rem;
  color: var(--sh-muted);
  font-size: 13px;
}

.sh-page-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* ??? Cards ??? */
.sh-card {
  background: var(--sh-bg-elevated);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow);
  transition: transform var(--sh-transition), box-shadow var(--sh-transition), border-color var(--sh-transition);
  height: fit-content;
  animation: sh-fade var(--sh-transition-slow) both;
}

.sh-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow-hover);
  border-color: color-mix(in srgb, var(--sh-primary) 18%, var(--sh-border));
}

.sh-card-static:hover {
  transform: none;
  box-shadow: var(--sh-shadow);
  border-color: var(--sh-border);
}

.sh-card-header {
  padding: 1.15rem 1.25rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.sh-card-body { padding: 1.15rem 1.25rem 1.25rem; }

.sh-card-header + .sh-card-body { padding-top: 0.85rem; }

.sh-card-sub {
  margin: 0.2rem 0 0;
  color: var(--sh-muted);
  font-size: 13px;
}

.sh-link-quiet {
  color: var(--sh-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.sh-link-quiet:hover { color: var(--sh-primary); }

.sh-panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}

.sh-dash-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}

.sh-dash-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}

.sh-masonry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}

.sh-masonry > .sh-card {
  grid-column: span 4;
}

.sh-masonry > .sh-card:nth-child(1),
.sh-masonry > .sh-card:nth-child(3),
.sh-masonry > .sh-card:nth-child(4) {
  grid-column: span 5;
}

.sh-masonry > .sh-card:nth-child(2),
.sh-masonry > .sh-card:nth-child(6) {
  grid-column: span 4;
}

.sh-masonry > .sh-card:nth-child(5),
.sh-masonry > .sh-card:nth-child(7),
.sh-masonry > .sh-card:nth-child(8) {
  grid-column: span 4;
}

/* ??? KPI ??? */
.sh-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.sh-stat {
  position: relative;
  overflow: hidden;
  background: var(--sh-bg-elevated);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--sh-shadow);
  transition: transform var(--sh-transition), box-shadow var(--sh-transition), border-color var(--sh-transition);
  display: grid;
  gap: 0.85rem;
  animation: sh-fade var(--sh-transition-slow) both;
}

.sh-stat::before {
  content: "";
  position: absolute;
  inset: auto -18% -45% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sh-primary-soft), transparent 70%);
  pointer-events: none;
}

.sh-stat.is-green::before { background: radial-gradient(circle, var(--sh-emerald-soft), transparent 70%); }
.sh-stat.is-blue::before { background: radial-gradient(circle, var(--sh-blue-soft), transparent 70%); }
.sh-stat.is-amber::before { background: radial-gradient(circle, var(--sh-warning-soft), transparent 70%); }
.sh-stat.is-teal::before { background: radial-gradient(circle, var(--sh-success-soft), transparent 70%); }

.sh-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-shadow-hover);
}

.sh-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sh-stat-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 12%, transparent);
  flex: 0 0 auto;
}

.sh-stat-icon svg { width: 17px; height: 17px; }

.sh-stat-icon.is-green { background: var(--sh-primary-soft); color: var(--sh-primary); }
.sh-stat-icon.is-blue { background: var(--sh-secondary-soft); color: var(--sh-secondary); }
.sh-stat-icon.is-amber { background: var(--sh-warning-soft); color: var(--sh-warning); }
.sh-stat-icon.is-teal { background: var(--sh-success-soft); color: var(--sh-success); }
.sh-stat-icon.is-sky { background: var(--sh-accent-soft); color: var(--sh-accent); }
.sh-stat-icon.is-violet { background: var(--sh-violet-soft); color: var(--sh-violet); }
.sh-stat-icon.is-orange { background: var(--sh-orange-soft); color: var(--sh-orange); }
.sh-stat-icon.is-rose { background: var(--sh-rose-soft); color: var(--sh-rose); }

.sh-sparkline {
  width: 88px;
  height: 34px;
  color: var(--sh-primary);
  opacity: 0.95;
}

.sh-stat.is-blue .sh-sparkline { color: var(--sh-secondary); }
.sh-stat.is-amber .sh-sparkline { color: var(--sh-warning); }
.sh-stat.is-teal .sh-sparkline { color: var(--sh-success); }

.sh-stat-label {
  margin: 0;
  color: var(--sh-muted);
  font-size: 13.5px;
  font-weight: 650;
}

.sh-stat-value {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.sh-stat-trend {
  margin: 0.45rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sh-success);
  padding: 0.2rem 0.55rem;
  border-radius: var(--sh-radius-pill);
  background: var(--sh-success-soft);
}

.sh-stat-trend svg { width: 13px; height: 13px; }
.sh-stat-trend.is-flat { color: var(--sh-muted); background: var(--sh-surface); }
.sh-stat-trend.is-down { color: var(--sh-danger); background: var(--sh-danger-soft); }

/* ??? Quick actions ??? */
.sh-quick-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.sh-quick-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--sh-border);
  background: color-mix(in srgb, var(--sh-surface) 40%, var(--sh-bg-elevated));
  color: inherit;
  text-decoration: none;
  min-height: 118px;
  transition: transform var(--sh-transition), box-shadow var(--sh-transition), border-color var(--sh-transition), background var(--sh-transition);
}

.sh-quick-action:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--sh-shadow-hover);
  color: inherit;
}

.sh-quick-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
}

.sh-quick-icon svg { width: 18px; height: 18px; }

.sh-quick-copy {
  display: grid;
  gap: 0.2rem;
}

.sh-quick-copy strong {
  font-size: 14px;
  font-weight: 750;
}

.sh-quick-copy span {
  font-size: 12.5px;
  color: var(--sh-muted);
}

.sh-quick-action.is-emerald .sh-quick-icon { background: var(--sh-emerald-soft); color: var(--sh-emerald); }
.sh-quick-action.is-blue .sh-quick-icon { background: var(--sh-blue-soft); color: var(--sh-blue); }
.sh-quick-action.is-violet .sh-quick-icon { background: var(--sh-violet-soft); color: var(--sh-violet); }
.sh-quick-action.is-orange .sh-quick-icon { background: var(--sh-orange-soft); color: var(--sh-orange); }
.sh-quick-action.is-sky .sh-quick-icon { background: var(--sh-sky-soft); color: var(--sh-sky); }
.sh-quick-action.is-rose .sh-quick-icon { background: var(--sh-rose-soft); color: var(--sh-rose); }

.sh-quick-action.is-emerald:hover { border-color: color-mix(in srgb, var(--sh-emerald) 35%, var(--sh-border)); background: color-mix(in srgb, var(--sh-emerald-soft) 55%, var(--sh-bg-elevated)); }
.sh-quick-action.is-blue:hover { border-color: color-mix(in srgb, var(--sh-blue) 35%, var(--sh-border)); background: color-mix(in srgb, var(--sh-blue-soft) 55%, var(--sh-bg-elevated)); }
.sh-quick-action.is-violet:hover { border-color: color-mix(in srgb, var(--sh-violet) 35%, var(--sh-border)); background: color-mix(in srgb, var(--sh-violet-soft) 55%, var(--sh-bg-elevated)); }
.sh-quick-action.is-orange:hover { border-color: color-mix(in srgb, var(--sh-orange) 35%, var(--sh-border)); background: color-mix(in srgb, var(--sh-orange-soft) 55%, var(--sh-bg-elevated)); }
.sh-quick-action.is-sky:hover { border-color: color-mix(in srgb, var(--sh-sky) 35%, var(--sh-border)); background: color-mix(in srgb, var(--sh-sky-soft) 55%, var(--sh-bg-elevated)); }
.sh-quick-action.is-rose:hover { border-color: color-mix(in srgb, var(--sh-rose) 35%, var(--sh-border)); background: color-mix(in srgb, var(--sh-rose-soft) 55%, var(--sh-bg-elevated)); }

/* ??? Badges ??? */
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.65rem;
  border-radius: var(--sh-radius-pill);
  font-size: 12px;
  font-weight: 750;
  background: var(--sh-surface);
  color: var(--sh-muted);
  text-transform: capitalize;
  border: 1px solid transparent;
  white-space: nowrap;
}

.sh-badge-neutral { background: color-mix(in srgb, var(--sh-surface) 80%, white); color: #475569; }
.sh-badge-success,
.sh-badge-published,
.sh-badge-active,
.sh-badge-issued { background: var(--sh-primary-soft); color: var(--sh-primary); }
.sh-badge-draft { background: var(--sh-surface); color: #64748b; }
.sh-badge-progress,
.sh-badge-in-progress,
.sh-badge-in_progress,
.sh-badge-assigned,
.sh-badge-in_review { background: var(--sh-secondary-soft); color: var(--sh-secondary); }
.sh-badge-completed { background: var(--sh-violet-soft); color: var(--sh-violet); }
.sh-badge-cancelled,
.sh-badge-failed,
.sh-badge-danger { background: var(--sh-danger-soft); color: var(--sh-danger); }

html[data-bs-theme="dark"] .sh-badge-neutral,
html[data-bs-theme="dark"] .sh-badge-draft {
  background: #1e293b;
  color: #94a3b8;
}

/* ??? Avatar ??? */
.sh-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sh-primary-soft), var(--sh-accent-soft));
  color: var(--sh-primary);
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid color-mix(in srgb, var(--sh-primary) 18%, transparent);
  flex: 0 0 auto;
}

.sh-avatar-sm { width: 1.55rem; height: 1.55rem; font-size: 0.62rem; }
.sh-avatar-lg { width: 2.75rem; height: 2.75rem; font-size: 0.82rem; }
.sh-avatar.is-emerald { background: var(--sh-emerald-soft); color: var(--sh-emerald); border-color: color-mix(in srgb, var(--sh-emerald) 20%, transparent); }
.sh-avatar.is-blue { background: var(--sh-blue-soft); color: var(--sh-blue); border-color: color-mix(in srgb, var(--sh-blue) 20%, transparent); }
.sh-avatar.is-orange { background: var(--sh-orange-soft); color: var(--sh-orange); border-color: color-mix(in srgb, var(--sh-orange) 20%, transparent); }
.sh-avatar.is-amber { background: var(--sh-warning-soft); color: var(--sh-warning); border-color: color-mix(in srgb, var(--sh-warning) 20%, transparent); }
.sh-avatar.is-violet { background: var(--sh-violet-soft); color: var(--sh-violet); border-color: color-mix(in srgb, var(--sh-violet) 20%, transparent); }
.sh-avatar.is-rose { background: var(--sh-rose-soft); color: var(--sh-rose); border-color: color-mix(in srgb, var(--sh-rose) 20%, transparent); }

.sh-avatar-link { text-decoration: none; }

/* ??? Tables / lists ??? */
.sh-datagrid {
  display: grid;
  gap: 1rem;
}

.sh-table-wrap {
  border-radius: var(--sh-radius-sm);
  overflow: auto;
  border: 1px solid var(--sh-border);
}

.sh-table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.sh-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: color-mix(in srgb, var(--sh-bg-elevated) 92%, var(--sh-surface));
  color: var(--sh-muted);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sh-border);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(8px);
}

.sh-table tbody td {
  height: var(--sh-row-h);
  vertical-align: middle;
  border-bottom: 1px solid var(--sh-border);
  padding: 0.65rem 1rem;
  font-size: 14px;
}

.sh-table tbody tr {
  transition: background var(--sh-transition), transform var(--sh-transition-fast);
}

.sh-table tbody tr:hover {
  background: color-mix(in srgb, var(--sh-primary) 7%, transparent);
}

.sh-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.sh-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  transition: background var(--sh-transition), transform var(--sh-transition);
  color: inherit;
  text-decoration: none;
}

a.sh-list-item:hover { color: inherit; }
.sh-list-item:hover {
  background: color-mix(in srgb, var(--sh-primary) 6%, var(--sh-surface));
  transform: translateX(2px);
}

.sh-list-title {
  margin: 0;
  font-weight: 750;
  font-size: 14.5px;
}

.sh-list-meta {
  margin: 0.15rem 0 0;
  color: var(--sh-muted);
  font-size: 13px;
}

/* ??? Timeline ??? */
.sh-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.sh-timeline-item {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.55rem 0.4rem;
  border-radius: 14px;
  transition: background var(--sh-transition), transform var(--sh-transition);
}

.sh-timeline-item:hover {
  background: color-mix(in srgb, var(--sh-surface) 80%, transparent);
  transform: translateX(2px);
}

.sh-timeline-rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}

.sh-timeline-rail::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  bottom: -0.55rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--sh-primary) 45%, var(--sh-border)), transparent);
}

.sh-timeline-item:last-child .sh-timeline-rail::before { display: none; }

.sh-timeline-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--sh-bg-elevated);
}

.sh-timeline-icon svg { width: 14px; height: 14px; }
.sh-timeline-icon.is-green { background: var(--sh-primary-soft); color: var(--sh-primary); }
.sh-timeline-icon.is-blue { background: var(--sh-secondary-soft); color: var(--sh-secondary); }
.sh-timeline-icon.is-amber { background: var(--sh-warning-soft); color: var(--sh-warning); }
.sh-timeline-icon.is-sky { background: var(--sh-accent-soft); color: var(--sh-accent); }

.sh-timeline-content { min-width: 0; padding-bottom: 0.75rem; }

.sh-timeline-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.sh-timeline-title {
  font-size: 14.5px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.sh-timeline-meta {
  margin: 0.25rem 0 0;
  color: var(--sh-muted);
  font-size: 13px;
}

.sh-timeline-foot {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.sh-timeline-time {
  font-size: 12px;
  color: var(--sh-muted);
  font-weight: 650;
  white-space: nowrap;
}

/* ??? Empty / loading ??? */
.sh-empty {
  text-align: center;
  padding: 2rem 1.2rem;
}

.sh-empty-compact {
  padding: 0.75rem 0.25rem;
  text-align: left;
}

.sh-empty-illu {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.9rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), transparent 50%),
    linear-gradient(135deg, var(--sh-primary-soft), var(--sh-accent-soft));
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-soft);
}

.sh-empty-illu svg { width: 26px; height: 26px; }

.sh-empty-compact .sh-empty-illu {
  margin: 0 0 0.55rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
}

.sh-empty-compact .sh-empty-illu svg { width: 14px; height: 14px; }

.sh-empty-title {
  font-size: 18px;
  font-weight: 750;
  margin: 0 0 0.4rem;
}

.sh-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--sh-muted);
}

.sh-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--sh-surface);
  overflow: hidden;
}

.sh-progress > span {
  display: block;
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sh-primary), var(--sh-accent));
  animation: sh-progress 1.2s ease infinite;
}

.sh-chart-wrap {
  position: relative;
  height: 240px;
}

.sh-chart-wrap--donut { height: 260px; }
.sh-chart-wrap--sm { height: 200px; }

.sh-skeleton {
  border-radius: 10px;
  background: linear-gradient(90deg, var(--sh-surface), color-mix(in srgb, var(--sh-surface) 35%, white), var(--sh-surface));
  background-size: 200% 100%;
  animation: sh-shimmer 1.2s ease infinite;
  height: 0.9rem;
}

.sh-skeleton-row {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.sh-skeleton-circle {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
}

.sh-toast-region {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: grid;
  gap: 0.5rem;
}

.sh-toast {
  min-width: 220px;
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-elevated);
  border-radius: 14px;
  box-shadow: var(--sh-shadow);
}

/* Landing */
.sh-landing { position: relative; min-height: 100vh; overflow: hidden; }
.sh-landing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 85% 8%, rgba(14, 165, 233, 0.14), transparent 55%),
    radial-gradient(700px 380px at 8% 85%, rgba(22, 163, 74, 0.16), transparent 50%),
    linear-gradient(160deg, #ffffff, #f8fafc);
}

html[data-bs-theme="dark"] .sh-landing-bg {
  background:
    radial-gradient(900px 420px at 85% 8%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(700px 380px at 8% 85%, rgba(34, 197, 94, 0.12), transparent 50%),
    linear-gradient(160deg, #0b1220, #111827);
}

.sh-landing-top,
.sh-landing-hero { position: relative; z-index: 1; }

.sh-landing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
}

.sh-landing-hero {
  max-width: 760px;
  padding: clamp(3rem, 12vh, 7rem) 1.5rem 4rem;
}

.sh-brand-hero {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  margin: 0 0 1rem;
}

.sh-landing-lead {
  font-size: 1.15rem;
  color: var(--sh-muted);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.sh-landing-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.sh-landing-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-accent, #0ea5e9);
}

.sh-brand-hero-compact {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 0 1rem;
}

.sh-landing-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sh-landing-nav .sh-nav-link {
  padding: 0.35rem 0.55rem;
  font-size: 0.9rem;
  color: var(--sh-muted);
  text-decoration: none;
  border-radius: 0.4rem;
}

.sh-landing-nav .sh-nav-link:hover,
.sh-landing-nav .sh-nav-link:focus-visible {
  color: var(--sh-fg, #0f172a);
  background: rgba(15, 23, 42, 0.04);
}

.sh-faq {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
}

.sh-faq details {
  border-bottom: 1px solid var(--sh-border, #e2e8f0);
  padding: 0.65rem 0;
}

.sh-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.sh-faq summary::-webkit-details-marker { display: none; }

.sh-faq p {
  margin: 0.5rem 0 0;
  color: var(--sh-muted);
}

.sh-role-benefits {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  color: var(--sh-muted);
  font-size: 0.88rem;
  text-align: left;
}

.sh-auth-card-wide { width: min(920px, 100%); }

.sh-wizard-mini-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.sh-wizard-mini-progress span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.sh-wizard-mini-progress span.is-active {
  background: var(--sh-accent, #0ea5e9);
}

.sh-wizard-step-title {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}

.sh-password-meter {
  height: 4px;
  margin-top: 0.4rem;
  background: rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  overflow: hidden;
}

.sh-password-meter-bar {
  height: 100%;
  transition: width 0.2s ease, background 0.2s ease;
  background: #ef4444;
}

.sh-password-meter-bar[data-level="fair"] { background: #f59e0b; }
.sh-password-meter-bar[data-level="good"] { background: #84cc16; }
.sh-password-meter-bar[data-level="strong"] { background: #16a34a; }

.sh-confirm-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.sh-confirm-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.92rem;
}

.sh-confirm-list span { color: var(--sh-muted); }

.sh-otp-timer {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.88rem;
}

.sh-object-type-grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.sh-object-type {
  cursor: pointer;
  text-align: center;
  padding: 0.85rem 0.5rem;
}

.sh-object-type input { margin-bottom: 0.35rem; }

.sh-security-stack {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

/* Auth / onboarding */
.sh-auth {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.sh-auth-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 380px at 90% 0%, rgba(14, 165, 233, 0.12), transparent 55%),
    radial-gradient(640px 360px at 0% 100%, rgba(22, 163, 74, 0.14), transparent 50%),
    linear-gradient(165deg, #ffffff, #f1f5f9);
}
html[data-bs-theme="dark"] .sh-auth-bg {
  background:
    radial-gradient(800px 380px at 90% 0%, rgba(56, 189, 248, 0.1), transparent 55%),
    radial-gradient(640px 360px at 0% 100%, rgba(34, 197, 94, 0.1), transparent 50%),
    linear-gradient(165deg, #0b1220, #111827);
}
.sh-auth-top,
.sh-auth-main { position: relative; z-index: 1; }
.sh-auth-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
}
.sh-auth-main {
  display: flex;
  justify-content: center;
  padding: 1rem 1.25rem 3rem;
}
.sh-auth-card {
  width: min(520px, 100%);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--sh-border);
  background: color-mix(in srgb, var(--sh-bg-elevated) 92%, transparent);
  box-shadow: var(--sh-shadow-soft);
  backdrop-filter: blur(8px);
}
.sh-welcome-card { width: min(560px, 100%); }
.sh-auth-title {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.sh-auth-lead {
  color: var(--sh-muted);
  margin-bottom: 1.25rem;
}
.sh-auth-form { display: grid; gap: 0.9rem; }
.sh-auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.sh-field { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.9rem; }
.sh-field input,
.sh-field select,
.sh-field textarea {
  width: 100%;
  border: 1px solid var(--sh-border);
  border-radius: 0.8rem;
  padding: 0.7rem 0.85rem;
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  font: inherit;
}
.sh-field input.is-invalid { border-color: var(--sh-danger, #ef4444); }
.sh-field-hint { font-weight: 500; color: var(--sh-muted); font-size: 0.78rem; }
.sh-field-password { display: flex; gap: 0.5rem; align-items: center; }
.sh-field-password input { flex: 1; }
.sh-check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--sh-muted);
}
.sh-btn-block { width: 100%; justify-content: center; }
.sh-auth-error {
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.sh-auth-demo {
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  margin-bottom: 0.85rem;
}
.sh-auth-link { font-weight: 650; }
.sh-auth-foot {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--sh-muted);
}
.sh-auth-social { margin-top: 1.25rem; }
.sh-auth-social-label {
  text-align: center;
  color: var(--sh-muted);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.sh-auth-social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.sh-auth-social-btn { justify-content: center; font-size: 0.85rem; }
.sh-role-grid {
  display: grid;
  gap: 0.75rem;
}
.sh-role-card {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--sh-transition), transform var(--sh-transition);
  cursor: pointer;
}
.sh-role-card:hover {
  border-color: var(--sh-primary);
  transform: translateY(-1px);
}
.sh-role-card strong { font-size: 1.05rem; }
.sh-role-card span { color: var(--sh-muted); font-size: 0.9rem; }
.sh-role-card input[type="radio"] { margin-bottom: 0.35rem; }
.sh-role-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--sh-primary);
  margin-bottom: 0.25rem;
}
.sh-progress {
  height: 0.45rem;
  border-radius: 999px;
  background: var(--sh-surface);
  overflow: hidden;
  width: min(220px, 40vw);
}
.sh-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sh-primary), var(--sh-accent));
  transition: width 0.35s ease;
}
.sh-onboarding-wizard { width: min(720px, 100%); }
.sh-link-btn {
  border: 0;
  background: transparent;
  color: var(--sh-primary);
  font-weight: 650;
  white-space: nowrap;
}
.sh-muted { color: var(--sh-muted); }
@media (max-width: 640px) {
  .sh-auth-row,
  .sh-auth-social-row { grid-template-columns: 1fr; }
  .sh-landing-top { flex-direction: column; align-items: stretch; gap: 0.75rem; }
}

.sh-tabs-nav {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 14px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
}

.sh-tabs-btn {
  border: 0;
  background: transparent;
  color: var(--sh-muted);
  font-weight: 700;
  font-size: 14px;
  padding: 0.55rem 1rem;
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--sh-transition), color var(--sh-transition), box-shadow var(--sh-transition);
}

.sh-tabs-btn.is-active {
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  box-shadow: var(--sh-shadow-soft);
}

.sh-tabs-panel {
  padding-top: 1.15rem;
  color: var(--sh-muted);
  font-size: 15px;
}

.modal-content.sh-modal,
.sh-modal {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  background: var(--sh-bg-elevated);
  box-shadow: var(--sh-shadow-hover);
  color: var(--sh-ink);
}

.sh-alert {
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
}

.alert-info { background: var(--sh-secondary-soft); color: var(--sh-secondary); }
.alert-success { background: var(--sh-success-soft); color: var(--sh-success); }
.alert-warning { background: var(--sh-warning-soft); color: var(--sh-warning); }
.alert-danger { background: var(--sh-danger-soft); color: var(--sh-danger); }

@keyframes sh-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sh-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes sh-progress {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(220%); }
}

.sh-slide-in { animation: sh-fade 280ms ease; }

.sh-filters {
  background: var(--sh-bg-elevated);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 1rem 1.15rem;
  box-shadow: var(--sh-shadow);
}

.sh-pagination .page-link {
  border-radius: 10px !important;
  margin: 0 0.15rem;
  border-color: var(--sh-border);
  color: var(--sh-ink);
  min-width: 2.25rem;
  text-align: center;
}

.sh-pagination .page-item.active .page-link {
  background: var(--sh-primary);
  border-color: var(--sh-primary);
}

.dropdown-menu {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-md);
  box-shadow: var(--sh-shadow-hover);
  padding: 0.45rem;
  background: var(--sh-bg-elevated);
  min-width: 220px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  color: var(--sh-ink);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

button.dropdown-item {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.dropdown-item.text-danger,
button.dropdown-item.text-danger {
  color: var(--sh-danger, #c0392b);
}

.dropdown-item.text-danger:hover,
button.dropdown-item.text-danger:hover {
  color: var(--sh-danger, #c0392b);
  background: color-mix(in srgb, var(--sh-danger, #c0392b) 10%, transparent);
}

.dropdown-item svg { width: 16px; height: 16px; opacity: 0.8; }

.dropdown-item:hover {
  background: var(--sh-sidebar-hover);
  color: var(--sh-primary);
}

.dropdown-divider {
  border-color: var(--sh-border);
  margin: 0.35rem 0;
}

/* ??? Welcome / dashboard polish ??? */
.sh-welcome {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.4rem;
  border-radius: var(--sh-radius-lg);
  border: 1px solid var(--sh-border);
  background:
    radial-gradient(520px 180px at 100% 0%, rgba(14, 165, 233, 0.12), transparent 60%),
    radial-gradient(420px 160px at 0% 100%, rgba(16, 185, 129, 0.14), transparent 55%),
    var(--sh-bg-elevated);
  box-shadow: var(--sh-shadow);
  animation: sh-fade var(--sh-transition-slow) both;
}

.sh-welcome-kicker {
  margin: 0;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-welcome-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.sh-welcome-lead {
  margin: 0.45rem 0 0;
  color: var(--sh-muted);
  font-size: 14px;
  max-width: 36rem;
}

.sh-welcome-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  min-width: min(360px, 100%);
}

.sh-welcome-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--sh-border);
  background: color-mix(in srgb, var(--sh-bg-elevated) 86%, transparent);
  color: inherit;
  text-decoration: none;
  transition: transform var(--sh-transition), box-shadow var(--sh-transition), border-color var(--sh-transition);
}

.sh-welcome-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow-soft);
  color: inherit;
}

.sh-welcome-chip strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sh-welcome-chip span span {
  display: block;
  margin-top: 0.2rem;
  font-size: 12px;
  color: var(--sh-muted);
  font-weight: 650;
}

.sh-welcome-chip-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.sh-welcome-chip-icon svg { width: 15px; height: 15px; }

.sh-welcome-chip.is-emerald .sh-welcome-chip-icon { background: var(--sh-emerald-soft); color: var(--sh-emerald); }
.sh-welcome-chip.is-blue .sh-welcome-chip-icon { background: var(--sh-blue-soft); color: var(--sh-blue); }
.sh-welcome-chip.is-amber .sh-welcome-chip-icon { background: var(--sh-warning-soft); color: var(--sh-warning); }
.sh-welcome-chip.is-sky .sh-welcome-chip-icon { background: var(--sh-sky-soft); color: var(--sh-sky); }

.sh-performer-list,
.sh-insight-list,
.sh-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.sh-performer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background var(--sh-transition), border-color var(--sh-transition), transform var(--sh-transition);
}

.sh-performer:hover {
  background: color-mix(in srgb, var(--sh-surface) 70%, transparent);
  border-color: var(--sh-border);
  transform: translateX(2px);
}

.sh-performer-head {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sh-performer-head strong { font-size: 14.5px; font-weight: 750; }

.sh-performer-meta {
  margin: 0.2rem 0 0;
  color: var(--sh-muted);
  font-size: 13px;
}

.sh-performer-foot {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.sh-verify {
  color: var(--sh-secondary);
  display: inline-grid;
  place-items: center;
}

.sh-verify svg { width: 15px; height: 15px; }

.sh-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 13px;
  font-weight: 750;
  color: var(--sh-warning);
}

.sh-rating svg { width: 13px; height: 13px; fill: currentColor; }

.sh-insight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--sh-border);
  background: color-mix(in srgb, var(--sh-surface) 45%, var(--sh-bg-elevated));
  transition: transform var(--sh-transition), box-shadow var(--sh-transition);
}

.sh-insight:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow-soft);
}

.sh-insight strong {
  display: block;
  font-size: 14px;
  font-weight: 750;
}

.sh-insight p {
  margin: 0.25rem 0 0;
  color: var(--sh-muted);
  font-size: 13px;
}

.sh-insight-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
}

.sh-insight-icon svg { width: 16px; height: 16px; }

.sh-insight.is-violet .sh-insight-icon { background: var(--sh-violet-soft); color: var(--sh-violet); }
.sh-insight.is-sky .sh-insight-icon { background: var(--sh-sky-soft); color: var(--sh-sky); }
.sh-insight.is-orange .sh-insight-icon { background: var(--sh-orange-soft); color: var(--sh-orange); }

.sh-service-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.45rem 0;
}

.sh-service-rank {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.sh-service-rank.is-emerald { background: var(--sh-emerald-soft); color: var(--sh-emerald); }
.sh-service-rank.is-blue { background: var(--sh-blue-soft); color: var(--sh-blue); }
.sh-service-rank.is-orange { background: var(--sh-orange-soft); color: var(--sh-orange); }

.sh-service-list strong {
  display: block;
  font-size: 13.5px;
  font-weight: 750;
  margin-bottom: 0.35rem;
}

.sh-meter {
  height: 6px;
  border-radius: 999px;
  background: var(--sh-surface);
  overflow: hidden;
}

.sh-meter > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sh-primary), var(--sh-accent));
}

.sh-escrow-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background:
    radial-gradient(180px 80px at 100% 0%, var(--sh-success-soft), transparent 70%),
    var(--sh-surface);
  border: 1px solid var(--sh-border);
}

.sh-content > * + * { scroll-margin-top: 1rem; }

.sh-stat:nth-child(1) { animation-delay: 40ms; }
.sh-stat:nth-child(2) { animation-delay: 80ms; }
.sh-stat:nth-child(3) { animation-delay: 120ms; }
.sh-stat:nth-child(4) { animation-delay: 160ms; }

.sh-masonry > .sh-card:nth-child(1) { animation-delay: 80ms; }
.sh-masonry > .sh-card:nth-child(2) { animation-delay: 120ms; }
.sh-masonry > .sh-card:nth-child(3) { animation-delay: 160ms; }
.sh-masonry > .sh-card:nth-child(4) { animation-delay: 200ms; }

.sh-app.is-collapsed .sh-nav-link.is-active::after { display: none; }

@media (max-width: 1199.98px) {
  .sh-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sh-dash-grid,
  .sh-dash-grid-2,
  .sh-panel-grid { grid-template-columns: 1fr; }
  .sh-quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sh-masonry > .sh-card,
  .sh-masonry > .sh-card:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 991.98px) {
  .sh-app,
  .sh-app.is-collapsed { grid-template-columns: 1fr; }

  .sh-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(304px, 88vw);
    transform: translateX(-105%);
    transition: transform 0.22s ease;
  }

  .sh-sidebar.is-open { transform: translateX(0); }

  .sh-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1030;
  }

  .sh-search { min-width: 0; width: min(240px, 42vw); }
  .sh-kbd { display: none; }
  .sh-content { padding-inline: 1rem; }
  .sh-page-title { font-size: 28px; }
  .sh-welcome { flex-direction: column; }
  .sh-welcome-stats { width: 100%; }
}

@media (max-width: 575.98px) {
  .sh-stat-grid { grid-template-columns: 1fr; }
  .sh-page-header { flex-direction: column; align-items: start; }
  .sh-navbar { padding-inline: 0.9rem; }
  .sh-quick-grid { grid-template-columns: 1fr 1fr; }
  .sh-masonry > .sh-card,
  .sh-masonry > .sh-card:nth-child(n) { grid-column: span 12; }
  .sh-welcome-chip span span { display: none; }
}

/* ===== Create Order Wizard ===== */
.sh-wizard { max-width: 920px; margin: 0 auto 2rem; }
.sh-wizard-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.96));
  border: 1px solid var(--sh-border);
  border-radius: 24px;
  padding: 1.25rem 1.35rem 1rem;
  box-shadow: var(--sh-shadow-soft);
  position: relative;
  overflow: hidden;
}
.sh-wizard-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 160px;
  background:
    radial-gradient(circle at 12% 20%, rgba(16,185,129,0.16), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(14,165,233,0.14), transparent 40%);
  pointer-events: none;
}
[data-bs-theme="dark"] .sh-wizard-shell {
  background: linear-gradient(180deg, rgba(15,23,42,0.92), rgba(15,23,42,0.98));
}
.sh-wizard-header {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.sh-wizard-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-muted);
  font-weight: 700;
}
.sh-wizard-title {
  margin: 0.15rem 0 0;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.sh-wizard-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}
.sh-wizard-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--sh-border);
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  text-align: left;
  color: var(--sh-text);
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
[data-bs-theme="dark"] .sh-wizard-step { background: rgba(30,41,59,0.7); }
.sh-wizard-step:hover:not(:disabled) { transform: translateY(-1px); border-color: var(--sh-primary); }
.sh-wizard-step.is-active {
  border-color: var(--sh-primary);
  background: rgba(16,185,129,0.12);
}
.sh-wizard-step.is-done { border-color: rgba(16,185,129,0.45); }
.sh-wizard-step:disabled { opacity: 0.55; cursor: not-allowed; }
.sh-wizard-step-index {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--sh-primary);
  color: #fff;
}
.sh-wizard-step-label { font-size: 0.82rem; font-weight: 650; }
.sh-wizard-status {
  font-size: 0.85rem;
  color: var(--sh-muted);
  min-height: 1.25rem;
}
.sh-wizard-status.is-saved { color: var(--sh-success); }
.sh-wizard-status.is-error { color: var(--sh-danger, #ef4444); }
.sh-wizard-form, .sh-wizard-panel { position: relative; }
.sh-wizard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.8fr);
  gap: 1.1rem;
}
.sh-wizard-fields { position: relative; }
.sh-ai-tip {
  border: 1px solid rgba(14,165,233,0.25);
  background: linear-gradient(160deg, rgba(14,165,233,0.12), rgba(16,185,129,0.08));
  border-radius: 18px;
  padding: 1rem;
}
.sh-wizard-footer {
  position: sticky;
  bottom: 0.75rem;
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem;
  border: 1px solid var(--sh-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--sh-surface, #fff) 88%, transparent);
  backdrop-filter: blur(10px);
  z-index: 5;
}
.sh-wizard-footer-right { display: flex; gap: 0.55rem; margin-left: auto; }
.sh-map-canvas {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  background:
    linear-gradient(90deg, rgba(148,163,184,0.18) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(148,163,184,0.18) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, #ecfeff, #f0fdf4 55%, #eff6ff);
  cursor: crosshair;
  user-select: none;
}
.sh-map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -90%);
  color: #059669;
  filter: drop-shadow(0 6px 10px rgba(5,150,105,0.35));
}
.sh-map-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.72);
  color: #fff;
  font-size: 0.75rem;
}
.sh-budget-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.sh-budget-type {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  border: 1px solid var(--sh-border);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  background: rgba(255,255,255,0.65);
}
[data-bs-theme="dark"] .sh-budget-type { background: rgba(30,41,59,0.65); }
.sh-budget-type:has(input:checked) {
  border-color: var(--sh-primary);
  background: rgba(16,185,129,0.12);
}
.sh-preview-card,
.sh-preview-check {
  border: 1px solid var(--sh-border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
}
[data-bs-theme="dark"] .sh-preview-card,
[data-bs-theme="dark"] .sh-preview-check { background: rgba(30,41,59,0.72); }
.sh-preview-meta {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}
.sh-preview-meta dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sh-muted);
}
.sh-preview-meta dd { margin: 0.15rem 0 0; font-weight: 600; }
.sh-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.sh-check-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}
.sh-check-list li.is-ok { color: var(--sh-success); }
.sh-check-list li.is-bad { color: var(--sh-danger, #ef4444); }
.sh-wizard-banner {
  border-radius: 14px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sh-border);
}
.sh-wizard-banner.is-error {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.35);
  color: #b91c1c;
}
.sh-wizard-banner.is-success {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.35);
  color: #047857;
}
.sh-wizard-offline {
  margin-bottom: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(245,158,11,0.14);
  border: 1px solid rgba(245,158,11,0.35);
  color: #b45309;
  font-weight: 600;
}
.sh-attach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.65rem;
}
.sh-attach-item {
  border: 1px solid var(--sh-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
}
.sh-attach-item img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}
.sh-attach-file {
  min-height: 90px;
  display: grid;
  place-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.78rem;
}
.sh-attach-item .sh-btn { width: 100%; border-radius: 0; }
.sh-upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.sh-upload-preview {
  width: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  font-size: 0.65rem;
  text-align: center;
}
.sh-upload-preview img { width: 100%; height: 56px; object-fit: cover; display: block; }
.sh-empty-inline {
  color: var(--sh-muted);
  font-size: 0.9rem;
}
.sh-btn-sm { padding: 0.35rem 0.65rem; font-size: 0.8rem; }
@media (max-width: 791.98px) {
  .sh-wizard-grid { grid-template-columns: 1fr; }
  .sh-wizard-steps { grid-template-columns: 1fr 1fr; }
  .sh-wizard-step-label { display: none; }
  .sh-budget-types { grid-template-columns: 1fr; }
  .sh-wizard-footer { position: static; }
}

.sh-map-leaflet {
  height: 280px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--sh-border);
  overflow: hidden;
  background: #0f172a;
  z-index: 1;
}
.sh-map-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.sh-map .leaflet-container { font-family: inherit; }

.sh-worker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.sh-worker-card .sh-avatar { flex-shrink: 0; }
.sh-filter-bar .form-label { font-size: 0.8rem; margin-bottom: 0.25rem; }

.sh-progress-bar {
  height: 0.55rem;
  border-radius: 999px;
  background: var(--sh-border, #e5e7eb);
  overflow: hidden;
}
.sh-progress-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0f766e, #14b8a6);
  border-radius: inherit;
  transition: width .35s ease;
}
.sh-gallery-thumb {
  border: 1px solid var(--sh-border, #e5e7eb);
  background: #fff;
  border-radius: .5rem;
  padding: .35rem .6rem;
  font-size: .8rem;
}
.sh-stat-mini {
  padding: .75rem;
  border-radius: .75rem;
  background: rgba(15, 118, 110, 0.06);
}

/* Premium worker profile */
.sh-worker-premium { --sh-worker-accent: #0f766e; }
.sh-worker-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(1200px 280px at 10% -20%, rgba(15, 118, 110, 0.18), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
}
.sh-worker-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), transparent 45%),
    repeating-linear-gradient(-12deg, transparent, transparent 18px, rgba(15, 118, 110, 0.03) 18px, rgba(15, 118, 110, 0.03) 19px);
  pointer-events: none;
}
.sh-worker-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: linear-gradient(145deg, #0f766e, #134e4a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.25);
}
.sh-worker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-online-dot {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}
.sh-worker-name {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.02em;
}
.sh-worker-side {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sh-border, #e5e7eb);
  backdrop-filter: blur(6px);
}
.sh-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(15, 118, 110, 0.1);
  color: #115e59;
  border: 1px solid rgba(15, 118, 110, 0.18);
}
.sh-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.sh-portfolio-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--sh-border, #e5e7eb);
  background: linear-gradient(180deg, #fff, #f8fafc);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sh-portfolio-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.sh-day-chip {
  min-width: 4.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  text-align: center;
  border: 1px solid var(--sh-border, #e5e7eb);
  background: #fff;
  font-size: 0.85rem;
}
.sh-day-chip.is-free { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.35); }
.sh-day-chip.is-busy { background: rgba(148, 163, 184, 0.12); color: #64748b; }
.sh-day-chip input { margin-right: 0.25rem; }
.sh-review-reply {
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(15, 118, 110, 0.06);
  border-left: 3px solid #0f766e;
}
.sh-worker-edit .sh-day-chip { cursor: pointer; display: inline-flex; align-items: center; }
@media (max-width: 791.98px) {
  .sh-worker-avatar { width: 72px; height: 72px; border-radius: 20px; }
  .sh-worker-side { position: sticky; bottom: 0.75rem; z-index: 5; }
}

/* Matching / recommendations */
.sh-match-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #115e59;
  background: rgba(15, 118, 110, 0.12);
  border: 1px solid rgba(15, 118, 110, 0.22);
  white-space: nowrap;
}
.sh-rec-card {
  border: 1px solid rgba(15, 118, 110, 0.14);
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.04), transparent 40%),
    #fff;
}
.sh-rec-block { width: 100%; }

/* Construction projects */
.sh-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.sh-project-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--sh-transition), transform var(--sh-transition);
}
.sh-project-card:hover {
  border-color: var(--sh-primary);
  transform: translateY(-1px);
}
.sh-project-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}
.sh-project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--sh-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.sh-project-search { max-width: 420px; }
.sh-project-dash { display: grid; gap: 1.25rem; }
.sh-project-hero {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid var(--sh-border);
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), transparent 55%),
    var(--sh-bg-elevated);
}
.sh-project-kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.sh-stat {
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid var(--sh-border);
  background: color-mix(in srgb, var(--sh-bg-elevated) 88%, transparent);
}
.sh-stat-label {
  display: block;
  color: var(--sh-muted);
  font-size: 0.78rem;
  font-weight: 650;
  margin-bottom: 0.2rem;
}
.sh-project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr);
  gap: 1rem;
  align-items: start;
}
.sh-project-main,
.sh-project-side { display: grid; gap: 1rem; }

/* Project create schedule UX */
.sh-project-schedule-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--sh-border);
  background:
    linear-gradient(160deg, rgba(16, 185, 129, 0.07), transparent 50%),
    var(--sh-bg-elevated);
  margin-bottom: 0.35rem;
}
.sh-project-schedule-title {
  margin: 0;
  font-size: 1.05rem;
}
.sh-duration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}
.sh-duration-chip {
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-elevated);
  color: inherit;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 650;
  cursor: pointer;
  transition: border-color var(--sh-transition), background var(--sh-transition);
}
.sh-duration-chip:hover { border-color: var(--sh-primary); }
.sh-duration-chip.is-active {
  border-color: var(--sh-primary);
  background: color-mix(in srgb, var(--sh-primary) 14%, transparent);
  color: var(--sh-primary);
}
.sh-schedule-flow {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px dashed color-mix(in srgb, var(--sh-primary) 35%, var(--sh-border));
  background: color-mix(in srgb, var(--sh-bg-elevated) 92%, transparent);
}
.sh-schedule-flow-item { display: grid; gap: 0.15rem; }
.sh-schedule-flow-arrow {
  color: var(--sh-muted);
  font-weight: 700;
  line-height: 1;
  padding-left: 0.15rem;
}

/* Project dashboard UX cards */
.sh-ux-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.sh-ux-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sh-ux-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sh-ux-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-elevated);
  min-height: 6.5rem;
}
.sh-ux-card-status {
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.08), transparent 55%),
    var(--sh-bg-elevated);
}
.sh-ux-card-progress .sh-progress-lg {
  height: 0.7rem;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--sh-border) 70%, transparent);
}
.sh-ux-card-progress .sh-progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sh-primary), #34d399);
}
.sh-ux-metric {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.sh-ux-metric-sm { font-size: 1.15rem; }
.sh-ux-metric.is-danger { color: #b91c1c; }
.sh-ux-status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.15rem 0 0.35rem;
  font-size: 1.05rem;
}
.sh-ux-status-ok strong { color: #047857; }
.sh-ux-status-warn strong { color: #b45309; }
.sh-ux-status-danger strong { color: #b91c1c; }
.sh-ux-card-budget .sh-dl-budget {
  display: grid;
  gap: 0.45rem;
  margin: 0.35rem 0 0.75rem;
}
.sh-ux-card-ai {
  background:
    linear-gradient(160deg, rgba(59, 130, 246, 0.08), transparent 50%),
    var(--sh-bg-elevated);
}
.sh-ux-ai-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 750;
}
.sh-ux-ai-list {
  margin: 0.35rem 0 0.65rem;
  padding-left: 1.1rem;
  color: var(--sh-muted);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .sh-ux-grid,
  .sh-ux-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .sh-ux-grid,
  .sh-ux-grid-2,
  .sh-ux-grid-4 { grid-template-columns: 1fr; }
}
.sh-panel {
  border: 1px solid var(--sh-border);
  border-radius: 1rem;
  background: var(--sh-bg-elevated);
  padding: 1rem 1.1rem;
}
.sh-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.sh-panel-head h3 { margin: 0; font-size: 1.05rem; }
.sh-inline-search {
  border: 1px solid var(--sh-border);
  border-radius: 0.7rem;
  padding: 0.4rem 0.7rem;
  background: var(--sh-bg-elevated);
  color: var(--sh-ink);
  min-width: 180px;
}
.sh-phase-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.sh-phase-list li {
  display: grid;
  gap: 0.1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--sh-border);
}
.sh-dl {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}
.sh-dl > div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}
.sh-dl dt { color: var(--sh-muted); margin: 0; }
.sh-dl dd { margin: 0; font-weight: 700; }
.sh-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.sh-timeline li {
  display: grid;
  gap: 0.15rem;
  padding-left: 0.85rem;
  border-left: 3px solid rgba(16, 185, 129, 0.35);
}
.sh-ai-panel {
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.08), transparent 40%),
    var(--sh-bg-elevated);
}
.sh-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  border: 1px dashed var(--sh-border);
  border-radius: 1rem;
}
@media (max-width: 991.98px) {
  .sh-project-layout,
  .sh-project-kpi { grid-template-columns: 1fr; }
}

/* Public marketplace */
.sh-public { position: relative; min-height: 100vh; }
.sh-public-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 420px at 88% 0%, rgba(14, 165, 233, 0.12), transparent 55%),
    radial-gradient(700px 380px at 0% 90%, rgba(22, 163, 74, 0.1), transparent 50%),
    linear-gradient(165deg, #f8fafc, #eef2ff 48%, #f1f5f9);
}
html[data-bs-theme="dark"] .sh-public-bg {
  background:
    radial-gradient(900px 420px at 88% 0%, rgba(56, 189, 248, 0.1), transparent 55%),
    radial-gradient(700px 380px at 0% 90%, rgba(34, 197, 94, 0.08), transparent 50%),
    linear-gradient(165deg, #0b1220, #111827);
}
.sh-public-top, .sh-public-main, .sh-public-footer, .sh-public-crumbs { position: relative; z-index: 1; }
.sh-public-top {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem; flex-wrap: wrap;
}
.sh-public-nav { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.sh-public-crumbs { padding: 0 1.5rem; }
.sh-public-crumbs ol { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; margin: 0; padding: 0; font-size: 0.88rem; color: var(--sh-muted); }
.sh-public-crumbs li:not(:last-child)::after { content: "/"; margin-left: 0.35rem; opacity: 0.5; }
.sh-public-main { padding: 1rem 1.5rem 3rem; max-width: 1120px; margin: 0 auto; }
.sh-public-footer {
  border-top: 1px solid var(--sh-border, #e2e8f0); padding: 2rem 1.5rem; margin-top: 2rem;
}
.sh-public-footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem; max-width: 1120px; margin: 0 auto 1.25rem;
}
.sh-public-footer a { display: block; color: var(--sh-muted); text-decoration: none; margin-top: 0.3rem; }
.sh-public-footer a:hover { color: var(--sh-fg, #0f172a); }
.sh-public-copy { text-align: center; color: var(--sh-muted); font-size: 0.85rem; margin: 0; }
.sh-mkt-hero { padding: clamp(2rem, 8vh, 4.5rem) 0 2rem; max-width: 760px; }
.sh-mkt-search {
  display: grid; grid-template-columns: 1fr auto auto; gap: 0.5rem; margin: 1.25rem 0 1rem;
  padding: 0.5rem; border-radius: 1rem; background: rgba(255,255,255,0.72); border: 1px solid rgba(148,163,184,0.35);
}
html[data-bs-theme="dark"] .sh-mkt-search { background: rgba(15,23,42,0.65); }
.sh-mkt-search input, .sh-mkt-search select {
  border: 0; background: transparent; padding: 0.65rem 0.75rem; outline: none; color: inherit;
}
.sh-mkt-section { margin: 2.5rem 0; }
.sh-mkt-section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.sh-mkt-section-head h2 { margin: 0; font-size: 1.35rem; }
.sh-mkt-chip-grid, .sh-mkt-card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem;
}
.sh-mkt-chip {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  padding: 0.7rem 0.85rem; border-radius: 0.85rem; text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(148,163,184,0.28); font-weight: 600;
}
.sh-mkt-card {
  display: grid; gap: 0.35rem; padding: 1rem; border-radius: 1rem; text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.78); border: 1px solid rgba(148,163,184,0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sh-mkt-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15,23,42,0.08); }
html[data-bs-theme="dark"] .sh-mkt-chip,
html[data-bs-theme="dark"] .sh-mkt-card { background: rgba(15,23,42,0.72); }
.sh-mkt-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 999px; display: grid; place-items: center;
  background: linear-gradient(135deg, #0ea5e9, #22c55e); color: #fff; font-weight: 700;
}
.sh-mkt-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.sh-mkt-feature-grid article {
  padding: 1rem; border-radius: 1rem; background: rgba(255,255,255,0.65); border: 1px solid rgba(148,163,184,0.25);
}
.sh-mkt-cta-band {
  margin: 3rem 0 1rem; padding: 2rem; border-radius: 1.25rem; text-align: center;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(34,197,94,0.12));
}
.sh-mkt-page-head { margin-bottom: 1.25rem; }
.sh-mkt-page-head h1 { margin: 0 0 0.35rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.sh-mkt-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.sh-mkt-filters input, .sh-mkt-filters select {
  min-width: 140px; padding: 0.55rem 0.7rem; border-radius: 0.65rem; border: 1px solid rgba(148,163,184,0.35); background: transparent; color: inherit;
}
.sh-mkt-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1rem; align-items: start; }
.sh-mkt-map { min-height: 360px; border-radius: 1rem; border: 1px solid rgba(148,163,184,0.3); overflow: hidden; }
.sh-mkt-detail { max-width: 720px; display: grid; gap: 1rem; }
.sh-mkt-results h2 { margin: 1.25rem 0 0.65rem; font-size: 1.1rem; }
@media (max-width: 900px) {
  .sh-mkt-split, .sh-mkt-search { grid-template-columns: 1fr; }
  .sh-mkt-map { min-height: 240px; }
}

/* Sprint 11  enterprise polish */
:focus-visible {
  outline: none;
  box-shadow: var(--sh-focus);
}
.sh-btn:focus-visible,
.sh-icon-btn:focus-visible,
.sh-nav-link:focus-visible,
.sh-search-input:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  box-shadow: var(--sh-focus);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.sh-offline-banner {
  position: sticky; top: 0; z-index: 80; padding: 0.55rem 1rem; text-align: center;
  background: var(--sh-warning-soft); color: var(--sh-ink); border-bottom: 1px solid var(--sh-border);
  font-size: 0.9rem; font-weight: 600;
}
.sh-kbd-btn {
  border: 0; background: transparent; cursor: pointer; font: inherit;
}
.sh-command-palette { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: start center; padding: 12vh 1rem 1rem; }
.sh-command-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.45); backdrop-filter: blur(4px); }
.sh-command-dialog {
  position: relative; width: min(640px, 100%); border-radius: 1rem; overflow: hidden;
  background: var(--sh-bg-elevated); border: 1px solid var(--sh-border); box-shadow: var(--sh-shadow-lift);
}
.sh-command-input-wrap {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.9rem 1rem; border-bottom: 1px solid var(--sh-border);
}
.sh-command-input {
  flex: 1; border: 0; background: transparent; outline: none; font-size: 1.05rem; color: inherit;
}
.sh-command-body { max-height: min(50vh, 420px); overflow: auto; padding: 0.5rem; }
.sh-command-foot {
  display: flex; gap: 1rem; flex-wrap: wrap; padding: 0.55rem 1rem; border-top: 1px solid var(--sh-border);
  color: var(--sh-muted); font-size: 0.78rem;
}
.sh-command-foot kbd { margin-right: 0.15rem; }
.sh-drawer { position: fixed; inset: 0; z-index: 1100; }
.sh-drawer-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.35); }
.sh-drawer-panel {
  position: absolute; top: 0; right: 0; width: min(400px, 100%); height: 100%;
  background: var(--sh-bg-elevated); border-left: 1px solid var(--sh-border);
  display: flex; flex-direction: column; box-shadow: var(--sh-shadow-lift);
}
.sh-drawer-head, .sh-drawer-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 1rem 1.1rem; border-bottom: 1px solid var(--sh-border);
}
.sh-drawer-foot { border-bottom: 0; border-top: 1px solid var(--sh-border); }
.sh-drawer-head h2 { margin: 0; font-size: 1.1rem; }
.sh-drawer-body { flex: 1; overflow: auto; padding: 0.75rem 1rem; }
.sh-drawer-list { display: grid; gap: 0.35rem; }
.sh-drawer-item {
  display: grid; gap: 0.15rem; padding: 0.7rem 0.75rem; border-radius: 0.75rem;
  text-decoration: none; color: inherit;
}
.sh-drawer-item:hover { background: var(--sh-surface); }
.sh-toast-stack {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 1300; display: grid; gap: 0.5rem; width: min(360px, calc(100vw - 2rem));
}
.sh-dot.is-live {
  background: var(--sh-danger); box-shadow: 0 0 0 3px var(--sh-danger-soft);
}
.sh-datagrid-toolbar {
  display: flex; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 0.75rem; align-items: center;
}
.sh-datagrid-toolbar-left, .sh-datagrid-toolbar-right { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.sh-table-sticky thead th {
  position: sticky; top: 0; z-index: 2; background: var(--sh-bg-elevated); box-shadow: 0 1px 0 var(--sh-border);
}
.sh-table-virtual { max-height: min(70vh, 720px); overflow: auto; }
.sh-th-check, .sh-td-check { width: 2.25rem; }
.sh-columns-menu { min-width: 200px; padding: 0.35rem; }
.sh-btn-lg { padding: 0.8rem 1.25rem; font-size: 1.02rem; }
.sh-landing-cta-hero { margin-top: 0.35rem; }
.sh-mkt-trust { margin: 0.75rem 0 0.25rem; font-size: 0.9rem; }
.sh-landing-cta-roles { margin-top: 0.35rem; }
.sh-slide-in { animation: sh-fade-up 220ms var(--sh-ease) both; }
@keyframes sh-fade-up {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
.sh-card:hover { box-shadow: var(--sh-shadow-hover); }
.sh-mkt-card:focus-visible, .sh-mkt-chip:focus-visible { box-shadow: var(--sh-focus); }
.sh-page-title { letter-spacing: -0.02em; }
.sh-page-subtitle { margin-top: 0.25rem; }
.sh-content { padding-bottom: 2.5rem; }
