.sst-navbar {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(15, 18, 32, .08);
  box-shadow: 0 6px 24px rgba(15, 18, 32, .08);
  color: #18142b;
}
.sst-nav-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sst-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.sst-brand img { width: 172px; height: 48px; object-fit: contain; }
.sst-desktop-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
}
.sst-desktop-links a {
  color: #27233d;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  padding: 10px 11px;
  border-radius: 10px;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.sst-desktop-links a:hover,
.sst-desktop-links a:focus-visible {
  color: #5b35dc;
  background: #f1edff;
  transform: translateY(-1px);
  outline: none;
}
.sst-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #ddd7f7;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.sst-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #332b55;
}
.sst-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1998;
  background: rgba(11, 8, 25, .54);
  backdrop-filter: blur(2px);
}
.sst-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1999;
  width: min(88vw, 360px);
  height: 100dvh;
  padding: 18px;
  background: #fff;
  color: #211b39;
  box-shadow: -18px 0 48px rgba(15, 18, 32, .22);
  transform: translateX(105%);
  visibility: hidden;
  overflow-y: auto;
  transition: transform .22s ease, visibility .22s ease;
}
.sst-mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.sst-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ece9f7;
}
.sst-mobile-head strong { font-size: 18px; }
.sst-mobile-head button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f2effb;
  color: #332b55;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.sst-mobile-menu > a,
.sst-mobile-secondary a {
  display: block;
  margin: 4px 0;
  padding: 13px 14px;
  border-radius: 11px;
  color: #292243;
  font-weight: 750;
  text-decoration: none;
}
.sst-mobile-menu > a:hover,
.sst-mobile-menu > a:focus-visible,
.sst-mobile-secondary a:hover,
.sst-mobile-secondary a:focus-visible {
  color: #5935d7;
  background: #f2effb;
  outline: none;
}
.sst-mobile-secondary {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #ece9f7;
}
.sst-mobile-secondary a {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #656079;
  font-size: 14px;
}
.sst-alert {
  width: min(760px, 100%);
  margin: 0 auto 14px;
  padding: 12px 16px;
  border: 1px solid #ff9cac;
  border-radius: 12px;
  background: #fff1f4;
  color: #941b35;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 1050px) {
  .sst-desktop-links { display: none; }
  .sst-menu-button { display: block; }
}
@media (max-width: 520px) {
  .sst-nav-inner { width: min(100% - 24px, 1180px); min-height: 66px; }
  .sst-brand img { width: 150px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .sst-mobile-menu,
  .sst-desktop-links a { transition: none; }
}
