/* =========================================================
   AIRA APP.CSS — Clean + Premium (Glass) + Theme Tokens
   ========================================================= */

/* -------------------------
   TOKENS (Single Source of Truth)
   ------------------------- */
:root{
  /* Brand */
  --brand: #3a287c; /* primary */
  --brandBlue: #2b82f8;
  --brandPink: #ff2e54;
  --brandLime: #e5fc00;

  /* Signature gradient */
  --grad-brand: linear-gradient(90deg, #e5fc00, #3a287c, #2b82f8, #ff2e54);

  /* Light mode (less washed out) */
  --bg: #f5f6fa;
  --panel: rgba(255,255,255,.78);
  --panelSolid: #ffffff;

  --text: #0b1220;
  --muted: rgba(11,18,32,.62);

  --border: rgba(11,18,32,.10);
  --borderStrong: rgba(11,18,32,.16);

  --shadow: none;

  /* Accents */
  --purpleSoft: rgba(58,40,124,.12);

  /* Glass */
  --glassBlur: 0;
  --focus: rgba(58,40,124,.22);

  /* Radius */
  --r-xl: 23px;
  --r-lg: 18px;
  --r-md: 14px;
  --r-pill: 999px;
}

/* Auto dark mode */
@media (prefers-color-scheme: dark){
  :root{
    --bg: #070a10;
    --panel: rgba(13,17,23,.72);
    --panelSolid: #0d1117;

    --text: #f2f5f8;
    --muted: rgba(242,245,248,.70);

    --border: rgba(242,245,248,.12);
    --borderStrong: rgba(242,245,248,.18);

    --shadow: none;

    --purpleSoft: rgba(58,40,124,.20);

    --glassBlur: 16px;
    --focus: rgba(229,252,0,.14);
  }
}

/* Forced Light mode (wins over Auto) */
html[data-theme="light"]{
  --bg: #f5f6fa;
  --panel: rgba(255,255,255,.78);
  --panelSolid: #ffffff;

  --text: #0b1220;
  --muted: rgba(11,18,32,.62);

  --border: rgba(11,18,32,.10);
  --borderStrong: rgba(11,18,32,.16);

  --shadow: none;

  --purpleSoft: rgba(58,40,124,.12);

  --glassBlur: 14px;
  --focus: rgba(58,40,124,.22);
}

/* Forced Dark mode (wins over Auto) */
html[data-theme="dark"]{
  --bg: #070a10;
  --panel: rgba(13,17,23,.72);
  --panelSolid: #0d1117;

  --text: #f2f5f8;
  --muted: rgba(242,245,248,.70);

  --border: rgba(242,245,248,.12);
  --borderStrong: rgba(242,245,248,.18);

  --shadow: none;

  --purpleSoft: rgba(58,40,124,.20);

  --glassBlur: 16px;
  --focus: rgba(229,252,0,.14);
}


/* Native UI hint */
html{ color-scheme: light dark; }

/* -------------------------
   RESET / BASE
   ------------------------- */
*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------
   PREMIUM GLASS SURFACES (global)
   ------------------------- */
.sh-panel,
.sh-kpi,
.sh-card,
.sh-left-inner,
.sh-comment,
.sh-file,
.sh-tl-body,
.sh-drop,
.sh-dropzone,
.sh-topbar,
.sh-topbar-link,
.sh-user-menu,
.sh-mobile-nav-drawer{
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--glassBlur));
  -webkit-backdrop-filter: blur(var(--glassBlur));
}

.sh-card,
.sh-left-inner{ border-radius: var(--r-xl); }
.sh-panel,
.sh-kpi,
.sh-comment,
.sh-file,
.sh-tl-body,
.sh-drop,
.sh-dropzone{ border-radius: var(--r-lg); }

.sh-input,
.sh-select,
.sh-btn,
.sh-quick-btn,
.sh-user-btn,
.sh-burger,
.sh-mobile-nav-x,
.sh-search-input{
  border-radius: var(--r-pill) !important;
}

/* A subtle “shine” that feels like macOS */
.sh-panel,
.sh-kpi,
.sh-prod{
  position: relative;
  overflow: hidden;
}
.sh-panel:before,
.sh-kpi:before,
.sh-prod:before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background: radial-gradient(800px 220px at 20% 0%, rgba(255,255,255,.38), transparent 60%);
  opacity: .55;
}
html[data-theme="dark"] .sh-panel:before,
html[data-theme="dark"] .sh-kpi:before,
html[data-theme="dark"] .sh-prod:before{
  background: radial-gradient(800px 220px at 20% 0%, rgba(242,245,248,.12), transparent 55%);
  opacity: .75;
}

/* -------------------------
   AUTH SHELL (login/join)
   ------------------------- */
.sh-root{
  min-height: 100vh;
  display:flex;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
}

.sh-shell{
  width: 100%;
  display:flex;
  gap: 20px;
  align-items: stretch;
  justify-content: space-between;
}

.page-id-210 .sh-shell, .page-id-206 .sh-shell { align-items: center;}

.sh-left, .sh-right{
  flex: 1 1 0;
  display:flex;
}
.sh-logo-wrap{ display:flex; }

.sh-left-inner{
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.stepholt-ai-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-brand);
    background-size: 300% 300%;
    animation: stepholtAIMove 40s ease infinite;
    opacity: 0.22;
    z-index: 0;
    filter: saturate(1.05);
}
html[data-theme="dark"] .stepholt-ai-bg{ opacity: 0.30; }

@keyframes stepholtAIMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.sh-brand{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.sh-logo{
  height: 40px;
  width: auto;
  display: block;
  margin: 10%;
}

.sh-left-footer{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
}

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

.sh-right{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
}

.sh-card{
  width: 100%;
  display:flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px !important;
}

/* Auth pages keep max width; app pages will override below */
.sh-root .sh-card{ max-width: 460px; }

.sh-card-head{
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.sh-title{
  margin:0;
  font-size: 26px;
  line-height: 1.15;
}

.sh-subtitle{
  margin:0;
  font-size: 16px;
  color: var(--muted);
}

.sh-alert {
    padding: 15px 30px;
    border-radius: 999px;
    background: rgba(58, 40, 124, 0.6);
    border: 1px solid rgba(58, 40, 124);
    color: var(--text);
    font-size: 16px;
}

.sh-form{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.sh-label{
  font-size: 16px;
  color: var(--muted);
  display:flex;
  padding: 20px 0 10px 0;
}

.page-id-128 .sh-label{
  padding: 20px 0 0 0;
}


.sh-input{
  display:flex;
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.18);
  color: var(--text);
  outline: none;
}
html[data-theme="dark"] .sh-input{ background: rgba(242,245,248,.06); }

.sh-input:focus{
  border-color: var(--borderStrong);
  box-shadow: 0 0 0 4px var(--focus);
}

.sh-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.sh-check{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 16px;
  color: var(--muted);
}

.sh-link{
  font-size: 16px;
  color: var(--muted);
}
.sh-link:hover{ color: var(--text); }

/* Buttons */
.sh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform .08s ease, filter .15s ease, background .15s ease, border-color .15s ease;
  padding: 12px 16px;
  width: auto;
      transition: all .3s ease;
}

.sh-form .sh-btn, .sh-refbox-actions .sh-btn{ width: 100%; }

.sh-btn:hover{
  border-color: rgba(58,40,124,.30);
  background: linear-gradient(135deg, rgba(43,130,248,.88), rgba(58,40,124,.96));
	color: #FFFFFF !important;
}
.sh-btn:active{ transform: translateY(1px); }

.sh-btn-primary{
  color: #fff;
  border-color: rgba(58,40,124,.22);
  background: linear-gradient(135deg, rgba(58,40,124,.96), rgba(43,130,248,.88));
  box-shadow: none;
}
.sh-btn-primary:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.sh-btn-primary:active{ transform: translateY(0); }

.sh-btn-secondary{
  background: rgba(140,140,140,.10);
  border-color: var(--border);
}

.sh-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 6px 0 2px;
  color: var(--muted);
  font-size: 16px;
}
.sh-divider span{ display:flex; padding: 0 10px; }
.sh-divider:before,
.sh-divider:after{
  content:"";
  flex: 1 1 0;
  height: 1px;
  background: var(--border);
}

.sh-footnote{
  margin: 6px 0 0;
  font-size: 16px;
  color: var(--muted);
}

/* Password field wrapper */
.sh-pass{
  position: relative;
  display:flex;
  align-items:center;
  gap: 10px;
}
.sh-input-pass{
  width: 100%;
  padding-right: 44px;
}
.sh-eye{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .06s ease, color .2s ease;
}
.sh-eye:hover{
  border-color: rgba(58,40,124,.25);
  background: rgba(58,40,124,.06);
  color: var(--text);
}
.sh-eye:active{ transform: translateY(calc(-50% + 1px)); }
.sh-eye:focus{ outline: none; }
.sh-eye:focus-visible{ border-color: rgba(58,40,124,.35); box-shadow: 0 0 0 4px var(--focus); }

.sh-eye-icon{ width: 18px; height: 18px; fill: currentColor; display: block; }
.sh-eye-closed{ display: none; }
.sh-eye.is-on .sh-eye-open{ display: none; }
.sh-eye.is-on .sh-eye-closed{ display: block; }

/* Loading state */
.sh-btn.is-loading{ opacity: .85; pointer-events: none; }
.sh-btn.is-loading .sh-btn-text:after{ content: "…"; }

/* Error shake */
.has-error .sh-card{ animation: shShake .24s ease-in-out 1; }
@keyframes shShake{
  0%{ transform: translateX(0); }
  25%{ transform: translateX(-4px); }
  50%{ transform: translateX(4px); }
  75%{ transform: translateX(-3px); }
  100%{ transform: translateX(0); }
}

/* Tiny hint text */
.sh-hint{ min-height: 16px; font-size: 16px; color: var(--muted); }

/* Loader */
.sh-loader{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(6px);
  z-index: 9999;
}
html[data-theme="dark"] .sh-loader{ background: rgba(13,17,23,.62); }
.sh-loader.is-on{ display: flex; }

.sh-loader-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panelSolid);
  box-shadow: var(--shadow);
  min-width: 220px;
}

/* Bolt spinner */
.sh-bolt{
  width: 100px;
  height: 100px;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
}
.sh-bolt svg{
  width: 100px;
  height: 100px;
  display:block;
  animation: shBoltPulse 900ms ease-in-out infinite;
  transform-origin: 50% 50%;
}
/* Gradient glow */
.sh-bolt:before{
  content:"";
  position:absolute;
  inset:-16px;
  border-radius: 999px;
  background: var(--grad-brand);
  background-size: 300% 300%;
  animation: stepholtAIMove 16s ease infinite;
  opacity: .18;
  filter: blur(10px);
}
.sh-loader-text{ font-size: 16px; color: var(--muted); }
@keyframes shBoltPulse{
  0%{ transform: scale(1); opacity: .9; }
  50%{ transform: scale(1.08); opacity: 1; }
  100%{ transform: scale(1); opacity: .9; }
}

/* -------------------------
   APP SHELL (dashboard + pages)
   ------------------------- */
.sh-app{
  display:flex;
  min-height: 100vh;
  background: var(--bg);
}

/* Sidebar */
.sh-side{
  width: 260px;
  flex: 0 0 260px;
  display:flex;
  flex-direction:column;
  padding: 18px;
  gap: 14px;
}

.sh-side-top{ display:flex; align-items:center; justify-content:flex-start; }
.sh-side-brand{ display:flex; align-items:center; text-decoration:none; }
.sh-side-logo{ height: 26px; width:auto; display:block; }

.sh-nav{
  display:flex;
  flex-direction:column;
  gap: 0;
}

.sh-nav-item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--muted);
  border: 1px solid transparent;
}

.sh-nav-item:hover{
  color: var(--text);
  background: rgba(140,140,140,.10);
  border-color: rgba(140,140,140,.18);
}

.sh-nav-item.is-active{
  color: var(--text);
  background: var(--purpleSoft);
  border-color: rgba(58,40,124,.22);
  box-shadow: 0 10px 30px rgba(58,40,124,.12);
}

.sh-nav-ico{ width:18px; display:inline-flex; align-items:center; justify-content:center; opacity:.9; }

.sh-nav-sep{
  height:1px;
  background: var(--border);
  margin: 8px 0;
}

.sh-side-bottom{ display:flex; flex-direction:column; }

.sh-nav-logout:hover{
  background: rgba(255, 46, 84, .08);
  border-color: rgba(255, 46, 84, .18);
}

/* Main area */
.sh-main{
  flex: 1 1 auto;
  display:flex;
  flex-direction:column;
  min-width: 0;
  background: var(--bg); /* FIX: was using border colour */
}

/* Header */
.sh-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--panel); /* FIX: was using border colour */
}

.sh-head-left{ display:flex; flex-direction:column; gap: 4px; }
.sh-head-title{ font-size: 18px; font-weight: 800; color: var(--text); }
.sh-head-sub{
  font-size: 16px;
  color: var(--muted);
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}

.sh-head-left .sh-user-btn {
	background: none;
		border: none;
}

.sh-pill{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(140,140,140,.08);
  color: var(--text);
  font-weight: 400;
  font-size: 12px;
}

.sh-head-right{ display:flex; align-items:center; gap: 10px; flex-wrap:wrap; }

.sh-search{
  position: relative;
  display:flex;
  align-items:center;
}

.sh-search-input{
  width: 360px;
  max-width: 42vw;
  padding: 10px 40px 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.18);
  color: var(--text);
}
html[data-theme="dark"] .sh-search-input{ background: rgba(242,245,248,.06); }

.sh-search-input:disabled{ opacity: .7; cursor:not-allowed; }
.sh-search-ico{ position:absolute; right: 14px; opacity: .6; pointer-events:none; }

/* Content layout */
.sh-content{ padding: 18px 22px; }

.sh-grid{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}

.sh-grid-main{
  flex: 1 1 auto;
  min-width: 0;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.sh-grid-side{
  width: 320px;
  flex: 0 0 320px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.sh-panel{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 12px;
	margin: 0 0 20px 0
}

.sh-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 10px;
}

.sh-panel-title{ font-weight: 900; color: var(--text); }

/* App pages should NOT cap card width */
.sh-app .sh-card{ max-width: none; box-shadow: none; }

/* Cardlist */
.sh-cardlist{
  display:flex;
  flex-direction:row;
  flex-wrap: wrap;
  gap: 10px;
}

.sh-cardlink{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  gap: 8px;
  padding: 12px;
}

.sh-cardlink-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
}

.sh-cardlink-title{ font-weight: 800; color: var(--text); }

.sh-cardlink-meta{
  font-size: 16px;
  color: var(--muted);
}

/* Quick actions */
.sh-quick{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.sh-quick-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 12px;
  text-decoration:none;
  border: 1px solid var(--border);
  background: rgba(140,140,140,.08);
  color: var(--text);
  font-weight: 800;
  width: 100%;
  transition: border-color .15s ease, background .15s ease, transform .08s ease;
}
.sh-quick-btn:hover{
  border-color: rgba(58,40,124,.22);
  background: rgba(58,40,124,.06);
  transform: translateY(-1px);
}
.sh-quick-btn:active{ transform: translateY(0); }

/* Header search + filter form */
.sh-head-form{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}

.sh-select{
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.18);
  color: var(--text);
  min-width: 140px;
}
html[data-theme="dark"] .sh-select{ background: rgba(242,245,248,.06); }

/* KPI cards */
.sh-kpis{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.sh-kpi{
  flex: 1 1 220px;
  min-width: 220px;
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.sh-kpi-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.sh-kpi-label{
  font-weight: 900;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.sh-kpi-chip{
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(58,40,124,.20);
  background: rgba(58,40,124,.10);
  color: var(--text);
}

.sh-kpi-value{
  font-size: 28px;
  font-weight: 950;
  color: var(--text);
  line-height: 1.05;
}

.sh-kpi-muted{
  font-size: 16px;
  color: var(--muted);
  font-weight: 800;
}

.sh-kpi-sub{ font-size: 16px; color: var(--muted); }

.sh-prose{
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
.sh-prose p{ margin: 0 0 10px; }
.sh-prose h2,.sh-prose h3{ margin: 14px 0 8px; }

/* SLA row */
.sh-cardlink-sla{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
}
.sh-sla-chip {
    display: inline-flex;
    align-items: center;
    padding: 13px 23px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: normal;
    border: 1px solid var(--border);
    background: rgba(140, 140, 140, .08);
    color: var(--text);
    margin: 0 10px;
}
.sh-sla-on_track { background: rgba(16, 185, 129, .50); border-color: rgba(16, 185, 129, .75); }
.sh-sla-due_soon { background: rgba(245, 158, 11, .50); border-color: rgba(245, 158, 11, .75); }
.sh-sla-overdue  { background: rgba(239, 68, 68, .50); border-color: rgba(239, 68, 68, .75); }

/* Badges */
.sh-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  padding:13px 23px;
  border-radius:999px;
  border:1px solid var(--border);
  color: var(--text);
  background: rgba(140,140,140,.06);
  white-space: nowrap;
}
.sh-badge-new{ border-color: rgba(58,40,124,.35); background: rgba(58,40,124,.10); }
.sh-badge-progress{ border-color: rgba(43,130,248,.35); background: rgba(43,130,248,.10); }
.sh-badge-review{ border-color: rgba(255,166,0,.35); background: rgba(255,166,0,.12); }
.sh-badge-queued{ border-color: rgba(140,140,140,.35); background: rgba(140,140,140,.10); }
.sh-badge-delivered{ border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.12); }
.sh-badge-closed{ border-color: rgba(120,120,120,.35); background: rgba(120,120,120,.06); color: var(--muted); }

/* Sections */
.sh-section{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top: 8px;
}
.sh-section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}
.sh-rowlink:hover{ background: rgba(140,140,140,.06); }

/* User menu */
.sh-user{ position: relative; display: inline-flex; align-items: center; }

.sh-user-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(140,140,140,.18);
  background: rgba(140,140,140,.08);
  color: inherit;
  cursor: pointer;
}

.sh-user-avatar{
  width: 50px;
  height: 50px;
  border-radius: 999px;
  object-fit: cover;
}

.sh-user-name{ font-weight: 800; font-size: 14px; }
.sh-user-caret{ opacity: .7; font-size: 12px; }

.sh-user-menu {
    position: absolute;
    right: calc(25% + 10px);
    top: calc(65% + 10px);
    min-width: 180px;
    border-radius: 14px;
    padding: 8px;
    z-index: 50;
}

.sh-user-item{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.sh-user-item:hover{ background: rgba(140,140,140,.10); }

.sh-user-sep{
  height: 1px;
  margin: 6px 2px;
  background: var(--border);
}

/* Mobile topbar burger */
.sh-burger{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sh-burger-lines{
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: block;
}
.sh-burger-lines:before,
.sh-burger-lines:after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: currentColor;
  border-radius: 2px;
}
.sh-burger-lines:before{ top:-6px; }
.sh-burger-lines:after{ top:6px; }

/* Off-canvas nav */
.sh-mobile-nav[hidden]{ display:none; }

.sh-mobile-nav{
  position: fixed;
  inset: 0;
  z-index: 200;
}

.sh-mobile-nav-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(var(--glassBlur));
  -webkit-backdrop-filter: blur(var(--glassBlur));
}
html[data-theme="dark"] .sh-mobile-nav-overlay{ background: rgba(0,0,0,.55); }

.sh-mobile-nav-drawer{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(88vw, 360px);
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 60px rgba(0,0,0,.35);
  transform: translateX(100%);
  transition: transform .22s ease;
  display: flex;
  flex-direction: column;
}
.sh-mobile-nav-open .sh-mobile-nav-drawer{ transform: translateX(0); }

.sh-mobile-nav-head{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 14px;
    border-bottom: none;
    position: absolute;
    right: 10px;
	z-index: 999;
}

.sh-mobile-nav-x{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(140,140,140,.08);
  color: inherit;
  cursor: pointer;
  font-size: 16px;
}

.sh-mobile-nav-body{
  padding: 0;
  overflow: auto;
  flex: 1;
}

/* Make cloned sidebar behave nicely in drawer */
.sh-side.is-mobile-drawer{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.sh-mobile-nav-foot{
  padding: 12px;
  border-top: 1px solid var(--border);
}

/* Icon mask */
.sh-icon-mask{
  width:15px;
  height:15px;
  background: var(--muted);
  -webkit-mask: var(--icon) no-repeat center / contain;
  mask: var(--icon) no-repeat center / contain;
  display:inline-block;
}

/* -------------------------
   REQUEST THREAD / FILES / TIMELINE (kept)
   ------------------------- */
.sh-thread{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.sh-thread-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.sh-thread-title{ font-weight:700; color: var(--text); }

.sh-comment{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding: 12px;
}

.sh-comment-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
  color: var(--muted);
}

.sh-comment-author{
  display:flex;
  align-items:center;
  gap:8px;
  min-width: 0;
}

.sh-comment-body{
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.sh-comment-form textarea{
  min-height: 110px;
  resize: vertical;
}

.sh-files{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.sh-files-grid{ display:flex; flex-direction:column; gap:10px; }

.sh-file{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px;
}

.sh-file a{
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.sh-file a:hover{ text-decoration: underline; }

.sh-file-meta{ font-size: 16px; color: var(--muted); }

.sh-upload-row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap: wrap;
}
.sh-upload-row input[type="file"]{ width: 100%; }

/* Drag + drop upload */
.sh-drop{
  position: relative;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(140,140,140,.55);
  background: rgba(140,140,140,.06);
}
.sh-drop:hover{
  border-color: rgba(58,40,124,.45);
  background: rgba(58,40,124,.06);
}
.sh-drop.is-over{
  border-color: rgba(58,40,124,.65);
  background: rgba(58,40,124,.08);
}
.sh-drop .sh-file{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}
.sh-drop-ui{
  display:flex;
  flex-direction:column;
  gap:4px;
  pointer-events:none;
}
.sh-drop-title{ font-weight:700; color: var(--text); }
.sh-drop-sub{ font-size:12px; color: var(--muted); }

.sh-drop-picked{
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap:10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.sh-drop-thumb{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover;
  background: rgba(140,140,140,.08);
  flex: 0 0 auto;
}

.sh-drop-name{
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.sh-file-left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
}
.sh-file-thumb{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover;
  background: rgba(140,140,140,.08);
  flex: 0 0 auto;
}
.sh-file-chip{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(140,140,140,.06);
  color: var(--text);
  font-weight: 800;
  font-size: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  letter-spacing: .3px;
  flex: 0 0 auto;
}

/* Timeline list (existing) */
.sh-timeline{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.sh-timeline-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.sh-tl-item{ display:flex; gap:12px; }

.sh-tl-rail{
  display:flex;
  flex-direction:column;
  align-items:center;
  width: 14px;
  flex: 0 0 14px;
}
.sh-tl-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(58,40,124,.75);
  border: 2px solid rgba(58,40,124,.15);
}
.sh-tl-line{
  width:2px;
  flex: 1 1 auto;
  background: rgba(140,140,140,.25);
  margin-top: 6px;
  border-radius: 999px;
}
.sh-tl-body{
  flex: 1;
  padding: 10px 12px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.sh-tl-label{ font-weight: 700; color: var(--text); font-size: 16px; }
.sh-tl-meta{ font-size: 16px; color: var(--muted); }

/* Dropzone (newer version kept, fixed duplicates) */
.sh-dropzone{
  position: relative;
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 14px;
  background: rgba(140,140,140,.04);
  cursor: pointer;
  overflow: hidden;
}
.sh-dropzone-title{ font-weight: 900; color: var(--text); }
.sh-dropzone-sub{ margin-top: 4px; font-size: 16px; color: var(--muted); }
.sh-dropzone input[type="file"]{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.sh-dropzone.is-dragover{
  border-color: rgba(58,40,124,.45);
  background: rgba(58,40,124,.07);
}

/* Upload loading state */
.sh-upload-btn{ display:flex; align-items:center; justify-content:center; gap:10px; }
.sh-upload-spin{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(140,140,140,.35);
  border-top-color: rgba(58,40,124,.95);
  display:none;
  animation: shSpin .8s linear infinite;
}
@keyframes shSpin { to { transform: rotate(360deg); } }
.sh-uploading .sh-upload-spin{ display:inline-block; }
.sh-uploading .sh-upload-btn-text{ opacity:.85; }
.sh-uploading button,
button.sh-uploading{ pointer-events:none; opacity:.8; }

/* -------------------------
   TOPBAR (mobile)
   ------------------------- */
.sh-topbar{
  position: fixed;
  top: 16px;
  right: 2.5%;
  z-index: 2;
  width: 95%;
  display:none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
	border-radius: 999px;
}

.sh-topbar-link{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .06s ease;
}
.sh-topbar-link:hover{
  border-color: rgba(58,40,124,.35);
  background: rgba(58,40,124,.06);
  color: var(--text);
  text-decoration: none;
}
.sh-topbar-link:active{ transform: translateY(1px); }

/* Misc */
.textarea{ border-radius: 12px !important; }

.sh-topbar .sh-logo{
  height: 30px;
  margin: 0 10%;
}

.sh-stripe-logo{
  height: 25px;
  width: auto;
  display: block;
  margin: 0%;
}
.sh-side .sh-stripe-logo{ margin: 10px auto; }
.sh-side .sh-btn{ width: 100%; margin: 20px 0px; }

/* -------------------------
   DASHBOARD UI (from earlier)
   ------------------------- */
.sh-dash-topbar{
  display:flex;
  justify-content:flex-end;
  margin: 6px 0 14px;
}
.sh-dash-section{ margin: 0 0 20px 0; }
.sh-dash-2col{
  display:grid;
  grid-template-columns: 3fr 1fr;
  gap: 18px;
}
@media (max-width: 980px){
  .sh-dash-2col{ grid-template-columns: 1fr; }
}

/* Product tiles */
.sh-prodgrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 1100px){
  .sh-prodgrid{ grid-template-columns: repeat(1, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .sh-prodgrid{ grid-template-columns: 1fr; }
}

.sh-prod{
  display:block;
  padding: 14px 14px 12px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  text-decoration:none;
  color: var(--text);
  transition: transform .15s ease, filter .15s ease;
}
.sh-prod:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.sh-prod-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.sh-prod-title{ font-weight: 800; }
.sh-prod-badge .sh-pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: var(--purpleSoft);
  color: var(--text);
}
.sh-pill--muted{ opacity:.75; }

.sh-prod-metric{ font-size: 32px; line-height: 1.05; font-weight: 900; margin-bottom: 6px; }
.sh-metric-big{ font-size: 32px; font-weight: 900; }
.sh-metric-muted{ opacity:.55; font-weight: 900; margin-left: 4px; }

.sh-prod-sub{ color: var(--muted); font-size: 13px; margin-bottom: 10px; }

.sh-prod-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.sh-prod-pct{ font-size: 12px; color: var(--muted); font-weight:800; min-width: 34px; text-align:right; }

/* Segmented bar */
.sh-segbar{ display:flex; gap: 3px; flex: 1; }
.sh-seg{
  height: 30px;
  border-radius: 999px;
  flex: 1;
  background: rgba(127,127,127,.20);
}
.sh-seg.is-on{ background: rgba(127,127,127,.42); }

html[data-theme="dark"] .sh-seg{ background: rgba(242,245,248,.10); }
html[data-theme="dark"] .sh-seg.is-on{ background: rgba(242,245,248,.28); }

.sh-prod--inactive .sh-prod-metric,
.sh-prod--inactive .sh-prod-sub{ opacity:.75; }


.sh-prod-hover{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0));
  opacity:0;
  transition: opacity .15s ease;
  pointer-events:none;
}
html[data-theme="dark"] .sh-prod-hover{
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0));
}
.sh-prod:hover .sh-prod-hover{ opacity:1; }
.sh-prod-hover-title{ font-weight:900; color: #fff; }
.sh-prod-hover-cta{ margin-top: 6px; font-weight:900; opacity:.9; color:#fff; }

/* Modal helpers */
.sh-modal[hidden]{ display:none; }
.sh-modal{ position:fixed; inset:0; z-index: 9999; }
.sh-modal__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.45); }
.sh-modal__panel{
  position:relative;
  width:min(520px, calc(100% - 24px));
  margin: 80px auto 0;
  background: var(--panelSolid);
  color: var(--text);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.sh-modal__head{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.sh-modal__title{ font-weight: 900; font-size: 18px; }
.sh-modal__body{ padding: 16px; display:flex; flex-direction:column; gap: 14px; }
.sh-togglelist{ display:flex; flex-direction:column; gap: 10px; }
.sh-toggle{ display:flex; gap: 10px; align-items:center; font-weight: 800; }
body.sh-modal-open{ overflow:hidden; }

.sh-theme-pills{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}
.sh-theme-pills .sh-btn[aria-pressed="true"]{
  background: var(--purpleSoft);
  border-color: var(--border);
}

/* -------------------------
   RESPONSIVE
   ------------------------- */
@media (max-width: 980px){
  .sh-grid{ flex-direction:column; }
  .sh-grid-side{ width: 100%; flex: 1 1 auto; }
  .sh-search-input{ width: 100%; max-width: 100%; }
}

@media (max-width: 960px){
  .sh-shell{ flex-direction: column; }
  .sh-left-inner{ min-height: 240px; }
}

@media (max-width: 840px){
  .sh-side{ display:none; }
  .sh-head{ padding: 30% 4% 6% 4%; }
  .sh-content{ padding: 16px; }
  .sh-topbar{ display:flex; }
}

/* Stop iOS zoom + keep inputs readable */
@media (max-width: 840px){
  input, select, textarea{ font-size: 16px !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .stepholt-ai-bg,
  .sh-bolt svg{
    animation: none !important;
  }
  .sh-btn,
  .sh-nav-item,
  .sh-cardlink{
    transition: none !important;
  }
}

/* =========================================
   Unified Badges (subtle, premium, consistent)
   ========================================= */

:root{
  --brand-plans:   #3a287c; /* Plans / Creative */
  --brand-hosting: #2b82f8; /* Hosting */
  --brand-bio:     #ff2e54; /* AIRA Bio */
  --brand-web:     #e5fc00; /* Websites */
}

/* Base badge */
.sh-badge{
  --badge-accent: rgba(140,140,140,1);
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(140,140,140,.22);
  background: rgba(140,140,140,.10);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sh-badge:before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--badge-accent);
  box-shadow: 0 0 0 3px rgba(0,0,0,.02);
  flex: 0 0 auto;
}

/* Soft “glass” polish in light mode */
html[data-theme="light"] .sh-badge,
:root:not([data-theme="dark"]) .sh-badge{
  background: color-mix(in srgb, var(--panel) 70%, rgba(140,140,140,.10) 30%);
}

/* Make badges slightly quieter in dark mode */
html[data-theme="dark"] .sh-badge{
  border-color: rgba(242,245,248,.12);
  background: rgba(242,245,248,.06);
}

/* Status variants (your existing ones can stay; these just standardize) */
.sh-badge--current{ border-color: rgba(34,197,94,.22); background: rgba(34,197,94,.10); }
.sh-badge--active{  border-color: rgba(34,197,94,.22); background: rgba(34,197,94,.10); }
.sh-badge--comp{    border-color: rgba(245,158,11,.22); background: rgba(245,158,11,.10); }
.sh-badge--locked{  border-color: rgba(140,140,140,.22); background: rgba(140,140,140,.10); opacity:.85; }

/* Product accents (Plans/Hosting/Bio/Websites) */
.sh-badge--plans, .sh-badge--scale, .sh-badge--grow, .sh-badge--start {   --badge-accent: var(--brand-plans);   border-color: color-mix(in srgb, var(--brand-plans) 22%, transparent);   background: color-mix(in srgb, var(--brand-plans) 10%, transparent); }
.sh-badge--hosting{ --badge-accent: var(--brand-hosting); border-color: color-mix(in srgb, var(--brand-hosting) 22%, transparent); background: color-mix(in srgb, var(--brand-hosting) 10%, transparent); }
.sh-badge--aira_bio{     --badge-accent: var(--brand-bio);     border-color: color-mix(in srgb, var(--brand-bio) 22%, transparent);     background: color-mix(in srgb, var(--brand-bio) 10%, transparent); }
.sh-badge--web{     --badge-accent: var(--brand-web);     border-color: color-mix(in srgb, var(--brand-web) 28%, transparent);     background: color-mix(in srgb, var(--brand-web) 12%, transparent); }

/* Website accent needs readable text in light mode (yellow can wash out) */
.sh-badge--web{ color: var(--text); }

/* Optional: “Sponsored access” micro label style */
.sh-mini-badge-note{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
/* Product colour via data attribute (single markup everywhere) */
.sh-badge[data-product]{ 
  --badge-accent: rgba(140,140,140,1);
  border-color: rgba(140,140,140,.22);
  background: rgba(140,140,140,.10);
}

/* Plans / Creative */
.sh-badge[data-product="plans"],
.sh-badge[data-product="creative"]{
  --badge-accent: var(--brand-plans);
  border-color: color-mix(in srgb, var(--brand-plans) 22%, transparent);
  background: color-mix(in srgb, var(--brand-plans) 10%, transparent);
}

/* Hosting */
.sh-badge[data-product="hosting"]{
  --badge-accent: var(--brand-hosting);
  border-color: color-mix(in srgb, var(--brand-hosting) 22%, transparent);
  background: color-mix(in srgb, var(--brand-hosting) 10%, transparent);
}

/* AIRA Bio */
.sh-badge[data-product="aira_bio"],
.sh-badge[data-product="aira"]{
  --badge-accent: var(--brand-bio);
  border-color: color-mix(in srgb, var(--brand-bio) 22%, transparent);
  background: color-mix(in srgb, var(--brand-bio) 10%, transparent);
}

/* Websites */
.sh-badge[data-product="web"],
.sh-badge[data-product="website"]{
  --badge-accent: var(--brand-web);
  border-color: color-mix(in srgb, var(--brand-web) 28%, transparent);
  background: color-mix(in srgb, var(--brand-web) 12%, transparent);
}

/* Combo: Bio + Hosting as one */
.sh-badge[data-product="bio_hosting"],
.sh-badge[data-product="hosting_bio"]{
  --badge-accent: var(--brand-hosting); /* dot can be hosting-blue */
  border-color: rgba(43,130,248,.22);
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--brand-hosting) 12%, transparent),
      color-mix(in srgb, var(--brand-bio) 12%, transparent)
    );
}
/* Make product tile a stacking context */
.sh-prod{ position:relative; overflow:hidden; }
.sh-prod-top{ position:relative; z-index:2; }

/* Locked state: dim content below title */
.sh-prod--inactive .sh-prod-metric,
.sh-prod--inactive .sh-prod-sub,
.sh-prod--inactive .sh-prod-bottom{
  opacity:.55;
}

/* Replace the "Not active" overlay with a small corner chip */
.sh-prod-lock{
  position:absolute;
  top: 12px;
  right: 5px;
  z-index:3;
  padding: 10px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 80%, transparent);
  backdrop-filter: blur(10px);
	width:100px;
	text-align: center;
}
/* Default */
.sh-prod{ --tile-accent: rgba(127,127,127,.55); }

/* Product accents */
#tile-creative{ --tile-accent: #3a287c; }
#tile-aira{ --tile-accent: #ff2e54; }
#tile-website{ --tile-accent: #e5fc00; }
#tile-referrals{ --tile-accent: #3a287c; } /* or neutral */

/* Filled segments pick up tile accent */
.sh-prod .sh-seg.is-on{
  background: color-mix(in srgb, var(--tile-accent) 55%, var(--tile-accent));
}

/* Make yellow readable in light mode */
#tile-website .sh-seg.is-on{
  background: color-mix(in srgb, #e5fc00 70%, #0d1117 12%);
}
html[data-theme="dark"] #tile-website .sh-seg.is-on{
  background: color-mix(in srgb, #e5fc00 70%, #e5fc00);
}

/* Referral donut card */
.sh-refcard{
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  background: rgba(255,255,255,.03);
	margin: 0 0 20px 0;
}

.sh-refcard-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.sh-refcard-title{
  font-weight:950;
  font-size:14px;
}

/* Level badge */
.sh-level{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  font-weight:900;
  font-size:12px;
  background: rgba(255,255,255,.06);
}

/* 10 subtle level variants (keep classy, not neon) */
.sh-level--starter{   background: rgba(255,255,255,.05); }
.sh-level--spark{     background: color-mix(in srgb, #2b82f8 16%, transparent); }
.sh-level--bronze{    background: color-mix(in srgb, #b87333 18%, transparent); }
.sh-level--silver{    background: color-mix(in srgb, #9ca3af 18%, transparent); }
.sh-level--gold{      background: color-mix(in srgb, #f59e0b 18%, transparent); }
.sh-level--platinum{  background: color-mix(in srgb, #60a5fa 16%, transparent); }
.sh-level--diamond{   background: color-mix(in srgb, #a78bfa 18%, transparent); }
.sh-level--legend{    background: color-mix(in srgb, #10b981 16%, transparent); }
.sh-level--icon{      background: color-mix(in srgb, #ff2e54 16%, transparent); }
.sh-level--mythic{    background: color-mix(in srgb, #3a287c 18%, transparent); }

.sh-refcard-body{
  display:grid;
  grid-template-columns: 100%;
  gap:16px;
  align-items:center;
}


/* Donut */
.sh-donut{
	margin: 0 auto;
  width:180px;
  height:180px;
  border-radius:999px;
  position:relative;
  border:1px solid var(--border);
  background:
    conic-gradient(
      #2b82f8 0% calc(var(--s1) * 1%),
      #ff2e54 calc(var(--s1) * 1%) calc(var(--s2) * 1%),
      #f59e0b calc(var(--s2) * 1%) calc(var(--s3) * 1%),
      rgba(255,255,255,.10) calc(var(--s3) * 1%) 100%
    );
}

.sh-donut::after{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:999px;
  background: var(--bg, #0b0b10);
  border:1px solid var(--border);
}

.sh-donut-center{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:2;
  text-align:center;
}

.sh-donut-num{
  font-weight:950;
  font-size:34px;
  letter-spacing:-.02em;
}

.sh-donut-sub{
  font-size:12px;
  opacity:.75;
  font-weight:800;
}

/* Legend */
.sh-reflegend{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sh-refrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
}

.sh-refrow span{
  opacity:.85;
}

.sh-refrow strong{
  margin-left:auto;
  font-weight:950;
}

.sh-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid var(--border);
  flex:0 0 auto;
}

.sh-dot--total{  background: rgba(255,255,255,.20); }
.sh-dot--plan{   background: #2b82f8; border-color: color-mix(in srgb, #2b82f8 40%, transparent); }
.sh-dot--voucher{background: #a2ff00; border-color: color-mix(in srgb, #a2ff00 40%, transparent); }
.sh-dot--pay{    background: #ff2e54; border-color: color-mix(in srgb, #ff2e54 40%, transparent); }

.sh-refcard-foot{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--border);
	text-align: center;
}

.sh-pin{
  position: relative;
  display: block;
  padding: 14px 16px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, #fff7a8 0%, #ffe97a 100%);
  box-shadow:
    0 10px 18px rgba(0,0,0,.10),
    0 2px 0 rgba(255,255,255,.65) inset;
  transform: rotate(-0.6deg);
}

/* subtle paper texture */
.sh-pin::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 10px;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.55), transparent 45%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.08) 0px,
      rgba(255,255,255,.08) 2px,
      transparent 2px,
      transparent 6px
    );
  mix-blend-mode: overlay;
  opacity: .6;
}

/* folded corner */
.sh-pin::after{
  content:"";
  position:absolute;
  right: 10px;
  top: 10px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,0) 65%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  border-top-right-radius: 8px;
  opacity: .35;
}

/* little pin dot */
.sh-pin-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(20,20,20,.72);
  margin-bottom: 6px;
}

.sh-pin-kicker::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff3b30;
  box-shadow:
    0 2px 0 rgba(0,0,0,.18),
    0 0 0 2px rgba(255,255,255,.55) inset;
}

/* title link */
.sh-pin-title{
  display: block;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  color: #111;
  text-decoration: none;
}

.sh-pin-title:hover{
  text-decoration: underline;
}

/* date / meta */
.sh-pin .sh-mini{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(20,20,20,.68);
}

/* optional: reduce rotation on mobile for neatness */
@media (max-width: 520px){
  .sh-pin{ transform: rotate(0deg); }
}

/* Activity feed wrapper */
.sh-activitylist{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

/* Row card */
.sh-activityrow{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

/* Title */
.sh-activityrow-title{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  color: #111;
}

/* Date/meta */
.sh-activityrow .sh-mini{
  font-size: 12px;
  color: rgba(20,20,20,.62);
  white-space: nowrap;
}

/* Hover/focus */
.sh-activityrow:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,.14);
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
}

.sh-activityrow:focus-visible{
  outline: 3px solid rgba(58, 40, 124, .25);
  outline-offset: 2px;
}

/* Small screens: stack date under title */
@media (max-width: 520px){
  .sh-activityrow{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .sh-activityrow .sh-mini{
    white-space: normal;
  }
}

/* Theme selector field */
.sh-field{
  display:block;
  padding: 14px 14px 12px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  backdrop-filter: blur(var(--glassBlur));
  -webkit-backdrop-filter: blur(var(--glassBlur));
}

.sh-field-label{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  color: var(--text);
  margin-bottom: 8px;
}

/* Select wrapper feel */
.sh-select{
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 12px 44px 12px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--panelSolid);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;

  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;

  /* Custom arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
}

.sh-select:hover{
  border-color: var(--borderStrong);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.sh-select:focus{
  outline: none;
}

.sh-select:focus-visible{
  border-color: rgba(58,40,124,.35);
  box-shadow:
    0 16px 40px rgba(0,0,0,.12),
    0 0 0 4px var(--focus);
}

/* Options (limited styling support across browsers, but helps on some) */
.sh-select option{
  color: var(--text);
  background: var(--panelSolid);
}

/* Helper text */
.sh-field .sh-mini{
  display:block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.refcode {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin: 10px 0 20px 0;
}

/* Slightly tighter on mobile */
@media (max-width: 520px){
  .sh-field{ padding: 12px 12px 10px; }
  .sh-select{ padding: 11px 42px 11px 11px; }
}

/* ===========================
   AIRA BIO EDITOR (page-aira)
   =========================== */

.sh-bio-editor{
  padding: 18px;
  border-radius: var(--r-xl);
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--glassBlur));
  box-shadow: var(--shadow);
}

/* Make the page feel less "endless" */
.sh-bio-editor > * + *{
  margin-top: 18px;
}

/* Headings inside the form (you use inline font-weight:900 blocks) */
.sh-bio-editor [style*="font-weight:900"]{
  font-weight: 900 !important;
  letter-spacing: .2px;
}

/* Section blocks (targets the many divs with margin-bottom / margin) */
.sh-bio-editor > div[style*="margin-bottom"],
.sh-bio-editor > div[style*="margin:18px 0"],
.sh-bio-editor > div[style*="margin-top:18px"]{
  margin: 0 !important;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.32);
}

@media (prefers-color-scheme: dark){
  .sh-bio-editor > div[style*="margin-bottom"],
  .sh-bio-editor > div[style*="margin:18px 0"],
  .sh-bio-editor > div[style*="margin-top:18px"]{
    background: rgba(255,255,255,.04);
  }
}

/* Label polish */
.sh-bio-editor .sh-label{
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Inputs better spacing */
.sh-bio-editor .sh-input,
.sh-bio-editor select.sh-input,
.sh-bio-editor textarea.sh-input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--borderStrong);
  background: rgba(255,255,255,.55);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}

@media (prefers-color-scheme: dark){
  .sh-bio-editor .sh-input,
  .sh-bio-editor select.sh-input,
  .sh-bio-editor textarea.sh-input{
    background: rgba(0,0,0,.22);
  }
}

.sh-bio-editor .sh-input:focus{
  border-color: rgba(58,40,124,.35);
  box-shadow: 0 0 0 4px var(--focus);
}

/* File input look less raw */
.sh-bio-editor input[type="file"].sh-input{
  padding: 10px;
}

/* Thumb previews look more premium */
.sh-bio-editor img{
  display: block;
}

.sh-bio-editor img[style*="width:100px"]{
  width: 92px !important;
  height: 92px !important;
  border-radius: 16px !important;
  border: 1px solid var(--borderStrong) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Repeat rows (link/product cards) */
.sh-bio-editor div[style*="border:1px solid var(--border)"][style*="border-radius:12px"]{
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--borderStrong) !important;
  background: rgba(255,255,255,.35);
  padding: 14px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  position: relative;
}

@media (prefers-color-scheme: dark){
  .sh-bio-editor div[style*="border:1px solid var(--border)"][style*="border-radius:12px"]{
    background: rgba(255,255,255,.03);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
  }
}

/* Small row label (e.g. "Link 1") */
.sh-bio-editor .sh-mini{
  color: var(--muted);
}

/* Make those placeholder dashed thumbs nicer */
.sh-bio-editor div[style*="border:1px dashed var(--border)"]{
  border-radius: 16px !important;
  border: 1px dashed var(--borderStrong) !important;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.06) 10px,
    rgba(255,255,255,.0) 10px,
    rgba(255,255,255,.0) 20px
  );
}

/* Sticky action bar (Save/Upgrade/Preview/Copy) */
.sh-bio-actions{
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(var(--glassBlur));
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
}

@media (prefers-color-scheme: dark){
  .sh-bio-actions{
    background: rgba(13,17,23,.72);
    box-shadow: 0 22px 65px rgba(0,0,0,.55);
  }
}

/* Buttons within editor feel tighter */
.sh-bio-editor .sh-btn{
  border-radius: 14px;
}

/* Public URL area readout */
.sh-bio-editor .sh-mini[style*="word-break:break-all"]{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.35);
}

@media (prefers-color-scheme: dark){
  .sh-bio-editor .sh-mini[style*="word-break:break-all"]{
    background: rgba(255,255,255,.04);
  }
}

/* Custom colours box */
#shCustomColours{
  border-radius: var(--r-lg) !important;
  background: rgba(229,252,0,.08) !important; /* subtle lime */
  border-color: rgba(229,252,0,.22) !important;
}

/* Premium header */
.sh-head{

  top: 0;
  z-index: 1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--panelSolid) 70%, transparent);
  backdrop-filter: blur(var(--glassBlur));
  -webkit-backdrop-filter: blur(var(--glassBlur));
}

/* subtle “wow” line */
.sh-head:before{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--grad-brand);
  opacity: .55;
  pointer-events:none;
}

.sh-head-left{ flex: 1 1 auto; min-width: 240px; }
.sh-head-right{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* kicker row */
.sh-head-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: -.01em;
}
.sh-head-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand) 14%, transparent);
}
.sh-head-pill{
  margin-left: 2px;
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panelSolid) 78%, transparent);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
}
.sh-head-pill.is-warn{
  background: color-mix(in srgb, var(--brandPink) 10%, transparent);
  border-color: color-mix(in srgb, var(--brandPink) 22%, transparent);
}

/* Title */
.sh-head-title-row{
  position: relative;
  display:flex;
  align-items:flex-end;
  gap:10px;
}
.sh-head-title{
  font-size: 26px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.03em;
}
.sh-head-glow{
  position:absolute;
  left: 0;
  bottom: -10px;
  width: 180px;
  height: 24px;
  background: var(--grad-brand);
  filter: blur(18px);
  opacity: .18;
  pointer-events:none;
}

.sh-head-sub{
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  max-width: 62ch;
}

/* User chip */
.sh-user--chip .sh-user-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panelSolid) 78%, transparent);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.sh-user--chip .sh-user-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}
.sh-user-avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  object-fit: cover;
}
.sh-user-name{
  font-weight: 900;
  max-width: 140px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sh-user-caret{ opacity: .7; }

/* Dropdown aligns nicer under chip */
.sh-user-menu{
  margin-top: 10px;
  border-radius: var(--r-lg);
  border: 1px solid var(--borderStrong);
  background: color-mix(in srgb, var(--panelSolid) 88%, transparent);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-width: 190px;
}
.sh-user-item{
  display:block;
  padding: 12px 14px;
  text-decoration:none;
  font-weight: 850;
  color: var(--text);
}
.sh-user-item:hover{
  background: color-mix(in srgb, var(--brand) 10%, transparent);
}
.sh-user-sep{
  height: 1px;
  background: var(--border);
}

/* Make it stack cleanly on mobile */
@media (max-width: 860px){
  .sh-head{
    flex-direction: column;
    align-items: stretch;
	  padding: 100px 4% 6% 4%;
  }
  .sh-head-right{
    justify-content: flex-start;
  }

}

.sh-side{
  background: var(--panel);
  backdrop-filter: blur(var(--glassBlur));
  -webkit-backdrop-filter: blur(var(--glassBlur));
  border-right: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  height: 100vh;
}

.sh-side:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, #fff 10%, transparent),
    transparent 22%,
    transparent 78%,
    color-mix(in srgb, #000 10%, transparent)
  );
  opacity:.35;
}
.sh-nav-item{
  position: relative;
  border-radius: 14px;
  padding: 12px 12px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  border: 1px solid transparent;
}

.sh-nav-item:hover{
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-color: color-mix(in srgb, var(--brand) 18%, transparent);
  transform: translateY(-1px);
}

.sh-nav-item.is-active{
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  border-color: color-mix(in srgb, var(--brand) 26%, transparent);
}

.sh-nav-item.is-active:before{
  content:"";
  position:absolute;
  left:-10px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: var(--brand-bio);
}

h1 span, h2 span, h3 span h4 span, h5 span {
    background: linear-gradient(90deg, #e5fc00, #3a287c, #2b82f8, #ff2e54, rgb(229, 252, 0));
    background-size: 400%;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: animatetextglow 10s linear infinite;
    display: inline;
}

 @keyframes animatetextglow {
0% {
    background-position: 0%;
}
100% {
    background-position: 400%;
}
}

/* =========================================================
   GLOBAL: NO-GLASS MODE (stable / zero GPU blur)
   Add class: <html class="sh-no-glass">
   ========================================================= */

html.sh-no-glass{
  /* Make the whole UI use solid surfaces */
  --panel: var(--panelSolid);
  --glassBlur: 0px;
}

/* Kill blur only on components that actually used it */
html.sh-no-glass .sh-panel,
html.sh-no-glass .sh-kpi,
html.sh-no-glass .sh-card,
html.sh-no-glass .sh-left-inner,
html.sh-no-glass .sh-comment,
html.sh-no-glass .sh-file,
html.sh-no-glass .sh-tl-body,
html.sh-no-glass .sh-drop,
html.sh-no-glass .sh-dropzone,
html.sh-no-glass .sh-topbar,
html.sh-no-glass .sh-topbar-link,
html.sh-no-glass .sh-user-menu,
html.sh-no-glass .sh-mobile-nav-drawer,
html.sh-no-glass .sh-head,
html.sh-no-glass .sh-side,
html.sh-no-glass .sh-mobile-nav-overlay,
html.sh-no-glass .sh-loader,
html.sh-no-glass .sh-badge,
html.sh-no-glass .sh-prod,
html.sh-no-glass .sh-field,
html.sh-no-glass .sh-activityrow{
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: var(--panelSolid) !important;
}

/* Remove the “shine” overlay (extra compositing) */
html.sh-no-glass .sh-panel:before,
html.sh-no-glass .sh-kpi:before,
html.sh-no-glass .sh-prod:before{
  content: none !important;
  display:none !important;
}

/* Keep borders crisp */
html.sh-no-glass .sh-panel,
html.sh-no-glass .sh-kpi,
html.sh-no-glass .sh-card,
html.sh-no-glass .sh-side,
html.sh-no-glass .sh-head,
html.sh-no-glass .sh-user-menu,
html.sh-no-glass .sh-mobile-nav-drawer,
html.sh-no-glass .sh-field{
  border-color: var(--border) !important;
}

/* Optional: reduce shadows slightly (fewer repaints) */
html.sh-no-glass .sh-panel,
html.sh-no-glass .sh-kpi,
html.sh-no-glass .sh-card{
  box-shadow: 0 10px 30px rgba(0,0,0,.12) !important;
}
@media (prefers-color-scheme: dark){
  html.sh-no-glass .sh-panel,
  html.sh-no-glass .sh-kpi,
  html.sh-no-glass .sh-card{
    box-shadow: 0 14px 40px rgba(0,0,0,.45) !important;
  }
}

/* Remove hover transforms that create new compositor layers */
html.sh-no-glass .sh-nav-item:hover,
html.sh-no-glass .sh-quick-btn:hover,
html.sh-no-glass .sh-prod:hover,
html.sh-no-glass .sh-activityrow:hover{
  transform: none !important;
}


/* =========================================================
   GLOBAL: Disable glass (backdrop-filter) everywhere
   Fixes Chrome GPU crashes / compositor resets
   ========================================================= */

:root{
  /* optional: tighten blur vars so even if used elsewhere it’s mild */
  --glassBlur: 0px;
}

/* Kill all backdrop-filter usage across UI */
*{
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Force panels to solid backgrounds (adjust var names if needed) */
.sh-panel,
.sh-card,
.sh-side,
.offcanvas,
.sh-bio-actions,
.sh-bio-preview,
.sh-bio-editor{
  background: var(--panelSolid, rgba(15,17,22,.96)) !important;
}

/* If you use lots of transparent layers, harden them too */
.sh-nav,
.sh-topbar,
.sh-modal,
.sh-drawer,
.sh-toast,
.sh-dropdown{
  background: var(--panelSolid, rgba(15,17,22,.96)) !important;
}

/* Shadows can also trigger heavy repainting; keep them lighter */
.sh-card,
.sh-panel,
.sh-bio-actions{
  box-shadow: 0 10px 30px rgba(0,0,0,.18) !important;
}

/* Remove transform hover effects that can cause extra compositor layers */
.btn:hover,
.miniBtn:hover,
.sh-nav-item:hover,
.sh-card:hover{
  transform: none !important;
}

:root{
  --panelSolid: rgba(255,255,255,.92);
}
@media (prefers-color-scheme: dark){
  :root{
    --panelSolid: rgba(13,17,23,.96);
  }
}

.sh-bio-views-mini { margin-top: 10px; display: grid; gap: 8px; }

.sh-bio-views-spark {
  opacity: .9;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--panel);
}

.sh-spark { display:block; width: 100%; height: auto; }

.sh-bio-views-ranges{
  display:flex; gap:10px; justify-content:space-between;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--panel);
}
.sh-bio-views-ranges span{
  display:flex; align-items:baseline; gap:6px;
  font-size: 12px;
  opacity: .95;
}
.sh-bio-views-ranges strong{
  font-size: 13px;
  font-weight: 900;
}
.sh-bio-views-ranges em{
  font-style: normal;
  opacity: .7;
  font-weight: 700;
  letter-spacing: .2px;
}


