.side-command {
  position: fixed;
  z-index: 60;
  top: 96px;
  left: 12px;
  width: 72px;
  max-height: calc(100vh - 112px);
  overflow: hidden auto;
  color: #f6fbff;
  background: linear-gradient(160deg, rgba(7,29,50,.96), rgba(2,13,24,.97));
  border: 1px solid rgba(64,234,245,.32);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  box-shadow: 0 20px 60px rgba(0,0,0,.46), inset 0 0 30px rgba(64,234,245,.04);
  scrollbar-width: none;
  transition: width .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.side-command::-webkit-scrollbar { display: none; }
#workflows,#use-cases { scroll-margin-top: 90px; }
.side-command:hover,
.side-command:focus-within {
  width: 238px;
  border-color: rgba(64,234,245,.65);
  box-shadow: 0 25px 75px rgba(0,0,0,.55), 0 0 32px rgba(64,234,245,.1);
}
.side-command-head {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(64,234,245,.18);
  white-space: nowrap;
  overflow: hidden;
}
.side-command-head>span { display: flex; align-items: center; gap: 9px; min-width: 120px; font: 700 10px Space Grotesk; letter-spacing: .14em; color: var(--cyan); }
.side-command-head>span i,.side-command-foot i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: navPulse 2.2s ease-in-out infinite; }
.voice-toggle { display: flex; align-items: center; gap: 6px; border: 0; padding: 5px 7px; color: var(--gold); background: transparent; cursor: pointer; font: 700 9px Space Grotesk; white-space: nowrap; }
.voice-toggle b { font-size: 17px; }
.side-links { display: grid; gap: 2px; padding: 8px; }
.side-links a {
  position: relative;
  min-height: 42px;
  display: grid;
  grid-template-columns: 40px 1fr 7px;
  align-items: center;
  gap: 8px;
  padding: 0 7px;
  overflow: hidden;
  color: #aebfcd;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(64,234,245,.015);
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}
.side-links a:before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(64,234,245,.12), transparent); transform: translateX(-120%); transition: transform .55s ease; }
.side-links a:hover:before,.side-links a:focus-visible:before { transform: translateX(120%); }
.side-links a:hover,.side-links a:focus-visible { color: #fff; border-color: rgba(64,234,245,.35); transform: translateX(2px); outline: none; }
.side-links a.active { color: var(--cyan); border-color: rgba(64,234,245,.5); background: rgba(64,234,245,.09); }
.side-links a b { position: relative; z-index: 1; display: grid; place-items: center; width: 34px; height: 28px; border: 1px solid rgba(231,184,91,.32); color: var(--gold); font: 700 9px Space Grotesk; letter-spacing: .08em; }
.side-links a span { position: relative; z-index: 1; white-space: nowrap; font: 600 12px Space Grotesk; opacity: 0; transform: translateX(-8px); transition: opacity .25s ease .06s, transform .25s ease .06s; }
.side-command:hover .side-links a span,.side-command:focus-within .side-links a span { opacity: 1; transform: none; }
.side-links a>i { width: 5px; height: 5px; border-radius: 50%; background: #45657b; }
.side-links a.active>i { background: var(--cyan); box-shadow: 0 0 11px var(--cyan); }
.side-command-foot { height: 38px; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 0 18px; color: #7891a4; border-top: 1px solid rgba(64,234,245,.14); font: 700 8px Space Grotesk; letter-spacing: .14em; text-decoration: none; transition: color .2s ease, background .2s ease; }
.side-command-foot:hover,.side-command-foot:focus-visible { color: var(--gold); background: rgba(231,184,91,.06); outline: none; }
.side-nav-toggle { display: none; position: fixed; z-index: 61; left: 12px; top: 94px; align-items: center; gap: 8px; padding: 10px 13px; color: var(--cyan); background: rgba(3,17,31,.94); border: 1px solid rgba(64,234,245,.5); box-shadow: 0 12px 35px rgba(0,0,0,.4); font: 700 10px Space Grotesk; letter-spacing: .09em; text-transform: uppercase; }
.side-nav-toggle span { font-size: 16px; }
@keyframes navPulse { 50% { opacity: .4; transform: scale(1.5); } }
@media (max-width: 1100px) {
  .side-nav-toggle { display: flex; }
  .side-command { top: 140px; left: 12px; width: min(260px, calc(100vw - 24px)); transform: translateX(calc(-100% - 24px)); opacity: 0; transition: transform .3s ease, opacity .3s ease; }
  .side-command.open { transform: none; opacity: 1; }
  .side-command:hover,.side-command:focus-within { width: min(260px, calc(100vw - 24px)); }
  .side-links a span { opacity: 1; transform: none; }
}
@media (max-width: 600px) {
  .side-nav-toggle { top: 86px; }
  .side-command { top: 132px; max-height: calc(100vh - 146px); }
}
@media (prefers-reduced-motion: reduce) {
  .side-command-head>span i,.side-command-foot i { animation: none; }
  .side-command,.side-links a,.side-links a:before,.side-links a span { transition: none; }
}
