:root {
  --hss-sv-red: #e31b32;
  --hss-sv-red-dark: #b90d22;
  --hss-sv-ink: #101010;
  --hss-sv-muted: #696969;
  --hss-sv-line: #dcdcd7;
  --hss-sv-cream: #f5f4ef;
  --hss-sv-white: #ffffff;
  --hss-sv-soft: #ebebe7;
  --hss-sv-radius: 24px;
  --hss-sv-shadow: 0 28px 70px rgba(16, 16, 16, 0.13);
}

.hss-sv-page,
.hss-sv-page * {
  box-sizing: border-box;
}

.hss-sv-page {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  background: var(--hss-sv-cream);
  color: var(--hss-sv-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hss-sv-page a {
  color: inherit;
  text-decoration: none;
}

.hss-sv-page button,
.hss-sv-page input,
.hss-sv-page select {
  font: inherit;
}

.hss-sv-page h1,
.hss-sv-page h2,
.hss-sv-page h3,
.hss-sv-page p {
  margin-top: 0;
}

.hss-sv-page img,
.hss-sv-page svg {
  display: block;
  max-width: 100%;
}

.hss-sv-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.hss-sv-skip {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white) !important;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.hss-sv-skip:focus {
  transform: translateY(0);
}

.hss-sv-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 24px;
  background: var(--hss-sv-red);
  color: var(--hss-sv-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
}

.hss-sv-pulse {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: hss-sv-pulse 2s infinite;
}

@keyframes hss-sv-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hss-sv-scroll-marker {
  position: absolute;
  top: 34px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hss-sv-header {
  position: absolute;
  z-index: 100;
  top: 34px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hss-sv-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(245, 244, 239, 0.92);
  border-bottom-color: rgba(16, 16, 16, 0.08);
  box-shadow: 0 10px 30px rgba(16, 16, 16, 0.06);
  backdrop-filter: blur(18px);
}

.hss-sv-nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hss-sv-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.hss-sv-brand-mark {
  display: inline-flex;
  min-width: 45px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding-inline: 8px;
  border-radius: 7px;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.hss-sv-brand-name {
  transform: translateY(-1px);
}

.hss-sv-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #383838;
  font-size: 13px;
  font-weight: 650;
}

.hss-sv-navigation > a:not(.hss-sv-nav-cta) {
  position: relative;
}

.hss-sv-navigation > a:not(.hss-sv-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--hss-sv-red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.hss-sv-navigation > a:not(.hss-sv-nav-cta):hover::after,
.hss-sv-navigation > a:not(.hss-sv-nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hss-sv-nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--hss-sv-ink);
  border-radius: 99px;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white) !important;
  transition: transform 160ms ease, background 160ms ease;
}

.hss-sv-nav-cta:hover,
.hss-sv-nav-cta:focus-visible {
  background: var(--hss-sv-red);
  border-color: var(--hss-sv-red);
  transform: translateY(-2px);
}

.hss-sv-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--hss-sv-ink);
  cursor: pointer;
}

.hss-sv-menu-button > span:not(.screen-reader-text) {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--hss-sv-white);
}

.hss-sv-hero {
  position: relative;
  min-height: 790px;
  padding: 148px 0 88px;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 16, 16, 0.035) 1px, transparent 1px),
    var(--hss-sv-cream);
  background-size: 48px 48px;
}

.hss-sv-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--hss-sv-cream));
  content: "";
  pointer-events: none;
}

.hss-sv-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hss-sv-hero-glow-one {
  top: 80px;
  right: -130px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(227, 27, 50, 0.18), rgba(227, 27, 50, 0) 68%);
}

.hss-sv-hero-glow-two {
  bottom: 30px;
  left: -160px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0) 70%);
}

.hss-sv-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 550px;
  align-items: center;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  gap: clamp(42px, 6vw, 92px);
}

.hss-sv-hero-copy {
  padding-top: 18px;
}

.hss-sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--hss-sv-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.19em;
}

.hss-sv-eyebrow-divider {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hss-sv-hero h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6.2vw, 86px);
  font-weight: 790;
  letter-spacing: -0.072em;
  line-height: 0.94;
}

.hss-sv-hero h1 em {
  color: var(--hss-sv-red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hss-sv-hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: #565656;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.hss-sv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.hss-sv-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.hss-sv-button:hover,
.hss-sv-button:focus-visible {
  transform: translateY(-3px);
}

.hss-sv-button-primary {
  background: var(--hss-sv-red);
  color: var(--hss-sv-white) !important;
  box-shadow: 0 12px 26px rgba(227, 27, 50, 0.22);
}

.hss-sv-button-primary:hover,
.hss-sv-button-primary:focus-visible {
  background: var(--hss-sv-red-dark);
  box-shadow: 0 16px 34px rgba(227, 27, 50, 0.26);
}

.hss-sv-button-secondary {
  border-color: rgba(16, 16, 16, 0.15);
  background: rgba(255, 255, 255, 0.64);
  color: var(--hss-sv-ink) !important;
  backdrop-filter: blur(12px);
}

.hss-sv-button-secondary:hover,
.hss-sv-button-secondary:focus-visible {
  border-color: var(--hss-sv-ink);
  background: var(--hss-sv-white);
}

.hss-sv-play {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white);
  font-size: 8px;
  text-indent: 1px;
}

.hss-sv-platform-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b6b6b;
  font-size: 12px;
  font-weight: 650;
}

.hss-sv-platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27a45c;
  box-shadow: 0 0 0 4px rgba(39, 164, 92, 0.1);
}

.hss-sv-product-stage {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.hss-sv-stage-grid {
  position: absolute;
  inset: 5% -9% -5% 8%;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(145deg, var(--hss-sv-red), #9a071a);
  background-size: 30px 30px, 30px 30px, auto;
  box-shadow: 0 35px 100px rgba(143, 8, 24, 0.24);
  transform: rotate(-4deg);
}

.hss-sv-floating-label {
  position: absolute;
  z-index: 5;
  padding: 8px 12px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(16, 16, 16, 0.1);
  color: var(--hss-sv-ink);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  backdrop-filter: blur(12px);
}

.hss-sv-floating-label-top {
  top: 36px;
  right: -8px;
}

.hss-sv-floating-label-bottom {
  bottom: 35px;
  left: -12px;
}

.hss-sv-app-window {
  position: relative;
  z-index: 3;
  width: min(100%, 540px);
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 24px;
  background: #f7f7f5;
  box-shadow: 0 42px 90px rgba(16, 16, 16, 0.24);
  transform: rotateY(-5deg) rotateX(2deg) translateY(4px);
}

.hss-sv-app-topbar {
  display: grid;
  min-height: 64px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  padding: 0 19px;
  border-bottom: 1px solid #d8d8d4;
  background: #ececea;
}

.hss-sv-window-dots {
  display: flex;
  gap: 6px;
}

.hss-sv-window-dots span {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(16, 16, 16, 0.13);
  border-radius: 50%;
  background: #d6d6d1;
}

.hss-sv-window-dots span:first-child {
  background: var(--hss-sv-red);
}

.hss-sv-app-wordmark {
  font-size: 14px;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.hss-sv-app-wordmark strong {
  color: var(--hss-sv-red);
  font-weight: 900;
}

.hss-sv-app-wordmark small {
  margin-left: 4px;
  color: #888;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hss-sv-status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  color: #3d3d3d;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.hss-sv-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28a45c;
  box-shadow: 0 0 0 3px rgba(40, 164, 92, 0.12);
}

.hss-sv-app-body {
  display: grid;
  min-height: 360px;
  align-items: center;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 24px;
  padding: 38px 34px 30px;
}

.hss-sv-app-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #2d2d2d;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.hss-sv-app-label span:last-child {
  color: #9b9b96;
}

.hss-sv-meter-pair {
  display: grid;
  height: 185px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hss-sv-meter {
  position: relative;
  overflow: hidden;
  border: 1px solid #d5d5d1;
  border-radius: 8px;
  background:
    repeating-linear-gradient(to top, rgba(255, 255, 255, 0.6) 0 2px, transparent 2px 6px),
    #e4e4e0;
}

.hss-sv-meter i {
  position: absolute;
  right: 3px;
  bottom: 3px;
  left: 3px;
  height: var(--meter-height);
  border-radius: 4px;
  background:
    repeating-linear-gradient(to top, rgba(255, 255, 255, 0.28) 0 2px, transparent 2px 6px),
    linear-gradient(to top, var(--hss-sv-red), #ff6d7f);
  transform-origin: bottom;
  animation: hss-sv-meter-breathe 1.8s ease-in-out infinite alternate;
}

.hss-sv-meter:nth-child(2) i {
  animation-delay: -0.7s;
}

@keyframes hss-sv-meter-breathe {
  from { transform: scaleY(0.82); }
  to { transform: scaleY(1); }
}

.hss-sv-db-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #a0a09b;
  font-size: 6px;
}

.hss-sv-gain-block {
  text-align: center;
}

.hss-sv-knob {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 9px auto 14px;
  border: 1px solid #c8c8c2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #f9f9f7 0 13%, transparent 14%),
    conic-gradient(from 225deg, #dbdbd6 0 74%, var(--hss-sv-red) 74% 78%, #dbdbd6 78% 100%);
  box-shadow: inset 0 0 0 9px #eeeeeb, 0 13px 30px rgba(16, 16, 16, 0.12);
}

.hss-sv-knob::before {
  position: absolute;
  inset: 18px;
  border: 1px solid #c7c7c1;
  border-radius: 50%;
  background: linear-gradient(145deg, #f5f5f2, #d5d5d0);
  box-shadow: inset -7px -8px 15px rgba(16, 16, 16, 0.06), inset 8px 8px 16px rgba(255, 255, 255, 0.8);
  content: "";
}

.hss-sv-knob-indicator {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 3px;
  height: 27px;
  border-radius: 4px;
  background: var(--hss-sv-red);
  transform: translateX(-50%);
}

.hss-sv-knob-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bdbdb7;
  transform: translate(-50%, -50%);
}

.hss-sv-gain-value {
  color: #252525;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hss-sv-gain-value small {
  color: #8a8a84;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hss-sv-app-footer {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 20px;
  border-top: 1px solid #d8d8d4;
  background: #ececea;
}

.hss-sv-app-footer > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hss-sv-footer-label {
  color: #93938d;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hss-sv-app-footer strong {
  font-size: 9px;
}

.hss-sv-app-footer button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hss-sv-app-footer button span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #40d878;
}

.hss-sv-proof-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--hss-sv-line);
  border-bottom: 1px solid var(--hss-sv-line);
  background: rgba(255, 255, 255, 0.58);
}

.hss-sv-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hss-sv-proof-grid > div {
  display: flex;
  min-height: 112px;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 22px 30px;
  border-right: 1px solid var(--hss-sv-line);
}

.hss-sv-proof-grid > div:first-child {
  border-left: 1px solid var(--hss-sv-line);
}

.hss-sv-proof-grid strong {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hss-sv-proof-grid span {
  color: #777;
  font-size: 12px;
}

.hss-sv-section {
  position: relative;
  padding: 120px 0;
}

.hss-sv-section-heading {
  margin-bottom: 54px;
}

.hss-sv-section-heading-split {
  display: grid;
  align-items: end;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
}

.hss-sv-section-heading h2,
.hss-sv-compatibility h2,
.hss-sv-buy h2,
.hss-sv-faq h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hss-sv-section-heading > p,
.hss-sv-section-heading-split > p,
.hss-sv-compatibility-copy > p,
.hss-sv-faq-intro > p {
  margin-bottom: 0;
  color: var(--hss-sv-muted);
  font-size: 17px;
  line-height: 1.7;
}

.hss-sv-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--hss-sv-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hss-sv-feature-grid {
  display: grid;
  grid-auto-rows: minmax(270px, auto);
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hss-sv-feature-card {
  position: relative;
  display: flex;
  min-height: 270px;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--hss-sv-line);
  border-radius: var(--hss-sv-radius);
  background: rgba(255, 255, 255, 0.66);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.hss-sv-feature-card:hover {
  border-color: rgba(227, 27, 50, 0.4);
  box-shadow: 0 24px 50px rgba(16, 16, 16, 0.08);
  transform: translateY(-5px);
}

.hss-sv-feature-card h3 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.hss-sv-feature-card p {
  max-width: 555px;
  margin-bottom: 0;
  color: var(--hss-sv-muted);
  font-size: 15px;
  line-height: 1.65;
}

.hss-sv-feature-card-large {
  min-height: 460px;
  grid-row: span 2;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white);
}

.hss-sv-feature-card-large p {
  color: rgba(255, 255, 255, 0.62);
}

.hss-sv-feature-card-wide {
  min-height: 260px;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 32px;
  grid-column: 1 / -1;
  background: var(--hss-sv-red);
  color: var(--hss-sv-white);
}

.hss-sv-feature-card-wide p {
  color: rgba(255, 255, 255, 0.76);
}

.hss-sv-card-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #aaa;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.hss-sv-feature-card-large .hss-sv-card-number,
.hss-sv-feature-card-wide .hss-sv-card-number {
  color: rgba(255, 255, 255, 0.46);
}

.hss-sv-icon {
  position: absolute;
  top: 30px;
  left: 32px;
}

.hss-sv-icon-route {
  width: 180px;
  height: 120px;
}

.hss-sv-icon-route span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.hss-sv-icon-route span:nth-child(1) {
  top: 14px;
  left: 0;
  width: 100px;
  height: 12px;
}

.hss-sv-icon-route span:nth-child(2) {
  top: 52px;
  left: 48px;
  width: 132px;
  height: 12px;
  background: var(--hss-sv-red);
}

.hss-sv-icon-route span:nth-child(3) {
  top: 90px;
  left: 14px;
  width: 116px;
  height: 12px;
}

.hss-sv-icon-route::before,
.hss-sv-icon-route::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--hss-sv-white);
  content: "";
}

.hss-sv-icon-route::before {
  top: 14px;
  left: 90px;
}

.hss-sv-icon-route::after {
  top: 52px;
  left: 47px;
}

.hss-sv-icon-meter {
  display: flex;
  height: 92px;
  align-items: flex-end;
  gap: 7px;
}

.hss-sv-icon-meter i {
  display: block;
  width: 10px;
  border-radius: 10px;
  background: var(--hss-sv-red);
}

.hss-sv-icon-meter i:nth-child(1) { height: 32%; }
.hss-sv-icon-meter i:nth-child(2) { height: 70%; }
.hss-sv-icon-meter i:nth-child(3) { height: 50%; }
.hss-sv-icon-meter i:nth-child(4) { height: 91%; }

.hss-sv-icon-knob {
  width: 92px;
  height: 92px;
  border: 1px solid #cfcfca;
  border-radius: 50%;
  background: conic-gradient(from 220deg, var(--hss-sv-soft) 0 73%, var(--hss-sv-red) 73% 78%, var(--hss-sv-soft) 78% 100%);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.7);
}

.hss-sv-icon-knob i {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 3px;
  height: 20px;
  border-radius: 2px;
  background: var(--hss-sv-red);
  transform: translateX(-50%);
}

.hss-sv-icon-monitor {
  position: relative;
  flex: 0 0 150px;
  width: 150px;
  height: 116px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 16px;
}

.hss-sv-icon-monitor::after {
  position: absolute;
  right: 22px;
  bottom: -14px;
  left: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  content: "";
}

.hss-sv-icon-monitor span {
  position: absolute;
  top: 28px;
  left: 23px;
  width: 44px;
  height: 44px;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.hss-sv-icon-monitor i {
  position: absolute;
  top: 35px;
  right: 23px;
  width: 37px;
  height: 30px;
  border-right: 3px solid rgba(255, 255, 255, 0.9);
  border-left: 3px solid rgba(255, 255, 255, 0.9);
}

.hss-sv-mini-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.hss-sv-mini-flow span:nth-of-type(2) {
  color: var(--hss-sv-white);
}

.hss-sv-mini-flow i {
  position: relative;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.27);
}

.hss-sv-mini-flow i::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-right: 1px solid rgba(255, 255, 255, 0.65);
  content: "";
  transform: rotate(45deg);
}

.hss-sv-workflow {
  background: var(--hss-sv-white);
}

.hss-sv-section-heading-centered {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hss-sv-section-heading-centered p {
  max-width: 620px;
  margin: 20px auto 0;
}

.hss-sv-steps {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
}

.hss-sv-step {
  position: relative;
  min-width: 0;
}

.hss-sv-step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--hss-sv-red);
  color: var(--hss-sv-white);
  font-size: 12px;
  font-weight: 850;
}

.hss-sv-step-visual {
  display: flex;
  height: 185px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--hss-sv-line);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(16, 16, 16, 0.03) 1px, transparent 1px),
    #f6f6f3;
  background-size: 24px 24px;
}

.hss-sv-step h3 {
  margin-bottom: 9px;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.hss-sv-step p {
  margin-bottom: 0;
  color: var(--hss-sv-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hss-sv-step-arrow {
  align-self: center;
  margin-top: 30px;
  color: #b5b5af;
  font-size: 26px;
}

.hss-sv-settings-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #d2d2cc;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(16, 16, 16, 0.08);
}

.hss-sv-settings-row > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.hss-sv-settings-row small,
.hss-sv-channel-strip small {
  color: #9a9a94;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.hss-sv-settings-row strong,
.hss-sv-channel-strip strong {
  font-size: 11px;
  letter-spacing: -0.01em;
}

.hss-sv-settings-icon {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white);
  font-size: 20px;
}

.hss-sv-check {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--hss-sv-red);
  color: var(--hss-sv-white);
  font-size: 11px;
  font-weight: 900;
}

.hss-sv-channel-strip {
  display: flex;
  width: 75%;
  min-height: 105px;
  justify-content: center;
  flex-direction: column;
  padding: 18px;
  border: 1px solid #d2d2cc;
  border-radius: 12px;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white);
  box-shadow: 0 12px 30px rgba(16, 16, 16, 0.17);
}

.hss-sv-channel-strip small {
  color: rgba(255, 255, 255, 0.45);
}

.hss-sv-channel-strip span {
  display: grid;
  height: 22px;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 13px;
}

.hss-sv-channel-strip i {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.hss-sv-channel-strip i::after {
  position: absolute;
  right: 2px;
  bottom: 2px;
  left: 2px;
  height: 65%;
  border-radius: 2px;
  background: var(--hss-sv-red);
  content: "";
}

.hss-sv-channel-strip i:nth-child(2)::after {
  height: 48%;
}

.hss-sv-waveform {
  display: flex;
  width: 100%;
  height: 94px;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.hss-sv-waveform i {
  display: block;
  width: 4px;
  height: var(--wave);
  min-height: 8px;
  border-radius: 4px;
  background: var(--hss-sv-red);
}

.hss-sv-compatibility {
  overflow: hidden;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white);
}

.hss-sv-compatibility::before {
  position: absolute;
  top: -250px;
  right: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.hss-sv-compatibility-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 8vw, 120px);
}

.hss-sv-compatibility-copy p {
  margin: 26px 0 28px;
  color: rgba(255, 255, 255, 0.57);
}

.hss-sv-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.hss-sv-text-link span {
  color: var(--hss-sv-red);
}

.hss-sv-compatibility-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.hss-sv-compatibility-featured {
  display: grid;
  min-height: 112px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
}

.hss-sv-mpc-mark {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--hss-sv-red);
  color: var(--hss-sv-white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hss-sv-compatibility-featured > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.hss-sv-compatibility-featured small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hss-sv-compatibility-featured strong {
  font-size: 17px;
  letter-spacing: -0.025em;
}

.hss-sv-compatibility-featured > span {
  padding: 7px 9px;
  border: 1px solid rgba(52, 220, 115, 0.32);
  border-radius: 999px;
  background: rgba(52, 220, 115, 0.1);
  color: #5ee690;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.hss-sv-app-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.hss-sv-app-pills span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 650;
}

.hss-sv-app-pills span::before {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--hss-sv-red);
  content: "";
}

.hss-sv-compatibility-note {
  margin: 18px 4px 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
}

.hss-sv-compatibility-note span {
  margin-right: 5px;
  color: #5ee690;
  font-size: 8px;
}

.hss-sv-buy {
  overflow: hidden;
  background: var(--hss-sv-red);
  color: var(--hss-sv-white);
}

.hss-sv-buy::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.75), transparent 72%);
}

.hss-sv-buy-orb {
  position: absolute;
  top: -210px;
  left: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.035), 0 0 0 200px rgba(255, 255, 255, 0.025);
}

.hss-sv-buy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr minmax(410px, 0.72fr);
  gap: clamp(70px, 9vw, 130px);
}

.hss-sv-kicker-light {
  color: rgba(255, 255, 255, 0.72);
}

.hss-sv-buy h2 {
  max-width: 760px;
}

.hss-sv-buy-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.hss-sv-buy-quote {
  margin-top: 45px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
}

.hss-sv-price-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 28px;
  background: var(--hss-sv-white);
  box-shadow: 0 35px 80px rgba(99, 5, 17, 0.25);
  color: var(--hss-sv-ink);
}

.hss-sv-price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hss-sv-line);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hss-sv-price-topline span:first-child {
  color: var(--hss-sv-red);
}

.hss-sv-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
}

.hss-sv-price-row > div {
  display: flex;
  flex-direction: column;
}

.hss-sv-price-row small {
  color: #8c8c87;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.hss-sv-price-row strong {
  font-size: 54px;
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 1;
}

.hss-sv-price-license {
  margin-bottom: 5px;
  padding: 6px 9px;
  border: 1px solid #dbdbd6;
  border-radius: 999px;
  color: #787873;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.hss-sv-price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 22px 0 0;
  border-top: 1px solid var(--hss-sv-line);
  list-style: none;
}

.hss-sv-price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f4f4f;
  font-size: 13px;
}

.hss-sv-price-card li span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(227, 27, 50, 0.1);
  color: var(--hss-sv-red);
  font-size: 9px;
  font-weight: 900;
}

.hss-sv-button-checkout {
  width: 100%;
  background: var(--hss-sv-ink);
  color: var(--hss-sv-white) !important;
}

.hss-sv-button-checkout:hover,
.hss-sv-button-checkout:focus-visible {
  background: var(--hss-sv-red);
  box-shadow: 0 14px 28px rgba(227, 27, 50, 0.2);
}

.hss-sv-price-note {
  margin: 13px 0 0;
  color: #94948f;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.hss-sv-faq {
  background: var(--hss-sv-cream);
}

.hss-sv-faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 9vw, 130px);
}

.hss-sv-faq-intro {
  position: sticky;
  top: 120px;
}

.hss-sv-faq-intro > p {
  margin: 25px 0 28px;
}

.hss-sv-accordion {
  border-top: 1px solid #cfcfca;
}

.hss-sv-accordion details {
  border-bottom: 1px solid #cfcfca;
}

.hss-sv-accordion summary {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 50px 20px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.035em;
  list-style: none;
}

.hss-sv-accordion summary::-webkit-details-marker {
  display: none;
}

.hss-sv-accordion summary span,
.hss-sv-accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--hss-sv-red);
  content: "";
  transform: translateY(-50%);
}

.hss-sv-accordion summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.hss-sv-accordion details[open] summary span::after {
  transform: rotate(0deg);
}

.hss-sv-accordion details > p {
  max-width: 690px;
  margin: -2px 0 28px;
  padding-right: 50px;
  color: var(--hss-sv-muted);
  font-size: 15px;
  line-height: 1.72;
}

.hss-sv-footer {
  padding: 70px 0 28px;
  background: #090909;
  color: var(--hss-sv-white);
}

.hss-sv-footer-top {
  display: grid;
  min-height: 110px;
  align-items: start;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.hss-sv-brand-footer .hss-sv-brand-mark {
  background: var(--hss-sv-white);
  color: var(--hss-sv-ink);
}

.hss-sv-footer-tagline {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hss-sv-footer-tagline strong {
  color: var(--hss-sv-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hss-sv-footer-tagline span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.hss-sv-footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  font-weight: 650;
}

.hss-sv-footer-links a:hover,
.hss-sv-footer-links a:focus-visible {
  color: var(--hss-sv-white);
}

.hss-sv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
}

@media (max-width: 1100px) {
  .hss-sv-hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
    gap: 42px;
  }

  .hss-sv-hero h1 {
    font-size: clamp(50px, 6vw, 70px);
  }

  .hss-sv-app-body {
    gap: 17px;
    padding-right: 25px;
    padding-left: 25px;
  }

  .hss-sv-knob {
    width: 112px;
    height: 112px;
  }

  .hss-sv-feature-card-wide {
    min-height: 280px;
  }
}

@media (max-width: 920px) {
  .hss-sv-shell {
    width: min(100% - 36px, 760px);
  }

  .hss-sv-menu-button {
    display: inline-flex;
  }

  .hss-sv-navigation {
    position: absolute;
    top: calc(100% - 6px);
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--hss-sv-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 50px rgba(16, 16, 16, 0.14);
    backdrop-filter: blur(16px);
  }

  .hss-sv-navigation.is-open {
    display: flex;
  }

  .hss-sv-navigation > a {
    padding: 12px 14px;
  }

  .hss-sv-navigation > a:not(.hss-sv-nav-cta)::after {
    display: none;
  }

  .hss-sv-nav-cta {
    margin-top: 8px;
  }

  .hss-sv-hero {
    padding-top: 155px;
  }

  .hss-sv-hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hss-sv-hero-copy {
    max-width: 700px;
  }

  .hss-sv-hero h1 {
    font-size: clamp(58px, 10vw, 82px);
  }

  .hss-sv-product-stage {
    width: min(100%, 650px);
    min-height: 560px;
    margin: 0 auto;
  }

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

  .hss-sv-proof-grid > div:nth-child(3) {
    border-left: 1px solid var(--hss-sv-line);
  }

  .hss-sv-proof-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--hss-sv-line);
  }

  .hss-sv-section-heading-split,
  .hss-sv-compatibility-grid,
  .hss-sv-buy-grid,
  .hss-sv-faq-grid {
    grid-template-columns: 1fr;
  }

  .hss-sv-section-heading-split {
    align-items: start;
    gap: 25px;
  }

  .hss-sv-section-heading-split > p {
    max-width: 650px;
  }

  .hss-sv-steps {
    align-items: stretch;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hss-sv-step-arrow {
    display: none;
  }

  .hss-sv-step {
    display: grid;
    grid-template-columns: 34px minmax(220px, 0.9fr) 1fr;
    gap: 20px;
    align-items: center;
  }

  .hss-sv-step-number,
  .hss-sv-step-visual {
    margin-bottom: 0;
  }

  .hss-sv-step-visual {
    height: 150px;
  }

  .hss-sv-compatibility-copy {
    max-width: 720px;
  }

  .hss-sv-buy-grid {
    gap: 60px;
  }

  .hss-sv-price-card {
    width: min(100%, 540px);
  }

  .hss-sv-faq-grid {
    gap: 55px;
  }

  .hss-sv-faq-intro {
    position: static;
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .hss-sv-shell {
    width: min(100% - 28px, 560px);
  }

  .hss-sv-announcement {
    min-height: 38px;
    padding-inline: 16px;
    font-size: 9px;
  }

  .hss-sv-header {
    top: 38px;
  }

  .hss-sv-header.is-scrolled {
    top: 0;
  }

  .hss-sv-nav {
    min-height: 70px;
  }

  .hss-sv-hero {
    min-height: 0;
    padding: 130px 0 70px;
    background-size: 36px 36px;
  }

  .hss-sv-eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hss-sv-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(46px, 14vw, 66px);
    letter-spacing: -0.067em;
  }

  .hss-sv-hero-lead {
    font-size: 16px;
  }

  .hss-sv-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hss-sv-button {
    width: 100%;
  }

  .hss-sv-product-stage {
    min-height: 400px;
  }

  .hss-sv-stage-grid {
    inset: 7% -7% -5% 6%;
    border-radius: 26px;
  }

  .hss-sv-app-window {
    border-radius: 18px;
    transform: none;
  }

  .hss-sv-app-topbar {
    min-height: 52px;
    padding: 0 12px;
  }

  .hss-sv-app-wordmark {
    font-size: 11px;
  }

  .hss-sv-app-wordmark small,
  .hss-sv-status {
    display: none;
  }

  .hss-sv-app-body {
    min-height: 260px;
    gap: 10px;
    padding: 26px 16px 20px;
  }

  .hss-sv-meter-pair {
    height: 125px;
    gap: 5px;
  }

  .hss-sv-app-label {
    font-size: 5px;
  }

  .hss-sv-knob {
    width: 82px;
    height: 82px;
    box-shadow: inset 0 0 0 7px #eeeeeb, 0 9px 20px rgba(16, 16, 16, 0.1);
  }

  .hss-sv-knob::before {
    inset: 13px;
  }

  .hss-sv-knob-indicator {
    top: 10px;
    height: 18px;
  }

  .hss-sv-app-footer {
    min-height: 62px;
    padding: 9px 12px;
  }

  .hss-sv-app-footer button {
    min-height: 32px;
    padding-inline: 9px;
  }

  .hss-sv-floating-label {
    display: none;
  }

  .hss-sv-proof-grid {
    grid-template-columns: 1fr;
  }

  .hss-sv-proof-grid > div {
    min-height: 85px;
    border-bottom: 1px solid var(--hss-sv-line);
    border-left: 1px solid var(--hss-sv-line);
  }

  .hss-sv-proof-grid > div:last-child {
    border-bottom: 0;
  }

  .hss-sv-section {
    padding: 85px 0;
  }

  .hss-sv-section-heading {
    margin-bottom: 38px;
  }

  .hss-sv-section-heading h2,
  .hss-sv-compatibility h2,
  .hss-sv-buy h2,
  .hss-sv-faq h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hss-sv-feature-grid {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .hss-sv-feature-card,
  .hss-sv-feature-card-large,
  .hss-sv-feature-card-wide {
    min-height: 310px;
    grid-column: auto;
    grid-row: auto;
  }

  .hss-sv-feature-card-wide {
    min-height: 365px;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
  }

  .hss-sv-icon-monitor {
    position: absolute;
    top: 34px;
    left: 34px;
  }

  .hss-sv-mini-flow {
    flex-wrap: wrap;
  }

  .hss-sv-step {
    display: block;
  }

  .hss-sv-step-number {
    margin-bottom: 14px;
  }

  .hss-sv-step-visual {
    height: 170px;
    margin-bottom: 20px;
  }

  .hss-sv-compatibility-grid,
  .hss-sv-buy-grid,
  .hss-sv-faq-grid {
    gap: 48px;
  }

  .hss-sv-compatibility-panel,
  .hss-sv-price-card {
    padding: 20px;
    border-radius: 22px;
  }

  .hss-sv-compatibility-featured {
    grid-template-columns: auto 1fr;
  }

  .hss-sv-compatibility-featured > span {
    display: none;
  }

  .hss-sv-app-pills {
    grid-template-columns: 1fr;
  }

  .hss-sv-buy-copy > p {
    font-size: 16px;
  }

  .hss-sv-price-row strong {
    font-size: 47px;
  }

  .hss-sv-price-license {
    display: none;
  }

  .hss-sv-accordion summary {
    min-height: 76px;
    padding-right: 40px;
    font-size: 17px;
  }

  .hss-sv-accordion details > p {
    padding-right: 15px;
  }

  .hss-sv-footer {
    padding-top: 55px;
  }

  .hss-sv-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hss-sv-footer-links {
    justify-content: flex-start;
  }

  .hss-sv-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hss-sv-page *,
  .hss-sv-page *::before,
  .hss-sv-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   SONAVECT Mac application showcase (v1.1)
   -------------------------------------------------------------------------- */

.hss-sv-hero {
  min-height: auto;
  padding: 148px 0 92px;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(16, 16, 16, 0.03) 1px, transparent 1px),
    var(--hss-sv-cream);
  background-size: 48px 48px;
}

.hss-sv-hero::after {
  display: none;
}

.hss-sv-hero > .hss-sv-shell {
  width: min(1320px, calc(100% - 48px));
}

.hss-sv-hero-intro {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 7vw, 110px);
}

.hss-sv-hero-copy {
  padding-top: 0;
}

.hss-sv-hero-aside {
  padding-bottom: 7px;
}

.hss-sv-hero h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(56px, 6.4vw, 94px);
}

.hss-sv-hero-lead {
  max-width: 610px;
  margin-bottom: 27px;
}

.hss-sv-mac-stage {
  position: relative;
  z-index: 3;
  margin-top: clamp(50px, 7vw, 82px);
  overflow: hidden;
  padding: clamp(18px, 3.3vw, 48px);
  border: 1px solid rgba(16, 16, 16, 0.13);
  border-radius: 38px;
  background:
    linear-gradient(133deg, #f20b16 0 23%, #191919 23.1% 75%, #f20b16 75.1% 100%);
  box-shadow: 0 46px 110px rgba(16, 16, 16, 0.24);
}

.hss-sv-mac-stage-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.58), transparent 25%),
    radial-gradient(circle at 78% 88%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  pointer-events: none;
}

.hss-sv-mac-app {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.17);
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 30%, rgba(227, 27, 50, 0.035), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbfbfa 78%, #f4f4f2);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #111;
}

.hss-sv-mac-titlebar {
  position: relative;
  display: grid;
  min-height: 146px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  padding: 24px 28px 11px;
}

.hss-sv-mac-dots {
  display: flex;
  align-self: start;
  gap: 9px;
  padding-top: 1px;
}

.hss-sv-mac-dots span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.hss-sv-mac-dots span:nth-child(1) { background: #ff4b4b; }
.hss-sv-mac-dots span:nth-child(2) { background: #ffbd12; }
.hss-sv-mac-dots span:nth-child(3) { background: #12b857; }

.hss-sv-mac-branding {
  align-self: end;
  text-align: center;
}

.hss-sv-mac-logo {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: #050505;
  font-family: "Arial Black", Impact, Inter, ui-sans-serif, sans-serif;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 950;
  letter-spacing: -0.095em;
  line-height: 0.9;
  white-space: nowrap;
}

.hss-sv-mac-logo strong,
.hss-sv-mac-logo em {
  font: inherit;
}

.hss-sv-mac-logo em {
  color: #ef101b;
  font-style: normal;
}

.hss-sv-mac-logo sup {
  margin-left: 7px;
  color: #111;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  transform: translateY(-28px);
}

.hss-sv-mac-tagline {
  margin-top: 16px;
  font-size: clamp(10px, 1.2vw, 17px);
  font-weight: 650;
  letter-spacing: 0.48em;
  white-space: nowrap;
}

.hss-sv-mac-creator {
  position: relative;
  display: flex;
  align-self: start;
  justify-self: end;
  flex-direction: column;
  gap: 6px;
  padding: 12px 60px 0 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.hss-sv-mac-creator strong {
  padding-bottom: 7px;
  border-bottom: 2px solid var(--hss-sv-red);
  font-size: 12px;
  font-weight: 850;
}

.hss-sv-mac-creator span {
  color: #3f3f3f;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hss-sv-mac-creator i {
  color: var(--hss-sv-red);
  font-style: normal;
}

.hss-sv-mac-creator b {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}

.hss-sv-mac-mantra {
  position: relative;
  margin: 4px 0 19px;
  color: #565c66;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.34em;
  text-align: center;
}

.hss-sv-mac-mantra::before {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 74px;
  height: 4px;
  border-radius: 99px;
  background: #f1101b;
  content: "";
  transform: translateX(-50%);
}

.hss-sv-mac-routing {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(185px, 0.48fr) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  padding: 0 clamp(24px, 4vw, 44px) 18px;
}

.hss-sv-route-card {
  min-width: 0;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid #dcdedf;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 10px 30px rgba(16, 16, 16, 0.04), inset 0 1px 0 #fff;
}

.hss-sv-route-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.hss-sv-route-heading > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff1d27, #df0713);
  box-shadow: 0 8px 18px rgba(227, 27, 50, 0.24);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.hss-sv-route-heading h3 {
  margin: 0 0 2px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hss-sv-route-heading p {
  margin: 0;
  color: #474b51;
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1.45;
}

.hss-sv-route-selector {
  display: grid;
  min-height: 70px;
  align-items: center;
  grid-template-columns: 72px minmax(0, 1fr) 20px;
  gap: 14px;
}

.hss-sv-route-selector > strong {
  overflow: hidden;
  font-size: clamp(15px, 1.65vw, 21px);
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hss-sv-route-selector > b {
  font-size: 25px;
  font-weight: 500;
  transform: translateY(-3px);
}

.hss-sv-speaker-icon,
.hss-sv-mpc-icon {
  position: relative;
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dadc;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #eeeeed);
  box-shadow: inset 0 1px 0 #fff;
}

.hss-sv-speaker-icon span {
  position: relative;
  width: 18px;
  height: 25px;
  border-radius: 3px 0 0 3px;
  background: #050505;
}

.hss-sv-speaker-icon span::after {
  position: absolute;
  top: -8px;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 18px solid #050505;
  content: "";
}

.hss-sv-speaker-icon i {
  margin-left: 22px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.2em;
}

.hss-sv-mpc-icon {
  flex-direction: column;
  color: var(--hss-sv-red);
  line-height: 0.9;
}

.hss-sv-mpc-icon strong {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.hss-sv-mpc-icon small {
  color: #111;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hss-sv-route-ready {
  display: flex;
  min-height: 45px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 11px;
  background: linear-gradient(90deg, #e2f9e9, #effaf3);
  color: #0d5e2d;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 750;
  letter-spacing: 0.1em;
}

.hss-sv-route-ready span {
  display: inline-flex;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0da44e;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.hss-sv-route-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hss-sv-route-line {
  position: absolute;
  z-index: -1;
  top: 39%;
  width: clamp(40px, 7vw, 92px);
  height: 4px;
  border-radius: 99px;
  background: #ef111d;
}

.hss-sv-route-line-left { right: calc(100% - 2px); }
.hss-sv-route-line-right { left: calc(100% - 2px); }

.hss-sv-wave-mark {
  display: flex;
  height: 103px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hss-sv-wave-mark i {
  display: block;
  width: 11px;
  border-radius: 99px;
  background: #070707;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
}

.hss-sv-wave-mark i:nth-child(1) { height: 40px; }
.hss-sv-wave-mark i:nth-child(2) { height: 67px; }
.hss-sv-wave-mark i:nth-child(3) { height: 92px; }
.hss-sv-wave-mark i:nth-child(4) { height: 119px; background: linear-gradient(#050505 0 47%, #ed0f1a 47%); }
.hss-sv-wave-mark i:nth-child(5) { height: 83px; background: #ed0f1a; }
.hss-sv-wave-mark i:nth-child(6) { height: 58px; background: #ed0f1a; }
.hss-sv-wave-mark i:nth-child(7) { height: 36px; background: #ed0f1a; }

.hss-sv-route-core > strong {
  font-size: clamp(20px, 2.4vw, 31px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hss-sv-route-core > span {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.hss-sv-mac-levels {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  padding: 14px clamp(34px, 5vw, 72px) 28px;
}

.hss-sv-level-block h3 {
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
}

.hss-sv-level-row {
  display: grid;
  align-items: center;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-bottom: 11px;
}

.hss-sv-level-row > span {
  font-size: 16px;
  font-weight: 550;
}

.hss-sv-segment-meter {
  display: grid;
  grid-template-columns: repeat(14, minmax(5px, 1fr));
  gap: clamp(3px, 0.45vw, 7px);
}

.hss-sv-segment-meter i {
  display: block;
  height: clamp(23px, 2.5vw, 35px);
  border-radius: 5px;
  background: #dfe1e2;
  box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.08);
  transform-origin: bottom;
}

.hss-sv-meter-ten i:nth-child(-n+10),
.hss-sv-meter-nine i:nth-child(-n+9),
.hss-sv-meter-eight i:nth-child(-n+8) {
  background: linear-gradient(180deg, #ff282e, #ed0f19);
  animation: hss-sv-segment-pulse 1.9s ease-in-out infinite alternate;
}

.hss-sv-segment-meter i:nth-child(-n+4) {
  background: linear-gradient(180deg, #202020, #060606) !important;
}

.hss-sv-segment-meter i:nth-child(2n) { animation-delay: -0.7s; }
.hss-sv-segment-meter i:nth-child(3n) { animation-delay: -1.15s; }

@keyframes hss-sv-segment-pulse {
  from { opacity: 0.72; transform: scaleY(0.9); }
  to { opacity: 1; transform: scaleY(1); }
}

.hss-sv-level-scale {
  display: flex;
  justify-content: space-between;
  padding-left: 36px;
  color: #41464c;
  font-size: 9px;
}

.hss-sv-mac-gain {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  padding-top: 3px;
}

.hss-sv-mac-knob {
  --knob-rotation: 0deg;
  position: relative;
  display: block;
  width: clamp(170px, 18vw, 234px);
  height: clamp(170px, 18vw, 234px);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: ns-resize;
  touch-action: none;
}

.hss-sv-mac-knob:focus-visible {
  outline: 4px solid rgba(227, 27, 50, 0.28);
  outline-offset: 7px;
}

.hss-sv-mac-knob-ring,
.hss-sv-mac-knob-face,
.hss-sv-mac-knob-mark {
  position: absolute;
  display: block;
}

.hss-sv-mac-knob-ring {
  inset: 0;
  border: 1px solid #161616;
  border-radius: 50%;
  background:
    conic-gradient(from 225deg, #f10e1a 0 104deg, #232323 104deg 270deg, #d8d8d8 270deg 320deg, #323232 320deg 360deg);
  box-shadow: 0 0 30px rgba(241, 14, 26, 0.33), 0 18px 30px rgba(16, 16, 16, 0.26);
}

.hss-sv-mac-knob-ring::after {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #131313;
  content: "";
}

.hss-sv-mac-knob-face {
  inset: 22px;
  border: 1px solid #3c3c3c;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 27%, rgba(255, 255, 255, 0.13), transparent 15%),
    radial-gradient(circle at 50% 58%, #2b2b2b, #101010 67%, #090909);
  box-shadow: inset 0 0 0 4px #090909, inset 10px 12px 25px rgba(255, 255, 255, 0.045), inset -13px -15px 24px rgba(0, 0, 0, 0.55);
}

.hss-sv-mac-knob-mark {
  top: 21px;
  left: 50%;
  z-index: 4;
  width: 6px;
  height: clamp(29px, 3.3vw, 42px);
  border-radius: 99px;
  background: #ff101a;
  box-shadow: 0 0 10px rgba(255, 16, 26, 0.92);
  transform: translateX(-50%) rotate(var(--knob-rotation));
  transform-origin: 50% calc(clamp(64px, 7.3vw, 94px));
}

.hss-sv-gain-scale {
  position: absolute;
  top: 50%;
  right: -4px;
  left: -4px;
  display: flex;
  justify-content: space-between;
  color: #111;
  font-size: 31px;
  font-weight: 600;
  pointer-events: none;
  transform: translateY(-40%);
}

.hss-sv-mac-gain-title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hss-sv-mac-gain-link {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 1px;
  color: #4e535b;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.hss-sv-mac-gain-link b {
  color: #111;
  font-size: 20px;
  line-height: 1;
  transform: rotate(42deg);
}

.hss-sv-mac-gain-readout {
  margin-top: 5px;
  color: var(--hss-sv-red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.hss-sv-mac-footer {
  display: grid;
  min-height: 78px;
  align-items: center;
  grid-template-columns: 0.76fr 0.72fr 1.35fr 0.9fr;
  gap: 0;
  padding: 15px clamp(24px, 4vw, 44px) 24px;
}

.hss-sv-mac-benefit {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 0 21px;
  border-right: 1px solid #d8dadd;
}

.hss-sv-mac-benefit:first-child { padding-left: 0; }
.hss-sv-mac-benefit b {
  color: #f10d19;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.hss-sv-mac-benefit .hss-sv-benefit-bars { font-size: 31px; }
.hss-sv-mac-benefit .hss-sv-benefit-loop { font-size: 48px; font-weight: 450; }

.hss-sv-mac-benefit span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hss-sv-mac-benefit strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hss-sv-mac-benefit small {
  color: #41464d;
  font-size: 9px;
  white-space: nowrap;
}

.hss-sv-mac-version {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #454a51;
  font-size: 10px;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.hss-sv-mac-version strong {
  padding: 5px 13px;
  border: 1px solid #d3d5d8;
  border-radius: 8px;
  color: #111;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.hss-sv-mac-version i {
  width: 1px;
  height: 16px;
  background: #aaaeb3;
}

@media (max-width: 1120px) {
  .hss-sv-mac-titlebar {
    min-height: 132px;
  }

  .hss-sv-mac-creator {
    padding-right: 48px;
  }

  .hss-sv-route-heading > span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 21px;
  }

  .hss-sv-route-selector {
    grid-template-columns: 61px minmax(0, 1fr) 16px;
    gap: 10px;
  }

  .hss-sv-speaker-icon,
  .hss-sv-mpc-icon {
    width: 60px;
    height: 60px;
  }

  .hss-sv-route-ready {
    padding-inline: 11px;
  }

  .hss-sv-mac-benefit {
    padding-inline: 13px;
  }
}

@media (max-width: 920px) {
  .hss-sv-hero {
    padding-top: 132px;
  }

  .hss-sv-hero-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hss-sv-hero-aside {
    max-width: 680px;
    padding-bottom: 0;
  }

  .hss-sv-mac-stage {
    margin-top: 46px;
    padding: 18px;
    border-radius: 30px;
  }

  .hss-sv-mac-titlebar {
    min-height: 136px;
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 22px;
  }

  .hss-sv-mac-logo {
    font-size: clamp(43px, 8vw, 67px);
  }

  .hss-sv-mac-tagline {
    letter-spacing: 0.3em;
  }

  .hss-sv-mac-creator strong {
    font-size: 9px;
  }

  .hss-sv-mac-creator span {
    font-size: 8px;
  }

  .hss-sv-mac-routing {
    grid-template-columns: 1fr;
    padding-inline: 25px;
  }

  .hss-sv-route-core {
    min-height: 156px;
  }

  .hss-sv-route-line {
    top: auto;
    right: auto;
    left: 50%;
    width: 4px;
    height: 42px;
    transform: translateX(-50%);
  }

  .hss-sv-route-line-left { top: -34px; }
  .hss-sv-route-line-right { bottom: -34px; }

  .hss-sv-wave-mark {
    height: 72px;
  }

  .hss-sv-wave-mark i:nth-child(4) { height: 94px; }

  .hss-sv-mac-levels {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-inline: 50px;
  }

  .hss-sv-level-block {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .hss-sv-mac-gain {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .hss-sv-mac-footer {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 23px;
  }

  .hss-sv-mac-benefit:nth-child(2) {
    border-right: 0;
  }

  .hss-sv-mac-version {
    justify-content: flex-start;
    padding-left: 13px;
  }
}

@media (max-width: 680px) {
  .hss-sv-hero > .hss-sv-shell {
    width: min(100% - 28px, 1320px);
  }

  .hss-sv-hero {
    padding: 118px 0 68px;
  }

  .hss-sv-hero h1 {
    font-size: clamp(46px, 14vw, 67px);
  }

  .hss-sv-mac-stage {
    padding: 10px;
    border-radius: 23px;
  }

  .hss-sv-mac-app {
    border-radius: 17px;
  }

  .hss-sv-mac-titlebar {
    min-height: 120px;
    grid-template-columns: 1fr;
    padding: 21px 14px 8px;
  }

  .hss-sv-mac-dots {
    position: absolute;
    top: 17px;
    left: 16px;
    gap: 6px;
  }

  .hss-sv-mac-dots span {
    width: 12px;
    height: 12px;
  }

  .hss-sv-mac-branding {
    align-self: center;
    padding-top: 21px;
  }

  .hss-sv-mac-logo {
    font-size: clamp(34px, 12vw, 52px);
  }

  .hss-sv-mac-logo sup {
    margin-left: 4px;
    font-size: 7px;
    transform: translateY(-17px);
  }

  .hss-sv-mac-tagline {
    margin-top: 11px;
    font-size: 7px;
    letter-spacing: 0.22em;
  }

  .hss-sv-mac-creator {
    display: none;
  }

  .hss-sv-mac-mantra {
    margin-bottom: 14px;
    font-size: 7px;
    letter-spacing: 0.22em;
  }

  .hss-sv-mac-mantra::before {
    top: -12px;
    width: 48px;
    height: 3px;
  }

  .hss-sv-mac-routing {
    gap: 15px;
    padding: 0 12px 14px;
  }

  .hss-sv-route-card {
    padding: 16px;
    border-radius: 13px;
  }

  .hss-sv-route-heading {
    gap: 11px;
    margin-bottom: 13px;
  }

  .hss-sv-route-heading > span {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    font-size: 17px;
  }

  .hss-sv-route-heading h3 {
    font-size: 17px;
  }

  .hss-sv-route-heading p {
    font-size: 10px;
  }

  .hss-sv-route-selector {
    min-height: 54px;
    grid-template-columns: 52px minmax(0, 1fr) 13px;
  }

  .hss-sv-speaker-icon,
  .hss-sv-mpc-icon {
    width: 51px;
    height: 51px;
    border-radius: 10px;
  }

  .hss-sv-route-selector > strong {
    font-size: 13px;
  }

  .hss-sv-route-ready {
    min-height: 38px;
    margin-top: 9px;
    font-size: 8px;
  }

  .hss-sv-route-ready span {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 13px;
  }

  .hss-sv-route-core {
    min-height: 132px;
  }

  .hss-sv-wave-mark {
    gap: 5px;
    margin-bottom: 4px;
  }

  .hss-sv-wave-mark i {
    width: 7px;
  }

  .hss-sv-route-core > strong {
    font-size: 23px;
  }

  .hss-sv-route-core > span {
    font-size: 6px;
  }

  .hss-sv-mac-levels {
    gap: 34px;
    padding: 10px 20px 24px;
  }

  .hss-sv-level-block h3 {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hss-sv-segment-meter {
    gap: 3px;
  }

  .hss-sv-segment-meter i {
    height: 24px;
    border-radius: 3px;
  }

  .hss-sv-level-scale {
    padding-left: 31px;
    font-size: 7px;
  }

  .hss-sv-mac-knob {
    width: 178px;
    height: 178px;
  }

  .hss-sv-mac-knob-mark {
    height: 31px;
    transform-origin: 50% 69px;
  }

  .hss-sv-gain-scale {
    right: 0;
    left: 0;
  }

  .hss-sv-mac-footer {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 9px 18px 18px;
  }

  .hss-sv-mac-benefit,
  .hss-sv-mac-benefit:first-child {
    min-height: 57px;
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid #d8dadd;
  }

  .hss-sv-mac-benefit b {
    width: 43px;
    font-size: 34px;
    text-align: center;
  }

  .hss-sv-mac-version {
    justify-content: flex-start;
    padding: 18px 0 0;
  }
}
