/* [project]/src/styles/site.css [app-client] (css) */
.sh-site {
  background: var(--sh-bg-primary);
  color: var(--sh-text-primary);
  font-family: var(--sh-font-sans);
  -webkit-font-smoothing: antialiased;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

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

[data-theme="dark"] .sh-site {
  --sh-border: #cec9eb3d;
  --sh-border-strong: #cec9eb57;
}

[data-theme="light"] .sh-site {
  --sh-border: #3c2c1c38;
  --sh-border-strong: #3c2c1c57;
}

.sh-site .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sh-site .container-narrow {
  max-width: 860px;
}

.sh-site section {
  position: relative;
}

.sh-hairline {
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
}

.sh-site h1, .sh-site h2, .sh-site h3, .sh-site h4 {
  font-family: var(--sh-font-serif);
  letter-spacing: -.015em;
  color: var(--sh-text-primary);
  margin: 0;
  font-weight: 500;
  line-height: 1.08;
}

.sh-display {
  font-family: var(--sh-font-serif);
  letter-spacing: -.025em;
  font-size: clamp(2.9rem, 6.6vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
}

.sh-gradient-text {
  background: linear-gradient(105deg, var(--sh-accent) 0%, #ffd98a 45%, var(--sh-ai, #8b5cf6) 130%);
  -webkit-text-fill-color: transparent;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.sh-h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

.sh-h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.sh-accent-text {
  color: var(--sh-text-link, var(--sh-accent));
}

.sh-serif-italic {
  font-style: italic;
}

.sh-eyebrow {
  font-family: var(--sh-font-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-text-link, var(--sh-accent));
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.sh-lead {
  color: var(--sh-text-secondary);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 400;
  line-height: 1.55;
}

.sh-muted {
  color: var(--sh-text-secondary);
}

.sh-btn {
  font-family: var(--sh-font-sans);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform .15s, background .15s, border-color .15s, box-shadow .15s;
  display: inline-flex;
}

.sh-btn-ghost {
  color: var(--sh-text-primary);
  border-color: color-mix(in srgb, var(--sh-border) 80%, transparent);
  background: none;
}

.sh-btn-ghost:hover {
  border-color: var(--sh-accent);
  color: var(--sh-accent);
  transform: translateY(-1px);
}

.sh-btn-lg {
  padding: 16px 30px;
  font-size: 16px;
}

@media (max-width: 480px) {
  .sh-btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
}

.sh-header {
  z-index: 60;
  background: color-mix(in srgb, var(--sh-bg-primary) 82%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid #0000;
  transition: border-color .2s, background .2s;
  position: sticky;
  top: 0;
}

.sh-header.is-scrolled {
  border-bottom-color: color-mix(in srgb, var(--sh-border) 55%, transparent);
  background: color-mix(in srgb, var(--sh-bg-primary) 92%, transparent);
}

.sh-header-inner {
  align-items: center;
  gap: 28px;
  height: 68px;
  display: flex;
}

.sh-logo {
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  display: flex;
}

.sh-logo img {
  width: auto;
  height: 26px;
  display: block;
}

.sh-logo-word {
  font-family: var(--sh-font-serif);
  letter-spacing: -.01em;
  color: var(--sh-text-primary);
  font-size: 20px;
  font-weight: 600;
}

.sh-nav {
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  display: flex;
}

.sh-nav-item {
  position: relative;
}

.sh-nav-link {
  color: var(--sh-text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s, background .15s;
  display: inline-flex;
}

.sh-nav-link:hover, .sh-nav-item:hover .sh-nav-link {
  color: var(--sh-text-primary);
}

.sh-nav-caret {
  opacity: .7;
  transition: transform .2s;
}

.sh-nav-item:hover .sh-nav-caret {
  transform: rotate(180deg);
}

.sh-mega {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  opacity: 0;
  visibility: hidden;
  border-radius: 16px;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  gap: 8px;
  min-width: 520px;
  padding: 14px;
  transition: opacity .16s, transform .16s, visibility .16s;
  display: grid;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  transform: translateY(6px);
  box-shadow: 0 24px 60px -20px #0000008c;
}

.sh-nav-item:hover .sh-mega, .sh-nav-item:focus-within .sh-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sh-mega-col-heading {
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--sh-text-muted, var(--sh-text-secondary));
  padding: 8px 12px 4px;
  font-size: 11px;
  font-weight: 600;
}

.sh-mega-link {
  border-radius: 10px;
  padding: 9px 12px;
  text-decoration: none;
  transition: background .13s;
  display: block;
}

.sh-mega-link:hover {
  background: color-mix(in srgb, var(--sh-accent) 10%, transparent);
}

.sh-mega-link-label {
  color: var(--sh-text-primary);
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.sh-mega-link-desc {
  color: var(--sh-text-secondary);
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.35;
  display: block;
}

.sh-header-right {
  align-items: center;
  gap: 12px;
  margin-left: auto;
  display: flex;
}

.sh-modetoggle {
  background: color-mix(in srgb, var(--sh-bg-tertiary) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--sh-border) 65%, transparent);
  border-radius: 999px;
  padding: 3px;
  display: inline-flex;
  position: relative;
}

.sh-modetoggle-thumb {
  background: var(--sh-accent);
  border-radius: 999px;
  width: calc(50% - 3px);
  transition: transform .22s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 3px;
  bottom: 3px;
}

.sh-modetoggle-thumb.app {
  transform: translateX(100%);
}

.sh-modetoggle-opt {
  z-index: 1;
  cursor: pointer;
  color: var(--sh-text-secondary);
  background: none;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color .18s;
  position: relative;
}

.sh-modetoggle-opt.active {
  color: var(--sh-accent-text, #2a2540);
}

.sh-iconbtn {
  border: 1px solid color-mix(in srgb, var(--sh-border) 65%, transparent);
  width: 38px;
  height: 38px;
  color: var(--sh-text-secondary);
  cursor: pointer;
  background: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  transition: color .15s, border-color .15s;
  display: inline-flex;
}

.sh-iconbtn:hover {
  color: var(--sh-accent);
  border-color: var(--sh-accent);
}

.sh-burger {
  display: none;
}

.sh-hero {
  padding: clamp(72px, 11vw, 150px) 0 clamp(20px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
}

.sh-sb-main > main {
  isolation: isolate;
  position: relative;
}

.sh-sb-main > main > section:first-of-type {
  z-index: 1;
  position: relative;
}

.sh-sb-main > main > section:first-of-type > .sh-container {
  z-index: 2;
  position: relative;
}

.sh-core-hero-background {
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  height: clamp(520px, 62vw, 760px);
  position: absolute;
  inset: 0 0 auto;
  overflow: hidden;
}

.sh-core-hero-background[data-active="true"] {
  visibility: visible;
  opacity: 1;
}

.sh-core-hero-background > .sh-site-pipeline-bg {
  height: 100%;
}

.sh-hero-glow {
  pointer-events: none;
  background: radial-gradient(60% 60% at 50% 0%, color-mix(in srgb, var(--sh-accent) 16%, transparent) 0%, transparent 70%),
    radial-gradient(40% 50% at 85% 10%, color-mix(in srgb, var(--sh-ai, #8b5cf6) 12%, transparent) 0%, transparent 70%);
  z-index: 0;
  height: 720px;
  position: absolute;
  inset: -20% -10% auto;
}

.sh-hero-inner {
  z-index: 1;
  max-width: 880px;
  position: relative;
}

.sh-hero h1 {
  margin: 18px 0 0;
}

.sh-hero .sh-lead {
  max-width: 640px;
  margin: 22px 0 0;
}

.sh-hero-cta {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  display: flex;
}

.sh-hero-note {
  color: var(--sh-text-muted, var(--sh-text-secondary));
  margin-top: 16px;
  font-size: 13px;
}

.sh-statband {
  grid-template-columns: repeat(var(--cols, 5), 1fr);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  background: color-mix(in srgb, var(--sh-bg-card) 60%, transparent);
  border-radius: 16px;
  display: grid;
  overflow: hidden;
}

.sh-stat {
  border-left: 1px solid color-mix(in srgb, var(--sh-border) 45%, transparent);
  padding: 26px 20px;
}

.sh-stat:first-child {
  border-left: none;
}

.sh-stat-value {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
}

.sh-stat-label {
  color: var(--sh-text-secondary);
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.35;
}

.sh-logocloud {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 40px;
  display: flex;
}

.sh-logocloud-item {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-secondary);
  opacity: .72;
  font-size: 19px;
  font-weight: 500;
  transition: opacity .2s, color .2s;
}

.sh-logocloud-item:hover {
  opacity: 1;
  color: var(--sh-text-primary);
}

.sh-secthead {
  max-width: 680px;
}

.sh-secthead.center {
  text-align: center;
  margin: 0 auto;
}

.sh-secthead h2 {
  margin: 14px 0 0;
}

.sh-secthead .sh-lead {
  margin: 16px 0 0;
}

.sh-grid {
  gap: 18px;
  display: grid;
}

.sh-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.sh-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sh-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.sh-card {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 16px;
  padding: 26px;
  transition: transform .18s, border-color .18s;
}

.sh-card:hover {
  border-color: color-mix(in srgb, var(--sh-accent) 45%, transparent);
  transform: translateY(-3px);
}

.sh-card-icon {
  background: color-mix(in srgb, var(--sh-accent) 14%, transparent);
  width: 44px;
  height: 44px;
  color: var(--sh-accent);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  display: inline-flex;
}

.sh-card h3 {
  font-size: 1.15rem;
}

.sh-card p {
  color: var(--sh-text-secondary);
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
}

.sh-card-link {
  color: var(--sh-text-link, var(--sh-accent));
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.sh-card-link:hover {
  gap: 9px;
}

.sh-split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  display: grid;
}

.sh-split.reverse .sh-split-media {
  order: -1;
}

.sh-split > div {
  min-width: 0;
}

.sh-split-media {
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  background: color-mix(in srgb, var(--sh-bg-card) 70%, transparent);
  border-radius: 18px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 320px;
  padding: 28px;
  display: flex;
}

.sh-checklist {
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.sh-checklist li {
  color: var(--sh-text-secondary);
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
}

.sh-checklist svg {
  color: var(--sh-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.sh-steps {
  counter-reset: step;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  display: grid;
}

.sh-step {
  padding-top: 22px;
  position: relative;
}

.sh-step:before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--sh-font-serif);
  color: var(--sh-accent);
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.sh-step.line {
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
}

.sh-step h3 {
  font-size: 1.05rem;
}

.sh-step p {
  color: var(--sh-text-secondary);
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.sh-quote {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 16px;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  display: flex;
}

.sh-quote-text {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  font-size: 1.15rem;
  line-height: 1.5;
}

.sh-quote-cite {
  color: var(--sh-text-secondary);
  font-size: 13.5px;
}

.sh-quote-cite strong {
  color: var(--sh-text-primary);
  font-weight: 600;
}

.sh-ctaband {
  border: 1px solid color-mix(in srgb, var(--sh-accent) 30%, transparent);
  background: radial-gradient(70% 120% at 0% 0%, color-mix(in srgb, var(--sh-accent) 18%, transparent), transparent 60%),
    var(--sh-bg-card);
  text-align: center;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.sh-ctaband h2 {
  max-width: 640px;
  margin: 0 auto;
}

.sh-ctaband .sh-lead {
  max-width: 520px;
  margin: 16px auto 0;
}

.sh-ctaband .sh-hero-cta {
  justify-content: center;
  margin-top: 30px;
}

.sh-footer {
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  margin-top: auto;
}

.sh-footer-main {
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 28px;
  padding: 56px 0 40px;
  display: grid;
}

.sh-footer-brand .sh-logo {
  margin-bottom: 14px;
}

.sh-footer-brand .sh-logo img {
  height: 38px;
}

.sh-footer-tag {
  color: var(--sh-text-secondary);
  max-width: 280px;
  font-size: 14px;
  line-height: 1.55;
}

.sh-footer-col-h {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sh-text-secondary);
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
}

.sh-footer-col a {
  color: var(--sh-text-secondary);
  padding: 5px 0;
  font-size: 14px;
  text-decoration: none;
  transition: color .13s;
  display: block;
}

.sh-footer-col a:hover {
  color: var(--sh-accent);
}

.sh-footer-base {
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 45%, transparent);
  color: var(--sh-text-muted, var(--sh-text-secondary));
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  font-size: 13px;
  display: flex;
}

.sh-footer-base-links {
  gap: 22px;
  display: flex;
}

.sh-footer-base-links a {
  color: var(--sh-text-secondary);
  text-decoration: none;
}

.sh-footer-base-links a:hover {
  color: var(--sh-accent);
}

.sh-mobile-panel {
  display: none;
}

@media (max-width: 980px) {
  .sh-nav, .sh-modetoggle {
    display: none;
  }

  .sh-burger {
    border: 1px solid color-mix(in srgb, var(--sh-border) 65%, transparent);
    width: 40px;
    height: 40px;
    color: var(--sh-text-primary);
    cursor: pointer;
    background: none;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }

  .sh-header-right .sh-btn {
    display: none;
  }

  .sh-mobile-panel.open {
    z-index: 55;
    background: var(--sh-bg-primary);
    border-top: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
    padding: 20px 24px 48px;
    display: block;
    position: fixed;
    inset: 68px 0 0;
    overflow-y: auto;
  }

  .sh-mobile-group {
    border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 40%, transparent);
    padding: 8px 0;
  }

  .sh-mobile-group > a, .sh-mobile-grouplabel {
    font-family: var(--sh-font-serif);
    color: var(--sh-text-primary);
    padding: 10px 0;
    font-size: 18px;
    text-decoration: none;
    display: block;
  }

  .sh-mobile-sub a {
    color: var(--sh-text-secondary);
    padding: 8px 0 8px 14px;
    font-size: 15px;
    text-decoration: none;
    display: block;
  }

  .sh-mobile-cta {
    margin-top: 22px;
  }

  .sh-mobile-cta .sh-btn {
    width: 100%;
  }

  .sh-statband {
    --cols: 2 !important;
  }

  .sh-grid-3, .sh-grid-4, .sh-steps {
    grid-template-columns: 1fr 1fr;
  }

  .sh-split {
    grid-template-columns: 1fr;
  }

  .sh-split.reverse .sh-split-media {
    order: 0;
  }

  .sh-footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sh-statband {
    --cols: 1 !important;
  }

  .sh-grid-2, .sh-grid-3, .sh-grid-4, .sh-steps, .sh-footer-main {
    grid-template-columns: 1fr;
  }

  .sh-stat {
    border-left: none;
    border-top: 1px solid color-mix(in srgb, var(--sh-border) 45%, transparent);
  }

  .sh-stat:first-child {
    border-top: none;
  }
}

.sh-reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(22px);
}

.sh-reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .sh-reveal {
    opacity: 1;
    transition: none;
    transform: none;
  }
}

.sh-site {
  position: relative;
}

.sh-grain:before {
  content: "";
  z-index: 1;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  position: fixed;
  inset: 0;
}

.sh-aurora {
  z-index: 0;
  pointer-events: none;
  filter: blur(8px);
  height: 900px;
  position: absolute;
  inset: -25% -10% auto;
  overflow: hidden;
}

.sh-aurora span {
  filter: blur(70px);
  opacity: .55;
  border-radius: 50%;
  animation: 22s ease-in-out infinite alternate shAurora;
  position: absolute;
}

.sh-aurora .a1 {
  background: radial-gradient(circle, color-mix(in srgb, var(--sh-accent) 70%, transparent), transparent 62%);
  width: 620px;
  height: 620px;
  top: -16%;
  left: -6%;
}

.sh-aurora .a2 {
  background: radial-gradient(circle, color-mix(in srgb, var(--sh-ai, #8b5cf6) 60%, transparent), transparent 62%);
  width: 560px;
  height: 560px;
  animation-delay: -7s;
  top: -22%;
  right: -4%;
}

.sh-aurora .a3 {
  background: radial-gradient(circle, #ff9d5c8c, #0000 62%);
  width: 480px;
  height: 480px;
  animation-delay: -13s;
  top: 6%;
  left: 38%;
}

@keyframes shAurora {
  0% {
    transform: translate3d(0, 0, 0)scale(1);
  }

  50% {
    transform: translate3d(40px, 30px, 0)scale(1.12);
  }

  100% {
    transform: translate3d(-30px, 18px, 0)scale(.96);
  }
}

[data-theme="light"] .sh-aurora span {
  opacity: .4;
}

.sh-glass {
  background: color-mix(in srgb, var(--sh-bg-card) 72%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid color-mix(in srgb, var(--sh-text-primary) 12%, transparent);
  box-shadow: 0 24px 60px -28px #0000008c, inset 0 1px #ffffff14;
}

.sh-pill {
  color: var(--sh-text-secondary);
  background: color-mix(in srgb, var(--sh-bg-card) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--sh-text-primary) 12%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
}

.sh-pill .dot {
  background: var(--sh-accent);
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sh-accent) 22%, transparent);
  border-radius: 50%;
}

.sh-pill .sh-accent-text {
  font-weight: 600;
}

.sh-btn-primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--sh-accent) 96%, #fff) 0%, var(--sh-accent) 55%, var(--sh-accent-hover) 100%);
  box-shadow: 0 10px 30px -10px color-mix(in srgb, var(--sh-accent) 60%, transparent), inset 0 1px 0 #fff6;
  position: relative;
}

.sh-btn-primary:hover {
  box-shadow: 0 16px 44px -10px color-mix(in srgb, var(--sh-accent) 75%, transparent), inset 0 1px 0 #ffffff80;
  color: var(--sh-accent-text, #2a2540);
  transform: translateY(-2px);
}

.sh-hero-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
  display: grid;
}

.sh-hero-inner {
  max-width: none;
}

.sh-window {
  transform-style: preserve-3d;
  border-radius: 16px;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  transform: perspective(1600px)rotateY(-9deg)rotateX(3deg);
}

.sh-window-bar {
  background: color-mix(in srgb, var(--sh-bg-tertiary) 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  display: flex;
}

.sh-window-bar i {
  border-radius: 50%;
  width: 11px;
  height: 11px;
  display: inline-block;
}

.sh-window-bar .r {
  background: #ff5f57;
}

.sh-window-bar .y {
  background: #febc2e;
}

.sh-window-bar .g {
  background: #28c840;
}

.sh-window-bar span {
  color: var(--sh-text-muted, var(--sh-text-secondary));
  margin-left: 10px;
  font-size: 11.5px;
}

.sh-window-body {
  background: var(--sh-bg-card);
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  min-height: 300px;
  padding: 18px;
  display: grid;
}

.sh-mini-row {
  background: color-mix(in srgb, var(--sh-bg-tertiary) 60%, transparent);
  border: 1px solid color-mix(in srgb, var(--sh-border) 45%, transparent);
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  display: flex;
}

.sh-mini-row .l {
  align-items: center;
  gap: 11px;
  display: flex;
}

.sh-mini-ico {
  background: color-mix(in srgb, var(--sh-accent) 16%, transparent);
  width: 34px;
  height: 34px;
  color: var(--sh-accent);
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sh-mini-row b {
  font-size: 13.5px;
  font-weight: 600;
}

.sh-mini-row small {
  color: var(--sh-text-secondary);
  margin-top: 1px;
  font-size: 11.5px;
  display: block;
}

.sh-mini-badge {
  background: color-mix(in srgb, var(--sh-success) 16%, transparent);
  color: var(--sh-success);
  white-space: nowrap;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 600;
}

.sh-float {
  z-index: 3;
  border-radius: 14px;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  font-size: 13px;
  animation: 5.5s ease-in-out infinite shFloat;
  display: flex;
  position: absolute;
}

.sh-float .ico {
  background: var(--sh-accent);
  width: 32px;
  height: 32px;
  color: var(--sh-accent-text, #2a2540);
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sh-float b {
  font-weight: 600;
}

.sh-float small {
  color: var(--sh-text-secondary);
  font-size: 11.5px;
  display: block;
}

.sh-float.f1 {
  animation-delay: -1s;
  top: -22px;
  right: -18px;
}

.sh-float.f2 {
  animation-delay: -3s;
  bottom: 26px;
  left: -34px;
}

@keyframes shFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.sh-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
}

.sh-marquee-track {
  gap: 56px;
  width: max-content;
  animation: 38s linear infinite shMarquee;
  display: flex;
}

.sh-marquee:hover .sh-marquee-track {
  animation-play-state: paused;
}

.sh-marquee .sh-logocloud-item {
  white-space: nowrap;
}

@keyframes shMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sh-bento {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  display: grid;
}

.sh-bento .sh-card {
  margin: 0;
}

.sh-bento .span-6 {
  grid-column: span 6;
}

.sh-bento .span-4 {
  grid-column: span 4;
}

.sh-bento .span-3 {
  grid-column: span 3;
}

.sh-bento .span-2 {
  grid-column: span 2;
}

.sh-bento > .sh-reveal {
  display: flex;
}

.sh-bento > .sh-reveal > * {
  width: 100%;
}

.sh-card.sh-card-wide {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  display: grid;
}

.sh-card-wide-aside {
  border-left: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  padding-left: clamp(24px, 4vw, 56px);
}

.sh-card-wide-aside .pills {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  display: flex;
}

.sh-card-wide-aside .pills span {
  color: var(--sh-text-secondary);
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  background: color-mix(in srgb, var(--sh-bg-tertiary) 50%, transparent);
  white-space: nowrap;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
}

.sh-card {
  background: radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--sh-accent) 7%, transparent), transparent 45%),
    var(--sh-bg-card);
  position: relative;
  overflow: hidden;
}

.sh-card:after {
  content: "";
  border-radius: inherit;
  background: linear-gradient(140deg, color-mix(in srgb, var(--sh-accent) 40%, transparent), transparent 40%);
  -webkit-mask-composite: xor;
  opacity: 0;
  padding: 1px;
  transition: opacity .25s;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.sh-card:hover:after {
  opacity: 1;
}

.sh-card:hover {
  box-shadow: 0 30px 60px -32px color-mix(in srgb, var(--sh-accent) 40%, #00000080);
}

.sh-card-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--sh-accent) 22%, transparent), color-mix(in srgb, var(--sh-ai, #8b5cf6) 16%, transparent));
  box-shadow: inset 0 1px #ffffff2e;
}

.sh-glowtop {
  position: relative;
}

.sh-glowtop:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--sh-accent) 16%, transparent), transparent);
  filter: blur(20px);
  width: 520px;
  height: 220px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.sh-glowtop > * {
  z-index: 1;
  position: relative;
}

.sh-stat-value {
  background: linear-gradient(180deg, var(--sh-text-primary), color-mix(in srgb, var(--sh-text-primary) 70%, var(--sh-accent)));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.sh-site .nav-mode-toggle {
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  background: color-mix(in srgb, var(--sh-bg-secondary, #ffffff0d) 88%, transparent);
  border-radius: 12px;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 3px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.sh-site .nav-mode-option {
  z-index: 1;
  height: 26px;
  color: var(--sh-text-muted, var(--sh-text-secondary));
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, color .18s;
  display: flex;
  position: relative;
}

.sh-site .nav-mode-option.active {
  background: color-mix(in srgb, var(--sh-text-primary) 12%, var(--sh-bg-secondary, #ffffff14));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--sh-text-primary) 8%, transparent);
  color: var(--sh-text-primary);
}

@media (max-width: 980px) {
  .sh-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sh-hero-visual {
    display: none;
  }

  .sh-bento {
    grid-template-columns: 1fr 1fr;
  }

  .sh-bento .span-3, .sh-bento .span-2, .sh-bento .span-4 {
    grid-column: span 1;
  }

  .sh-site .nav-mode-toggle:not(.sh-sb-toggle2) {
    display: none;
  }
}

@media (max-width: 600px) {
  .sh-bento {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .sh-card.sh-card-wide {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .sh-card-wide-aside {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
    padding-top: 20px;
    padding-left: 0;
  }
}

.sh-site .section-pad {
  padding: clamp(72px, 8.5vw, 120px) 0;
}

.sh-site .section-pad-sm {
  padding: clamp(44px, 6vw, 72px) 0;
}

.sh-gradient-text {
  -webkit-text-fill-color: currentColor !important;
  color: var(--sh-accent) !important;
  background: none !important;
}

.sh-stat-value {
  -webkit-text-fill-color: currentColor;
  color: var(--sh-text-primary);
  background: none;
}

.sh-btn-primary {
  background: var(--sh-accent);
  color: var(--sh-accent-text, #2a2540);
  box-shadow: none;
}

.sh-btn-primary:hover {
  background: var(--sh-accent-hover);
  color: var(--sh-accent-text, #2a2540);
  box-shadow: none;
  transform: translateY(-2px);
}

.sh-btn {
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), background .2s, color .2s, border-color .2s;
}

.sh-card {
  background: var(--sh-bg-card);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), border-color .3s;
}

.sh-card:after {
  content: none !important;
  display: none !important;
}

.sh-card:hover {
  border-color: color-mix(in srgb, var(--sh-accent) 55%, transparent);
  box-shadow: none;
  transform: translateY(-4px);
}

.sh-card-icon {
  background: color-mix(in srgb, var(--sh-accent) 12%, transparent);
  box-shadow: none;
  color: var(--sh-accent);
}

.sh-glowtop:before {
  display: none;
}

.sh-statband {
  background: var(--sh-bg-secondary);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.sh-mini-badge {
  background: color-mix(in srgb, var(--sh-text-primary) 8%, transparent);
  color: var(--sh-text-secondary);
}

.sh-window {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: none;
  box-shadow: 0 40px 80px -48px #00000080;
}

.sh-window:hover {
  transform: translateY(-4px);
}

.sh-mini-ico {
  background: color-mix(in srgb, var(--sh-accent) 12%, transparent);
}

.sh-float {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 20px 50px -30px #00000080;
}

.sh-block-accent {
  background: var(--sh-accent);
  color: var(--sh-accent-text, #2a2540);
  border-radius: 28px;
  padding: clamp(44px, 6vw, 88px);
}

.sh-block-accent .sh-eyebrow, .sh-block-accent .sh-accent-text {
  color: var(--sh-accent-text, #2a2540);
  opacity: .75;
}

.sh-block-accent :is(h1, h2, h3, h4), .sh-block-accent .sh-display {
  color: var(--sh-accent-text, #2a2540);
}

.sh-block-accent .sh-lead, .sh-block-accent .sh-muted {
  color: color-mix(in srgb, var(--sh-accent-text, #2a2540) 78%, transparent);
}

.sh-block-accent .sh-internal-link {
  color: var(--sh-accent-text, #2a2540);
}

.sh-block-accent .sh-internal-link:hover {
  color: var(--sh-accent-text, #2a2540);
  opacity: .8;
}

.sh-block-accent .sh-btn-primary {
  background: var(--sh-accent-text, #2a2540);
  color: var(--sh-accent);
}

.sh-block-accent .sh-btn-primary:hover {
  background: color-mix(in srgb, var(--sh-accent-text, #2a2540) 85%, #000);
}

.sh-block-accent .sh-btn-ghost {
  color: var(--sh-accent-text, #2a2540);
  border-color: color-mix(in srgb, var(--sh-accent-text, #2a2540) 30%, transparent);
}

.sh-block-accent .sh-btn-ghost:hover {
  background: color-mix(in srgb, var(--sh-accent-text, #2a2540) 10%, transparent);
  color: var(--sh-accent-text, #2a2540);
  border-color: var(--sh-accent-text, #2a2540);
}

.sh-herostat {
  background: var(--sh-accent);
  color: var(--sh-accent-text, #2a2540);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.sh-herostat .num {
  font-family: var(--sh-font-serif);
  letter-spacing: -.02em;
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1;
}

.sh-herostat .lbl {
  opacity: .85;
  max-width: 280px;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.sh-herostat .rule {
  background: color-mix(in srgb, var(--sh-accent-text, #2a2540) 22%, transparent);
  height: 1px;
  margin: 26px 0;
}

.sh-herostat .mini {
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.sh-herostat .mini .d {
  background: var(--sh-accent-text, #2a2540);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.sh-rotate {
  min-height: 1.05em;
  display: block;
}

.sh-rotate-word {
  animation: .6s cubic-bezier(.16, 1, .3, 1) both shRotateIn;
  display: inline-block;
}

@keyframes shRotateIn {
  from {
    opacity: 0;
    filter: blur(2px);
    transform: translateY(.42em);
  }

  to {
    opacity: 1;
    filter: blur();
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sh-rotate-word {
    animation: none;
  }
}

.sh-marquee-track {
  animation-duration: 46s;
}

.sh-logocloud-item {
  opacity: .6;
}

.sh-stepper {
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 28px;
  display: grid;
}

.sh-stepper-rail {
  gap: 6px;
  display: grid;
}

.sh-step-tab {
  text-align: left;
  cursor: pointer;
  width: 100%;
  color: var(--sh-text-secondary);
  background: none;
  border: 0;
  border-radius: 14px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  font-family: inherit;
  transition: background .3s, color .3s;
  display: flex;
  position: relative;
}

.sh-step-tab:hover {
  background: color-mix(in srgb, var(--sh-text-primary) 4%, transparent);
}

.sh-step-tab.active {
  background: var(--sh-bg-card);
  color: var(--sh-text-primary);
}

.sh-step-tab-num {
  font-family: var(--sh-font-serif);
  color: var(--sh-accent);
  width: 24px;
  font-size: 15px;
  font-weight: 600;
}

.sh-step-tab-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.sh-step-tab-bar {
  background: color-mix(in srgb, var(--sh-accent) 22%, transparent);
  border-radius: 3px;
  width: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.sh-step-tab-bar span {
  background: var(--sh-accent);
  transform-origin: top;
  animation: linear forwards shStepFill;
  position: absolute;
  inset: 0;
}

@keyframes shStepFill {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.sh-step-panel {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 18px;
  min-height: 240px;
  padding: 34px;
  animation: .45s cubic-bezier(.16, 1, .3, 1) both shFadeSwap;
}

.sh-step-panel-num {
  font-family: var(--sh-font-serif);
  color: color-mix(in srgb, var(--sh-accent) 45%, transparent);
  margin-bottom: 14px;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

@keyframes shFadeSwap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sh-step-tab-bar span, .sh-step-panel {
    animation: none;
  }
}

.sh-acc {
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
}

.sh-acc-item {
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 50%, transparent);
}

.sh-acc-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 50%, transparent);
}

.sh-acc-q {
  text-align: left;
  cursor: pointer;
  width: 100%;
  color: var(--sh-text-primary);
  background: none;
  border: 0;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 4px;
  font-family: inherit;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  transition: color .2s;
  display: flex;
}

.sh-acc-q:hover {
  color: var(--sh-accent);
}

.sh-acc-ico {
  color: var(--sh-accent);
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.sh-acc-item.open .sh-acc-ico {
  transform: rotate(45deg);
}

.sh-acc-a {
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.16, 1, .3, 1);
  display: grid;
}

.sh-acc-item.open .sh-acc-a {
  grid-template-rows: 1fr;
}

.sh-acc-a-inner {
  overflow: hidden;
}

.sh-acc-item.open .sh-acc-a-inner {
  padding-bottom: 24px;
}

.sh-acc-a-inner p, .sh-acc-a-inner {
  color: var(--sh-text-secondary);
  max-width: 680px;
  font-size: 16px;
  line-height: 1.65;
}

.sh-tabs-bar {
  background: color-mix(in srgb, var(--sh-text-primary) 5%, transparent);
  border-radius: 12px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  max-width: 100%;
  padding: 4px;
  display: inline-flex;
}

.sh-tab {
  cursor: pointer;
  color: var(--sh-text-secondary);
  background: none;
  border: 0;
  border-radius: 9px;
  padding: 9px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.sh-tab.active {
  background: var(--sh-bg-card);
  color: var(--sh-text-primary);
}

.sh-tabs-panel {
  margin-top: 28px;
  animation: .4s cubic-bezier(.16, 1, .3, 1) both shFadeSwap;
}

.sh-card-link-wrap {
  color: inherit;
  text-decoration: none;
  display: block;
}

@media (max-width: 820px) {
  .sh-stepper {
    grid-template-columns: 1fr;
  }
}

.sh-ctaband {
  background: var(--sh-bg-card) !important;
}

.sh-card-icon {
  background: color-mix(in srgb, var(--sh-accent) 13%, transparent) !important;
}

.sh-stream {
  font-family: var(--sh-font-mono);
  background: #0e0a1a;
  border: 1px solid #ffffff1f;
  border-radius: 16px;
  padding: 16px 18px 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -50px #000000b3;
}

.sh-stream-head {
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  display: flex;
}

.sh-stream-live {
  letter-spacing: .04em;
  color: #e9e4f5;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--sh-font-sans);
  align-items: center;
  gap: 9px;
  display: inline-flex;
}

.sh-stream-live .d {
  background: var(--sh-accent);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--sh-accent) 70%, transparent);
  border-radius: 50%;
  animation: 1.8s ease-out infinite shPing;
}

@keyframes shPing {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--sh-accent) 60%, transparent);
  }

  70%, 100% {
    box-shadow: 0 0 0 7px #0000;
  }
}

.sh-stream-tag {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sh-accent);
  font-size: 10px;
  font-weight: 700;
}

.sh-stream-body {
  align-content: end;
  gap: 9px;
  min-height: 132px;
  display: grid;
}

.sh-stream-line {
  color: #b7b1cc;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  animation: .3s both shLineIn;
  display: flex;
}

@keyframes shLineIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.sh-stream-mk {
  color: var(--sh-accent);
  font-weight: 700;
}

.sh-stream-mk.ok {
  color: #f8bf58;
}

.sh-stream-cursor {
  background: var(--sh-accent);
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  animation: 1s steps(2, end) infinite shBlink;
  display: inline-block;
  transform: translateY(2px);
}

@keyframes shBlink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sh-stream-cursor, .sh-stream-live .d {
    animation: none;
  }
}

.sh-hero-visual {
  align-content: center;
  gap: 18px;
  display: grid;
  position: relative;
}

[data-theme="light"] .sh-hero-mock-surface {
  background: var(--sh-bg-card);
}

.sh-hero-visual .sh-float.f1 {
  top: auto;
  bottom: -16px;
  right: -16px;
}

.sh-pill {
  font-family: var(--sh-font-mono);
  letter-spacing: .01em;
  font-size: 12px;
}

@media (max-width: 980px) {
  .sh-hero-visual {
    display: grid;
  }

  .sh-hero-visual .sh-float {
    display: none;
  }

  .sh-hero {
    padding-top: clamp(40px, 12vw, 80px);
  }

  .sh-hero-grid {
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .sh-site .section-pad {
    padding: clamp(52px, 14vw, 80px) 0;
  }

  .sh-site .section-pad-sm {
    padding: 40px 0;
  }

  .sh-display {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .sh-h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .sh-lead {
    font-size: 1.02rem;
  }

  .sh-header-inner {
    gap: 14px;
  }

  .sh-hero-cta {
    gap: 10px;
  }

  .sh-hero-cta .sh-btn {
    flex: auto;
  }

  .sh-herostat {
    padding: 30px;
  }

  .sh-herostat .num {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
  }

  .sh-step-panel {
    min-height: 0;
    padding: 24px;
  }

  .sh-block-accent {
    border-radius: 22px;
    padding: 36px 26px;
  }

  .sh-acc-q {
    padding: 20px 2px;
    font-size: 1.05rem;
  }
}

@media (max-width: 420px) {
  .sh-site .container {
    padding: 0 18px;
  }

  .sh-logo-word {
    font-size: 18px;
  }
}

@media (max-width: 980px) {
  .sh-bento {
    grid-template-columns: 1fr 1fr;
  }

  .sh-bento > * {
    grid-column: auto !important;
  }
}

@media (max-width: 600px) {
  .sh-bento {
    grid-template-columns: 1fr;
  }

  .sh-bento > * {
    grid-column: auto !important;
  }
}

.sh-site .sh-tone {
  background: var(--sh-bg-secondary);
}

@media (max-width: 760px) {
  .sh-logo img {
    height: 32px;
  }
}

.sh-modal-overlay {
  z-index: 200;
  -webkit-backdrop-filter: blur(6px);
  background: #07050d9e;
  justify-content: center;
  align-items: center;
  padding: 24px;
  animation: .22s both shOverlayIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes shOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sh-modal {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-text-primary) 12%, transparent);
  border-radius: 18px;
  width: 100%;
  max-width: 920px;
  height: min(90vh, 860px);
  animation: .3s cubic-bezier(.16, 1, .3, 1) both shFadeSwap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px -40px #000000b3;
}

.sh-modal-frame {
  background: var(--sh-bg-primary);
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.sh-modal-close {
  z-index: 2;
  border: 1px solid color-mix(in srgb, var(--sh-border) 65%, transparent);
  background: var(--sh-bg-card);
  width: 36px;
  height: 36px;
  color: var(--sh-text-secondary);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  transition: color .15s, border-color .15s;
  display: inline-flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.sh-modal-close svg {
  display: block;
}

.sh-modal-close:hover {
  color: var(--sh-accent);
  border-color: var(--sh-accent);
}

.sh-modal-booking {
  max-width: 900px;
  height: min(90vh, 600px);
}

.sh-modal-booking .sh-modal-close {
  top: 6px;
}

.sh-modal-booking .sh-bk {
  height: 100%;
}

.sh-modal-booking .sh-bk-main {
  padding-top: var(--bk-pad);
}

@media (max-width: 760px) {
  .sh-modal-overlay {
    height: 100dvh;
    padding: 0;
  }

  .sh-modal-booking {
    border: 0;
    border-radius: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
  }

  .sh-modal-booking .sh-modal-close {
    top: 8px;
  }

  .sh-modal-booking .sh-bk {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }

  .sh-modal-booking .sh-bk-content {
    overflow: visible;
  }

  .sh-modal-booking .sh-bk-main {
    padding-top: var(--bk-pad);
    padding-bottom: calc(var(--bk-pad) + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 600px) {
  .sh-modal-overlay {
    height: 100dvh;
    padding: 0;
  }

  .sh-modal {
    border: 0;
    border-radius: 0;
    max-width: none;
    height: 100dvh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sh-modal-overlay, .sh-modal {
    animation: none;
  }
}

.sh-prose {
  color: var(--sh-text-secondary);
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.sh-prose > * + * {
  margin-top: 1.25em;
}

.sh-prose h2 {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  letter-spacing: -.015em;
  margin-top: 2em;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1.15;
}

.sh-prose h3 {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  margin-top: 1.6em;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
}

.sh-prose h4 {
  color: var(--sh-text-primary);
  margin-top: 1.4em;
  font-size: 1.1rem;
  font-weight: 700;
}

.sh-prose p {
  margin: 0;
}

.sh-prose a {
  color: var(--sh-text-link, var(--sh-accent));
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.sh-prose a:hover {
  color: var(--sh-accent-hover);
}

.sh-prose strong {
  color: var(--sh-text-primary);
  font-weight: 700;
}

.sh-internal-link {
  color: var(--sh-text-link, var(--sh-accent));
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.sh-internal-link:hover {
  color: var(--sh-accent-hover);
}

.sh-video-embed {
  aspect-ratio: 16 / 9;
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  background: #000;
  border-radius: 16px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sh-video-embed iframe, .sh-video-embed video {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.sh-video-caption {
  color: var(--sh-text-secondary);
  text-align: center;
  margin: 12px 0 0;
  font-size: 13.5px;
}

.sh-video-caption a {
  color: var(--sh-accent);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.sh-prose ul, .sh-prose ol {
  gap: .5em;
  padding-left: 1.3em;
  display: grid;
}

.sh-prose li {
  padding-left: .2em;
}

.sh-prose ul > li::marker {
  color: var(--sh-accent);
}

.sh-prose img {
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 14px;
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}

.sh-prose figure {
  margin: 1.5em 0;
}

.sh-prose figcaption {
  color: var(--sh-text-muted, var(--sh-text-secondary));
  text-align: center;
  margin-top: .5em;
  font-size: .85rem;
}

.sh-prose blockquote {
  border-left: 3px solid var(--sh-accent);
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  margin: 1.6em 0;
  padding: .2em 0 .2em 1.2em;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
}

.sh-prose code {
  font-family: var(--sh-font-mono);
  background: color-mix(in srgb, var(--sh-text-primary) 8%, transparent);
  border-radius: 6px;
  padding: .15em .4em;
  font-size: .9em;
}

.sh-prose pre {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 12px;
  padding: 18px;
  overflow-x: auto;
}

.sh-prose pre code {
  background: none;
  padding: 0;
}

.sh-prose hr {
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  margin: 2.4em 0;
}

.sh-prose table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5em 0;
  font-size: .95rem;
}

.sh-prose th, .sh-prose td {
  text-align: left;
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 50%, transparent);
  padding: 12px 14px;
}

.sh-prose th {
  color: var(--sh-text-primary);
  font-weight: 600;
}

.sh-article {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  display: grid;
}

.sh-meta-row {
  color: var(--sh-text-secondary);
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  display: flex;
}

.sh-tag {
  background: color-mix(in srgb, var(--sh-accent) 12%, transparent);
  color: var(--sh-accent);
  border-radius: 999px;
  align-items: center;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.sh-tag:hover {
  background: color-mix(in srgb, var(--sh-accent) 20%, transparent);
}

.sh-search:not([type="checkbox"]):not([type="radio"]) {
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  background: var(--sh-bg-card);
  width: 100%;
  color: var(--sh-text-primary);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
}

.sh-search:not([type="checkbox"]):not([type="radio"]):focus {
  border-color: var(--sh-accent);
  box-shadow: none;
  outline: none;
}

.sh-pagination {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.sh-page-link {
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  min-width: 40px;
  height: 40px;
  color: var(--sh-text-secondary);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.sh-page-link:hover {
  border-color: var(--sh-accent);
  color: var(--sh-accent);
}

.sh-page-link.active {
  background: var(--sh-accent);
  color: var(--sh-accent-text, #2a2540);
  border-color: var(--sh-accent);
}

.sh-filterbar {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.sh-filter {
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  color: var(--sh-text-secondary);
  cursor: pointer;
  background: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.sh-filter:hover {
  color: var(--sh-accent);
  border-color: var(--sh-accent);
}

.sh-filter.active {
  background: var(--sh-accent);
  color: var(--sh-accent-text, #2a2540);
  border-color: var(--sh-accent);
}

.sh-sidebar {
  z-index: 50;
  background: var(--sh-sidebar-bg);
  border-right: 1px solid var(--sh-sidebar-border);
  flex-direction: column;
  width: 180px;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.sh-sb-header {
  border-bottom: 1px solid var(--sh-sidebar-border);
  flex-shrink: 0;
  align-items: center;
  height: 50px;
  padding: 0 16px;
  display: flex;
}

.sh-sb-logo {
  align-items: center;
  height: 100%;
  display: flex;
}

.sh-sb-logo img {
  object-fit: contain;
  width: auto;
  height: 35px;
  display: block;
}

.sh-sb-search {
  z-index: 2;
  background: var(--sh-sidebar-bg);
  padding: 12px 0 10px;
  position: sticky;
  top: 0;
}

.sh-sb-search-ico {
  color: var(--sh-text-muted, var(--sh-text-secondary));
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(calc(1px - 50%));
}

.sh-sb-search input:not([type="checkbox"]):not([type="radio"]) {
  background: var(--sh-bg-secondary, #ffffff0d);
  border: 1px solid var(--sh-sidebar-border);
  width: 100%;
  color: var(--sh-text-primary);
  border-radius: 6px;
  outline: none;
  padding: 6px 8px 6px 28px;
  font-family: inherit;
  font-size: 12px;
  transition: border-color .15s;
}

.sh-sb-search input:not([type="checkbox"]):not([type="radio"]):focus {
  border-color: var(--sh-accent);
  box-shadow: none;
}

.sh-sb-search input::placeholder {
  color: var(--sh-text-muted, var(--sh-text-secondary));
}

.sh-sb-toggle-wrap {
  z-index: 2;
  background: var(--sh-sidebar-bg);
  padding: 0 0 12px;
  position: sticky;
  top: 46px;
}

.sh-site .sh-sb-toggle2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sh-site .sh-sb-toggle2 .nav-mode-option {
  white-space: nowrap;
  min-width: 0;
  height: 24px;
  padding: 0 2px;
  font-size: 10px;
}

.sh-sb-nav {
  scrollbar-gutter: stable;
  flex: 1;
  padding: 0 10px 12px;
  overflow-y: auto;
}

.sh-sb-sectionlabel {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sh-text-muted, var(--sh-text-secondary));
  margin-bottom: 6px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 600;
}

.sh-sb-item {
  text-align: left;
  width: 100%;
  color: var(--sh-sidebar-text);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: background .13s, color .13s;
  display: flex;
}

.sh-sb-item:hover {
  color: var(--sh-text-primary);
  background: #ffffff0d;
}

.sh-sb-item.active {
  background: var(--sh-sidebar-active);
  color: var(--sh-brand-gold);
}

.sh-sb-item.sh-sb-group.parent-active {
  color: var(--sh-brand-gold);
}

.sh-sb-item.sh-sb-group.parent-active .sh-sb-caret {
  opacity: .9;
}

.sh-sb-caret {
  opacity: .6;
  flex-shrink: 0;
  transition: transform .18s;
}

.sh-sb-caret.open {
  transform: rotate(90deg);
}

.sh-sb-sub {
  border-left: 1px solid var(--sh-sidebar-border);
  margin: 2px 0 6px 12px;
  padding-left: 8px;
}

.sh-sb-subitem {
  color: var(--sh-text-secondary);
  padding: 6px 10px;
  font-size: 12.5px;
}

.sh-sb-footer {
  border-top: 1px solid var(--sh-sidebar-border);
  flex-shrink: 0;
  padding: 12px;
}

.sh-sb-tease-title {
  color: var(--sh-text-primary);
  font-size: 12.5px;
  font-weight: 600;
}

.sh-sb-tease-sub {
  color: var(--sh-text-muted, var(--sh-text-secondary));
  margin: 3px 0 10px;
  font-size: 11px;
  line-height: 1.4;
}

.sh-sb-loginbtn {
  cursor: pointer;
  background: var(--sh-accent);
  width: 100%;
  color: var(--sh-accent-text, #2a2540);
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  display: flex;
}

.sh-sb-loginbtn:hover {
  background: var(--sh-accent-hover);
  color: var(--sh-accent-text, #2a2540);
}

.sh-entry {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: 54px;
  max-width: 940px;
  margin: 0 auto;
  padding: 44px 0 70px;
  display: grid;
}

.sh-entry-copy .sh-h2 {
  max-width: 620px;
  margin: 14px 0 0;
}

.sh-entry-copy .sh-lead {
  max-width: 610px;
  margin: 16px 0 0;
}

.sh-entry-trust {
  color: var(--sh-text-secondary);
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  font-size: 12.5px;
  display: flex;
}

.sh-entry-trust span {
  align-items: center;
  gap: 7px;
  display: inline-flex;
}

.sh-entry-trust svg {
  color: var(--sh-text-link);
}

.sh-entry-card {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 16px;
  padding: 28px;
}

.sh-entry-card-label {
  color: var(--sh-text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 600;
}

.sh-entry-card form {
  gap: 12px;
  display: grid;
}

.sh-entry-card form > label {
  color: var(--sh-text-secondary);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.sh-entry-input {
  background: var(--sh-input-bg);
  border: 1px solid color-mix(in srgb, var(--sh-input-border) 85%, transparent);
  height: 48px;
  color: var(--sh-text-muted);
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  display: flex;
}

.sh-entry-input:focus-within {
  border-color: var(--sh-border-focus);
}

.sh-entry-input input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  min-width: 0;
  height: 100%;
  color: var(--sh-input-text);
  font: inherit;
  background: none;
  border: 0;
  outline: 0;
  padding: 0;
}

.sh-entry-input input:not([type="checkbox"]):not([type="radio"]):focus {
  box-shadow: none;
  border: 0;
  outline: 0;
}

.sh-entry-input input::placeholder {
  color: var(--sh-input-placeholder);
}

.sh-entry-card .sh-btn {
  justify-content: center;
  width: 100%;
  min-height: 44px;
}

.sh-entry-card .sh-btn:disabled {
  opacity: .6;
  cursor: default;
}

.sh-entry-error {
  color: var(--sh-error);
  font-size: 12.5px;
  line-height: 1.45;
}

.sh-entry-note {
  color: var(--sh-text-muted);
  text-align: center;
  margin: 14px 0 0;
  font-size: 11.5px;
  line-height: 1.5;
}

.sh-entry-access {
  text-align: center;
}

.sh-entry-icon {
  background: color-mix(in srgb, var(--sh-accent) 14%, transparent);
  width: 42px;
  height: 42px;
  color: var(--sh-text-link);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  display: inline-flex;
}

.sh-entry-access h2 {
  color: var(--sh-text-primary);
  font-family: var(--sh-font-serif, Georgia, serif);
  margin: 10px 0 0;
  font-size: 25px;
  font-weight: 500;
}

.sh-entry-access p {
  color: var(--sh-text-secondary);
  margin: 12px 0 18px;
  font-size: 13.5px;
  line-height: 1.6;
}

.sh-entry-link {
  color: var(--sh-text-link);
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.sh-entry-link:hover {
  text-underline-offset: 3px;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .sh-entry {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 0 48px;
  }

  .sh-entry-card {
    padding: 22px;
  }
}

.sh-sb-main {
  flex-direction: column;
  min-height: 100vh;
  margin-left: 180px;
  display: flex;
}

.sh-sb-main > main {
  flex: 1;
}

.sh-sb-mobilebar, .sh-sb-scrim {
  display: none;
}

@media (max-width: 980px) {
  .sh-sb-mobilebar {
    z-index: 45;
    background: color-mix(in srgb, var(--sh-bg-primary) 92%, transparent);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 0 18px;
    display: flex;
    position: sticky;
    top: 0;
  }

  .sh-sb-mobilebar .sh-sb-logo img {
    height: 26px;
  }

  .sh-sb-burger {
    border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
    width: 40px;
    height: 40px;
    color: var(--sh-text-primary);
    cursor: pointer;
    background: none;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }

  .sh-sidebar {
    width: 264px;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1);
    transform: translateX(-100%);
  }

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

  .sh-sb-scrim {
    z-index: 49;
    background: #00000080;
    display: block;
    position: fixed;
    inset: 0;
  }

  .sh-sb-main {
    margin-left: 0;
  }
}

.sh-sb-main main > section:first-of-type {
  padding-top: 18px;
}

.sh-sb-main main > section.sh-hero:first-of-type {
  padding-top: 20px;
}

@media (max-width: 980px) {
  .sh-sb-main main > section:first-of-type, .sh-sb-main main > section.sh-hero:first-of-type {
    padding-top: 14px;
  }
}

.sh-topbar {
  z-index: 40;
  background: var(--sh-bg-primary);
  border-bottom: 1px solid var(--sh-border);
  justify-content: center;
  align-items: center;
  gap: 16px;
  height: 50px;
  padding: 0 24px;
  display: flex;
  position: sticky;
  top: 0;
}

.sh-topbar-search {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  height: 34px;
  padding: 0 14px;
  display: flex;
}

.sh-topbar-search:focus-within {
  border-color: var(--sh-accent);
}

.sh-topbar-search-ico {
  color: var(--sh-text-secondary);
  flex-shrink: 0;
}

.sh-topbar-search input:not([type="checkbox"]):not([type="radio"]), .sh-topbar-search input:not([type="checkbox"]):not([type="radio"]):focus {
  box-sizing: border-box;
  appearance: none;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  box-shadow: none;
  color: var(--sh-text-primary);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
}

.sh-topbar-search input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.sh-topbar-search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.sh-topbar-search input::placeholder {
  color: var(--sh-text-muted, var(--sh-text-secondary));
}

@media (max-width: 980px) {
  .sh-topbar {
    display: none;
  }
}

.sh-preview {
  flex: 1;
  min-height: calc(100vh - 50px);
  position: relative;
}

.sh-preview-bg {
  z-index: 0;
  object-fit: cover;
  object-position: top left;
  filter: blur(8px) saturate(.9);
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  transform: scale(1.06);
}

.sh-preview-bg-light, [data-theme="light"] .sh-preview-bg-dark {
  display: none;
}

[data-theme="light"] .sh-preview-bg-light {
  display: block;
}

.sh-preview-scrim {
  z-index: 1;
  background: color-mix(in srgb, var(--sh-bg-primary) 52%, transparent);
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.sh-preview-center {
  z-index: 3;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: 0;
}

.sh-preview-box {
  text-align: center;
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-text-primary) 12%, transparent);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  padding: 42px 34px;
  box-shadow: 0 50px 100px -40px #0009;
}

.sh-preview-lock {
  background: color-mix(in srgb, var(--sh-accent) 14%, transparent);
  width: 48px;
  height: 48px;
  color: var(--sh-accent);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  display: inline-flex;
}

.sh-preview-eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-accent);
  font-size: 12px;
  font-weight: 600;
}

.sh-preview-title {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.sh-preview-blurb {
  color: var(--sh-text-secondary);
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.sh-preview-cta {
  justify-content: center;
  margin-top: 26px;
  display: flex;
}

.sh-preview-note {
  color: var(--sh-text-muted, var(--sh-text-secondary));
  margin-top: 14px;
  font-size: 13px;
}

.sh-preview-root {
  background: var(--sh-bg-primary);
  min-height: 100vh;
}

.sh-preview-main {
  flex-direction: column;
  min-height: 100vh;
  margin-left: 180px;
  display: flex;
}

.sh-preview-topbar {
  z-index: 40;
  background: var(--sh-bg-primary);
  border-bottom: 1px solid var(--sh-border);
  justify-content: center;
  align-items: center;
  gap: 16px;
  height: 50px;
  padding: 0 24px;
  display: flex;
  position: sticky;
  top: 0;
}

@media (max-width: 980px) {
  .sh-preview-main {
    margin-left: 0;
  }
}

.sh-site .sh-legal-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 18px 24px 0;
}

.sh-site .sh-legal-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.sh-site .sh-legal-layout {
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  display: grid;
}

.sh-site .sh-legal-sidebar {
  position: relative;
}

.sh-site .sh-legal-toc {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 16px;
  padding: 20px;
  position: sticky;
  top: 70px;
}

.sh-site .sh-legal-toc-title {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sh-text-primary);
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.sh-site .sh-legal-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sh-site .sh-legal-toc-list li {
  margin-bottom: 3px;
}

.sh-site .sh-legal-toc-link {
  color: var(--sh-text-secondary);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: block;
}

.sh-site .sh-legal-toc-link:hover {
  color: var(--sh-text-primary);
  background: color-mix(in srgb, var(--sh-border) 30%, transparent);
}

.sh-site .sh-legal-toc-link.active {
  color: var(--sh-accent-text, var(--sh-text-primary));
  background: color-mix(in srgb, var(--sh-accent) 22%, transparent);
  font-weight: 600;
}

[data-theme="dark"] .sh-site .sh-legal-toc-link.active {
  color: var(--sh-accent);
}

.sh-site .sh-legal-content {
  min-width: 0;
  max-width: 760px;
}

.sh-site .sh-legal-updated {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  color: var(--sh-text-muted, var(--sh-text-secondary));
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  padding: 9px 16px;
  font-size: 13px;
  display: inline-flex;
}

.sh-site .sh-legal-section {
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 45%, transparent);
  margin-bottom: 44px;
  padding-bottom: 44px;
  scroll-margin-top: 90px;
}

.sh-site .sh-legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sh-site .sh-legal-section-title {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
}

.sh-site .sh-legal-text {
  color: var(--sh-text-secondary);
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.75;
}

.sh-site .sh-legal-text:last-child {
  margin-bottom: 0;
}

.sh-site .sh-legal-text strong {
  color: var(--sh-text-primary);
  font-weight: 600;
}

.sh-site .sh-legal-text a {
  color: var(--sh-accent-text, var(--sh-text-primary));
  text-underline-offset: 3px;
  text-decoration: underline;
  -webkit-text-decoration-color: color-mix(in srgb, var(--sh-accent) 70%, transparent);
  text-decoration-color: color-mix(in srgb, var(--sh-accent) 70%, transparent);
}

.sh-site .sh-legal-text a:hover {
  -webkit-text-decoration-color: var(--sh-accent);
  text-decoration-color: var(--sh-accent);
}

.sh-site .sh-legal-list {
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.sh-site .sh-legal-list li {
  color: var(--sh-text-secondary);
  margin-bottom: 11px;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.7;
  position: relative;
}

.sh-site .sh-legal-list li strong {
  color: var(--sh-text-primary);
  font-weight: 600;
}

.sh-site .sh-legal-list li:before {
  content: "";
  background: var(--sh-accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
  left: 2px;
}

.sh-site .sh-legal-list.numbered {
  counter-reset: legal-item;
}

.sh-site .sh-legal-list.numbered li {
  padding-left: 30px;
}

.sh-site .sh-legal-list.numbered li:before {
  counter-increment: legal-item;
  content: counter(legal-item) ".";
  width: auto;
  height: auto;
  color: var(--sh-accent-text, var(--sh-text-primary));
  background: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  top: 0;
  left: 0;
}

.sh-site .sh-legal-highlight {
  background: color-mix(in srgb, var(--sh-accent) 12%, transparent);
  border-left: 3px solid var(--sh-accent);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  padding: 14px 20px;
}

.sh-site .sh-legal-highlight p {
  color: var(--sh-text-primary);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.sh-site .sh-legal-caps {
  letter-spacing: .01em;
  color: var(--sh-text-secondary);
  margin: 16px 0;
  font-size: 13px;
  line-height: 1.8;
}

.sh-site .sh-legal-subsection-title {
  color: var(--sh-text-primary);
  letter-spacing: -.01em;
  margin: 26px 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.sh-site .sh-legal-section > .sh-legal-subsection-title:first-of-type {
  margin-top: 4px;
}

.sh-site .sh-legal-contact {
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 12px;
  margin: 18px 0;
  padding: 18px 20px;
}

.sh-site .sh-legal-contact-title {
  color: var(--sh-text-primary);
  margin: 0 0 6px;
  font-weight: 700;
}

.sh-site .sh-legal-contact-text {
  color: var(--sh-text-secondary);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.sh-site .sh-legal-contact-text a {
  color: var(--sh-accent-text, var(--sh-text-primary));
  text-underline-offset: 3px;
  text-decoration: underline;
  -webkit-text-decoration-color: color-mix(in srgb, var(--sh-accent) 70%, transparent);
  text-decoration-color: color-mix(in srgb, var(--sh-accent) 70%, transparent);
}

.sh-site .sh-legal-table-wrapper {
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 12px;
  margin: 20px 0;
  overflow-x: auto;
}

.sh-site .sh-legal-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 480px;
  font-size: 14px;
}

.sh-site .sh-legal-table th {
  text-align: left;
  color: var(--sh-text-primary);
  background: color-mix(in srgb, var(--sh-border) 22%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  white-space: nowrap;
  padding: 12px 16px;
  font-weight: 700;
}

.sh-site .sh-legal-table td {
  color: var(--sh-text-secondary);
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 35%, transparent);
  padding: 11px 16px;
}

.sh-site .sh-legal-table tr:last-child td {
  border-bottom: none;
}

.sh-site .sh-legal-table a {
  color: var(--sh-accent-text, var(--sh-text-primary));
  text-underline-offset: 2px;
  text-decoration: underline;
  -webkit-text-decoration-color: color-mix(in srgb, var(--sh-accent) 70%, transparent);
  text-decoration-color: color-mix(in srgb, var(--sh-accent) 70%, transparent);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .sh-site .sh-legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sh-site .sh-legal-sidebar {
    order: -1;
  }

  .sh-site .sh-legal-toc {
    position: relative;
    top: 0;
  }
}

.sh-mock {
  background: var(--sh-bg-elevated);
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  border-radius: 18px;
  position: relative;
}

.sh-mock-bar {
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  display: flex;
}

.sh-mock-dots {
  gap: 6px;
  display: inline-flex;
}

.sh-mock-dots i {
  background: color-mix(in srgb, var(--sh-text-secondary) 28%, transparent);
  border-radius: 50%;
  width: 9px;
  height: 9px;
}

.sh-mock-tab {
  font-family: var(--sh-font-sans);
  letter-spacing: .02em;
  color: var(--sh-text-primary);
  background: color-mix(in srgb, var(--sh-accent) 14%, transparent);
  border-radius: 8px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 600;
}

.sh-mock-live {
  font-family: var(--sh-font-sans);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sh-text-secondary);
  align-items: center;
  gap: 7px;
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.sh-mock-live .dot {
  background: var(--sh-accent);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2s ease-in-out infinite shMockPulse;
}

.sh-mock-body {
  gap: 14px;
  padding: 18px;
  display: grid;
}

.sh-mock-kpis {
  border: 1px solid color-mix(in srgb, var(--sh-border) 45%, transparent);
  border-radius: 12px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  overflow: hidden;
}

.sh-mock-kpis .k {
  padding: 14px 16px;
}

.sh-mock-kpis .k + .k {
  border-left: 1px solid color-mix(in srgb, var(--sh-border) 45%, transparent);
}

.sh-mock-kpis .k b {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  font-size: 26px;
  line-height: 1;
  display: block;
}

.sh-mock-kpis .k span {
  color: var(--sh-text-secondary);
  margin-top: 6px;
  font-size: 11px;
  display: block;
}

.sh-mock-rows {
  gap: 10px;
  display: grid;
}

.sh-mock-row {
  border: 1px solid color-mix(in srgb, var(--sh-border) 45%, transparent);
  background: var(--sh-bg-card);
  border-radius: 12px;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  display: grid;
}

.sh-mock-row .ico {
  background: color-mix(in srgb, var(--sh-accent) 14%, transparent);
  width: 30px;
  height: 30px;
  color: var(--sh-accent);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sh-mock-row .meta {
  min-width: 0;
}

.sh-mock-row .meta b {
  color: var(--sh-text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  display: block;
  overflow: hidden;
}

.sh-mock-row .meta small {
  color: var(--sh-text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11px;
  display: block;
  overflow: hidden;
}

.sh-mock-row .track {
  background: color-mix(in srgb, var(--sh-text-secondary) 18%, transparent);
  border-radius: 99px;
  width: 64px;
  height: 5px;
  overflow: hidden;
}

.sh-mock-row .track i {
  background: var(--sh-accent);
  border-radius: 99px;
  height: 100%;
  display: block;
}

.sh-mock-row .pill {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sh-accent);
  background: color-mix(in srgb, var(--sh-accent) 14%, transparent);
  white-space: nowrap;
  border-radius: 99px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 700;
}

.sh-mock-ai {
  background: color-mix(in srgb, var(--sh-accent) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--sh-accent) 22%, transparent);
  border-radius: 12px;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  display: flex;
}

.sh-mock-ai .ico {
  color: var(--sh-accent);
  flex: none;
  margin-top: 1px;
}

.sh-mock-ai small {
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sh-accent);
  font-size: 10px;
  font-weight: 700;
  display: block;
}

.sh-mock-ai p {
  color: var(--sh-text-primary);
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.sh-mock-toast {
  background: var(--sh-bg-elevated);
  border: 1px solid color-mix(in srgb, var(--sh-accent) 45%, transparent);
  z-index: 3;
  border-radius: 14px;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  animation: 5.5s ease-in-out infinite shToastFloat;
  display: flex;
  position: absolute;
  bottom: -30px;
  right: -14px;
  box-shadow: 0 14px 34px -14px #0006;
}

@keyframes shToastFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.sh-mock-toast .ico {
  background: var(--sh-accent);
  width: 32px;
  height: 32px;
  color: var(--sh-accent-text, #2a2540);
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sh-mock-toast b {
  color: var(--sh-text-primary);
  font-size: 13px;
  display: block;
}

.sh-mock-toast small {
  color: var(--sh-text-secondary);
  font-size: 11px;
  display: block;
}

@keyframes shMockPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.sh-dialer {
  background: var(--sh-bg-elevated);
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  border-radius: 18px;
  position: relative;
}

.sh-dialer .sh-mock-tab {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.sh-dialer-body {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  display: grid;
}

.sh-dialer-call {
  border: 1px solid color-mix(in srgb, var(--sh-accent) 35%, transparent);
  background: var(--sh-bg-card);
  border-radius: 12px;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  display: flex;
}

.sh-dialer-avatar {
  background: color-mix(in srgb, var(--sh-accent) 16%, transparent);
  width: 42px;
  height: 42px;
  color: var(--sh-text-link, var(--sh-accent));
  font-family: var(--sh-font-serif);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
}

.sh-dialer-who {
  flex: 1;
  min-width: 0;
}

.sh-dialer-who b {
  color: var(--sh-text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14.5px;
  display: block;
  overflow: hidden;
}

.sh-dialer-who small {
  color: var(--sh-text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 1px;
  font-size: 11.5px;
  display: block;
  overflow: hidden;
}

.sh-dialer-meta {
  flex: none;
  justify-items: end;
  gap: 5px;
  display: grid;
}

.sh-dialer-timer {
  font-family: var(--sh-font-mono);
  color: var(--sh-text-primary);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
}

.sh-dialer-status {
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sh-accent-text, #2a2540);
  background: var(--sh-accent);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
}

.sh-dialer-lines {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.sh-dialer-lines .line {
  color: var(--sh-text-secondary);
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  background: color-mix(in srgb, var(--sh-bg-tertiary) 50%, transparent);
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
}

.sh-dialer-lines .line i {
  background: color-mix(in srgb, var(--sh-text-secondary) 45%, transparent);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.sh-dialer-lines .line.on {
  color: var(--sh-text-primary);
}

.sh-dialer-lines .line.on i {
  background: var(--sh-accent);
}

.sh-dialer-lines .line.dialing i {
  background: var(--sh-accent);
  animation: 1.4s ease-in-out infinite shMockPulse;
}

.sh-dialer-actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.sh-dialer-actions .act {
  color: var(--sh-text-secondary);
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  background: var(--sh-bg-card);
  white-space: nowrap;
  border-radius: 10px;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
}

.sh-dialer-actions .act.primary {
  color: var(--sh-accent-text, #2a2540);
  background: var(--sh-accent);
  border-color: var(--sh-accent);
}

.sh-dialer-foot {
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  color: var(--sh-text-secondary);
  flex-wrap: wrap;
  gap: 22px;
  padding: 12px 16px;
  font-size: 12px;
  display: flex;
}

.sh-dialer-foot b {
  color: var(--sh-text-primary);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .sh-dialer-lines .line.dialing i {
    animation: none;
  }
}

.sh-gallery {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  display: grid;
}

.sh-gallery-card {
  cursor: zoom-in;
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  text-align: left;
  border-radius: 14px;
  flex-direction: column;
  padding: 0;
  font-family: inherit;
  transition: transform .18s, border-color .18s;
  display: flex;
  overflow: hidden;
}

.sh-gallery-card:hover {
  border-color: color-mix(in srgb, var(--sh-accent) 45%, transparent);
  transform: translateY(-3px);
}

.sh-gallery-card img {
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--sh-bg-tertiary);
  width: 100%;
  display: block;
}

.sh-gallery-title {
  color: var(--sh-text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 40%, transparent);
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  overflow: hidden;
}

.sh-lightbox {
  z-index: 200;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #0c0815d1;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0;
}

.sh-lightbox-inner {
  max-width: min(860px, 92vw);
  position: relative;
}

.sh-lightbox-inner img {
  border-radius: 12px;
  max-width: 100%;
  max-height: 78vh;
  display: block;
}

.sh-lightbox-inner p {
  text-align: center;
  color: #e9e4f5;
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.sh-lightbox-close {
  z-index: 1;
  cursor: pointer;
  background: var(--sh-accent);
  width: 36px;
  height: 36px;
  color: var(--sh-accent-text, #2a2540);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: absolute;
  top: -14px;
  right: -14px;
}

@media (max-width: 980px) {
  .sh-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .sh-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.sh-quotewall {
  columns: 3;
  column-gap: 18px;
}

.sh-quotewall-card {
  break-inside: avoid;
  background: var(--sh-bg-card);
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  border-radius: 16px;
  margin: 0 0 18px;
  padding: 24px 24px 20px;
}

.sh-quotewall-card blockquote {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.sh-quotewall-cite {
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  display: flex;
}

.sh-quotewall-cite img {
  object-fit: cover;
  background: var(--sh-bg-tertiary);
  border-radius: 50%;
  width: 34px;
  height: 34px;
}

.sh-quotewall-cite span {
  color: var(--sh-text-secondary);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .sh-quotewall {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .sh-quotewall {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .sh-mock-toast {
    bottom: -14px;
    right: 6px;
  }

  .sh-mock-row .track {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sh-mock-live .dot, .sh-mock-toast {
    animation: none;
  }
}

.sh-btn:active {
  transition-duration: 80ms;
  transform: translateY(0)scale(.98);
}

.sh-card-link-wrap:active {
  transform: translateY(-2px)scale(.995);
}

.sh-acc-q:active .sh-acc-ico {
  transform: scale(.85);
}

.sh-acc-item.open .sh-acc-q:active .sh-acc-ico {
  transform: rotate(45deg)scale(.85);
}

.sh-site .sh-btn:focus-visible, .sh-site .sh-card-link-wrap:focus-visible, .sh-site .sh-acc-q:focus-visible, .sh-site .sh-step-tab:focus-visible, .sh-site .sh-tab:focus-visible {
  outline: 2px solid var(--sh-accent);
  outline-offset: 2px;
  border-radius: 10px;
}

.sh-card-icon {
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.sh-card:hover .sh-card-icon, .sh-card-link-wrap:hover .sh-card-icon {
  transform: translateY(-3px);
}

.sh-btn svg, .sh-card-link svg {
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}

.sh-btn:hover svg, .sh-card:hover .sh-card-link svg, .sh-card-link:hover svg {
  transform: translateX(3px);
}

.sh-reveal.sh-rv-left {
  transform: translateX(-28px);
}

.sh-reveal.sh-rv-right {
  transform: translateX(28px);
}

.sh-reveal.sh-rv-scale {
  transform: scale(.955)translateY(14px);
}

.sh-reveal.in.sh-rv-left, .sh-reveal.in.sh-rv-right, .sh-reveal.in.sh-rv-scale {
  transform: none;
}

@media (max-width: 980px) {
  .sh-reveal.sh-rv-left, .sh-reveal.sh-rv-right {
    transform: translateY(22px);
  }

  .sh-reveal.sh-rv-left.in, .sh-reveal.sh-rv-right.in {
    transform: none;
  }
}

.sh-mock-row .track i {
  transform-origin: 0;
  animation: 1.3s cubic-bezier(.16, 1, .3, 1) both shTrackGrow;
}

.sh-mock-row:nth-child(2) .track i {
  animation-delay: .18s;
}

.sh-mock-row:nth-child(3) .track i {
  animation-delay: .36s;
}

@keyframes shTrackGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.sh-mock-row .pill {
  animation: 3.6s ease-in-out infinite shMockPulse;
}

.sh-mock-row:nth-child(2) .pill {
  animation-delay: 1.2s;
}

.sh-mock-row:nth-child(3) .pill {
  animation-delay: 2.4s;
}

.sh-mock-toast {
  animation: .5s cubic-bezier(.16, 1, .3, 1) .9s both shToastIn, 5.5s ease-in-out 1.4s infinite shToastFloat;
}

@keyframes shToastIn {
  from {
    opacity: 0;
    transform: translateY(10px)scale(.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.sh-chat {
  background: var(--sh-bg-elevated);
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  border-radius: 18px;
  overflow: hidden;
}

.sh-chat-head {
  border-bottom: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  font-family: var(--sh-font-sans);
  color: var(--sh-text-primary);
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
}

.sh-chat-head .ava {
  background: var(--sh-accent);
  width: 26px;
  height: 26px;
  color: var(--sh-accent-text, #2a2540);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sh-chat-head .on {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sh-text-secondary);
  align-items: center;
  gap: 7px;
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
}

.sh-chat-head .on i {
  background: var(--sh-accent);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2s ease-in-out infinite shMockPulse;
}

.sh-chat-body {
  align-content: end;
  gap: 10px;
  min-height: 300px;
  padding: 18px 16px;
  display: grid;
}

.sh-chat-msg {
  border-radius: 14px;
  max-width: 82%;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  animation: .35s cubic-bezier(.16, 1, .3, 1) both shChatIn;
}

.sh-chat-msg.user {
  background: var(--sh-accent);
  color: var(--sh-accent-text, #2a2540);
  border-bottom-right-radius: 5px;
  justify-self: end;
  font-weight: 500;
}

.sh-chat-msg.agent {
  background: color-mix(in srgb, var(--sh-text-primary) 6%, var(--sh-bg-card));
  color: var(--sh-text-primary);
  border-bottom-left-radius: 5px;
  justify-self: start;
}

.sh-chat-msg.agent b {
  font-weight: 700;
}

@keyframes shChatIn {
  from {
    opacity: 0;
    transform: translateY(8px)scale(.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.sh-chat-typing {
  background: color-mix(in srgb, var(--sh-text-primary) 6%, var(--sh-bg-card));
  border-radius: 14px 14px 14px 5px;
  justify-self: start;
  align-items: center;
  gap: 5px;
  padding: 12px 15px;
  animation: .25s both shChatIn;
  display: inline-flex;
}

.sh-chat-typing i {
  background: color-mix(in srgb, var(--sh-text-secondary) 70%, transparent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.1s ease-in-out infinite shTypeDot;
}

.sh-chat-typing i:nth-child(2) {
  animation-delay: .15s;
}

.sh-chat-typing i:nth-child(3) {
  animation-delay: .3s;
}

@keyframes shTypeDot {
  0%, 60%, 100% {
    opacity: .5;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.sh-chat-chip {
  border: 1px solid color-mix(in srgb, var(--sh-accent) 40%, transparent);
  background: color-mix(in srgb, var(--sh-accent) 10%, transparent);
  color: var(--sh-text-primary);
  border-radius: 12px;
  justify-self: start;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 600;
  animation: .35s cubic-bezier(.16, 1, .3, 1) both shChatIn;
  display: inline-flex;
}

.sh-chat-chip svg {
  color: var(--sh-accent);
}

.sh-chat-foot {
  border-top: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  color: var(--sh-text-secondary);
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 12.5px;
  display: flex;
}

.sh-chat-foot .bar {
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  background: var(--sh-bg-card);
  height: 36px;
  color: var(--sh-text-muted, var(--sh-text-secondary));
  border-radius: 10px;
  flex: 1;
  align-items: center;
  padding: 0 14px;
  display: flex;
}

.sh-chat-foot .mic {
  background: color-mix(in srgb, var(--sh-accent) 14%, transparent);
  width: 36px;
  height: 36px;
  color: var(--sh-accent);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sh-midcta {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.sh-midcta p {
  font-family: var(--sh-font-serif);
  color: var(--sh-text-primary);
  margin: 0 0 22px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
}

.sh-direct-booking {
  gap: 32px;
  display: grid;
}

.sh-direct-booking-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.sh-direct-booking-head .sh-h2 {
  margin: 10px 0 0;
}

.sh-direct-booking-head .sh-lead {
  max-width: 590px;
  margin: 14px auto 0;
}

.sh-inline-booking-widget {
  height: 500px;
  max-height: 500px;
  scroll-margin-top: 96px;
}

.sh-inline-booking-placeholder {
  border: 1px solid color-mix(in srgb, var(--sh-border) 55%, transparent);
  background: var(--sh-bg-card);
  height: 100%;
  min-height: 0;
  color: var(--sh-text-muted);
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.sh-inline-booking-placeholder svg {
  color: var(--sh-accent);
}

@media (max-width: 760px) {
  .sh-inline-booking-widget {
    height: auto;
    max-height: none;
  }
}

.sh-chiprow {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.sh-chip {
  color: var(--sh-text-primary);
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  background: var(--sh-bg-card);
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .2s, color .2s;
  display: inline-flex;
}

.sh-chip:hover {
  border-color: var(--sh-accent);
  color: var(--sh-accent);
  transform: translateY(-2px);
}

.sh-chip svg {
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}

.sh-chip:hover svg {
  transform: translateX(2px);
}

@media (max-width: 560px) {
  .sh-mock:has(.sh-mock-toast) .sh-mock-body {
    padding-bottom: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sh-marquee-track {
    flex-wrap: wrap;
    animation: none;
  }

  .sh-float, .sh-mock-toast, .sh-mock-row .track i, .sh-mock-row .pill, .sh-chat-msg, .sh-chat-typing, .sh-chat-chip, .sh-chat-head .on i {
    animation: none;
  }

  .sh-btn, .sh-card, .sh-card-icon, .sh-btn svg, .sh-card-link svg, .sh-chip, .sh-chip svg {
    transition: none;
  }
}

/*# sourceMappingURL=src_styles_site_0b1y45s.css.map*/