.sdzproducts-body {
  --sdzp-accent: #5668f4;
  --sdzp-accent-rgb: 86, 104, 244;
  --sdzp-accent-deep: #3d4bd2;
  --sdzp-ink: #09152a;
  --sdzp-muted: #5f6f88;
  --sdzp-line: #dfe7f1;
  --sdzp-soft: #f4f7fb;
  margin: 0;
  overflow-x: hidden;
  background: var(--syd-site-bg, #f4f7fb);
  color: var(--sdzp-ink);
}

.sdzproducts-operations {
  --sdzp-accent: #08a88a;
  --sdzp-accent-rgb: 8, 168, 138;
  --sdzp-accent-deep: #087765;
}

.sdzproducts-dashboard {
  --sdzp-accent: #ee9410;
  --sdzp-accent-rgb: 238, 148, 16;
  --sdzp-accent-deep: #bd6c00;
}

.sdzproducts-gateway {
  --sdzp-accent: #1674e8;
  --sdzp-accent-rgb: 22, 116, 232;
  --sdzp-accent-deep: #0d55b3;
}

.sdzp-page,
.sdzp-page *,
.sdzp-page *::before,
.sdzp-page *::after {
  box-sizing: border-box;
}

.sdzp-page {
  flex: 1 0 auto;
  min-height: 0;
  overflow: hidden;
  background: var(--syd-site-bg, #f4f7fb);
  color: var(--sdzp-ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

.sdzp-page h1,
.sdzp-page h2,
.sdzp-page h3,
.sdzp-page p,
.sdzp-page ul,
.sdzp-page ol {
  margin-top: 0;
}

.sdzp-page a {
  color: inherit;
}

.sdzp-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.sdzp-product-switcher {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--sdzp-line);
  background: rgba(255, 255, 255, 0.96);
}

.sdzp-product-switcher .sdzp-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  min-height: 52px;
}

.sdzp-product-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #52627b;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.18s ease;
}

.sdzp-product-switcher a:hover {
  border-color: rgba(var(--sdzp-accent-rgb), 0.24);
  color: var(--sdzp-accent-deep);
  background: rgba(var(--sdzp-accent-rgb), 0.06);
}

.sdzp-product-switcher a[aria-current="page"] {
  border-color: rgba(var(--sdzp-accent-rgb), 0.34);
  background: var(--sdzp-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(var(--sdzp-accent-rgb), 0.2);
}

.sdzp-hero {
  position: relative;
  padding: 76px 0 82px;
  border-bottom: 1px solid var(--sdzp-line);
  background:
    radial-gradient(circle at 83% 18%, rgba(var(--sdzp-accent-rgb), 0.18), transparent 27%),
    linear-gradient(145deg, #f8fbff 0%, #fff 58%, rgba(var(--sdzp-accent-rgb), 0.06) 100%);
}

.sdzp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(var(--sdzp-accent-rgb), 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--sdzp-accent-rgb), 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 28%);
}

.sdzp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.sdzp-hero h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--sdzp-ink);
  font-size: clamp(34px, 3.2vw, 42px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.sdzp-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: #4f607a;
  font-size: 17px;
  font-weight: 520;
  line-height: 1.75;
}

.sdzp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sdzp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sdzp-button:hover {
  transform: translateY(-1px);
}

.sdzp-button.is-primary {
  background: var(--sdzp-accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(var(--sdzp-accent-rgb), 0.24);
}

.sdzp-button.is-primary:hover {
  background: var(--sdzp-accent-deep);
}

.sdzp-button.is-secondary {
  border-color: #cfd9e7;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sdzp-ink);
}

.sdzp-button.is-secondary:hover {
  border-color: rgba(var(--sdzp-accent-rgb), 0.5);
  color: var(--sdzp-accent-deep);
}

.sdzp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sdzp-pills li {
  padding: 7px 10px;
  border: 1px solid rgba(var(--sdzp-accent-rgb), 0.18);
  border-radius: 8px;
  background: rgba(var(--sdzp-accent-rgb), 0.06);
  color: #40516b;
  font-size: 12px;
  font-weight: 800;
}

.sdzp-visual {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  grid-template-rows: 42px minmax(0, 1fr);
  align-self: center;
  justify-self: stretch;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--sdzp-accent-rgb), 0.26);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 28px 70px rgba(16, 35, 66, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.sdzp-visual-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--sdzp-line);
  background: #f8fafd;
}

.sdzp-visual-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ced7e3;
}

.sdzp-visual-bar > span:first-child {
  background: var(--sdzp-accent);
}

.sdzp-visual-bar strong {
  margin-left: auto;
  color: #56667e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sdzp-studio-grid {
  display: grid;
  grid-template-columns: 145px 1fr;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.sdzp-visual-side {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px 16px;
  border-right: 1px solid var(--sdzp-line);
  background: #f6f8fc;
}

.sdzp-visual-side b,
.sdzp-visual-side span {
  padding: 9px 10px;
  border-radius: 7px;
  color: #66758a;
  font-size: 11px;
}

.sdzp-visual-side b {
  background: rgba(var(--sdzp-accent-rgb), 0.12);
  color: var(--sdzp-accent-deep);
}

.sdzp-visual-work {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 28px 28px;
}

.sdzp-code-lines {
  display: grid;
  gap: 17px;
}

.sdzp-code-lines i {
  display: block;
  width: 88%;
  height: 11px;
  border-radius: 999px;
  background: #dce4ef;
}

.sdzp-code-lines i:nth-child(2),
.sdzp-code-lines i:nth-child(5) {
  width: 61%;
  background: rgba(var(--sdzp-accent-rgb), 0.24);
}

.sdzp-code-lines i:nth-child(3) {
  width: 73%;
}

.sdzp-code-lines i:nth-child(4) {
  width: 46%;
}

.sdzp-work-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sdzp-work-cards span {
  display: grid;
  place-items: center;
  min-height: 62px;
  border: 1px solid var(--sdzp-line);
  border-radius: 10px;
  background: #f8fafd;
  color: #42536b;
  font-size: 11px;
  font-weight: 900;
}

.sdzp-operations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(180deg, #fff, rgba(var(--sdzp-accent-rgb), 0.045));
}

.sdzp-metric {
  position: relative;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--sdzp-line);
  border-radius: 12px;
  background: #fff;
}

.sdzp-metric small {
  display: block;
  margin-bottom: 8px;
  color: #6f7e92;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.sdzp-metric b {
  color: var(--sdzp-ink);
  font-size: 25px;
}

.sdzp-metric i,
.sdzp-event-list i,
.sdzp-status-row i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sdzp-metric i {
  position: absolute;
  right: 17px;
  bottom: 18px;
}

.sdzp-page .is-good {
  background: #12aa72;
  box-shadow: 0 0 0 4px rgba(18, 170, 114, 0.11);
}

.sdzp-page .is-warn {
  background: #eda119;
  box-shadow: 0 0 0 4px rgba(237, 161, 25, 0.12);
}

.sdzp-mini-trend {
  grid-column: 1 / -1;
  display: grid;
  align-items: center;
  min-height: 126px;
  padding: 12px;
  border: 1px solid var(--sdzp-line);
  border-radius: 12px;
  background:
    linear-gradient(#edf2f7 1px, transparent 1px),
    linear-gradient(90deg, #edf2f7 1px, transparent 1px),
    #fff;
  background-size: 30px 30px;
}

.sdzp-mini-trend svg {
  width: 100%;
  height: 92px;
}

.sdzp-mini-trend path {
  fill: none;
  stroke: var(--sdzp-accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sdzp-event-list {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
}

.sdzp-event-list span,
.sdzp-status-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--sdzp-line);
  border-radius: 8px;
  background: #fff;
  color: #52627a;
  font-size: 11px;
  font-weight: 800;
}

.sdzp-dashboard-grid {
  display: grid;
  grid-template-columns: 135px 1fr;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.sdzp-dashboard-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 23px 15px;
  border-right: 1px solid var(--sdzp-line);
  background: #f5f8fc;
}

.sdzp-dashboard-nav b,
.sdzp-dashboard-nav span {
  padding: 9px;
  border-radius: 7px;
  color: #68788d;
  font-size: 10px;
}

.sdzp-dashboard-nav b {
  background: rgba(var(--sdzp-accent-rgb), 0.12);
  color: var(--sdzp-accent-deep);
}

.sdzp-dashboard-main {
  min-width: 0;
  padding: 24px 22px;
}

.sdzp-status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.sdzp-tag-table {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  overflow: hidden;
  border: 1px solid var(--sdzp-line);
  border-radius: 10px;
}

.sdzp-tag-table > * {
  min-width: 0;
  padding: 13px 12px;
  border-bottom: 1px solid var(--sdzp-line);
  color: #4d5d74;
  font-size: 11px;
}

.sdzp-tag-table > span {
  background: #f3f6fa;
  color: #6b7a8e;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.sdzp-tag-table > b:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.sdzp-page .is-good-text {
  color: #078759;
}

.sdzp-gateway-grid {
  display: grid;
  grid-template-columns: 1fr 118px;
  align-items: center;
  gap: 24px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 30px;
  background: linear-gradient(135deg, #fff, rgba(var(--sdzp-accent-rgb), 0.06));
}

.sdzp-topology {
  display: grid;
  justify-items: center;
  gap: 22px;
  min-width: 0;
}

.sdzp-topology::before {
  content: "";
  position: absolute;
}

.sdzp-topology > span,
.sdzp-topology-row span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(var(--sdzp-accent-rgb), 0.3);
  border-radius: 9px;
  background: #fff;
  color: #43546c;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(22, 45, 78, 0.07);
}

.sdzp-topology > span {
  width: 116px;
  background: var(--sdzp-accent);
  color: #fff;
}

.sdzp-topology-row {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(70px, 1fr));
  gap: 16px;
}

.sdzp-topology-row::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  width: 1px;
  height: 22px;
  background: rgba(var(--sdzp-accent-rgb), 0.35);
}

.sdzp-topology-row.is-small {
  grid-template-columns: repeat(3, minmax(58px, 1fr));
}

.sdzp-topology-row.is-tags {
  grid-template-columns: repeat(4, minmax(46px, 1fr));
}

.sdzp-topology-row.is-small span,
.sdzp-topology-row.is-tags span {
  min-height: 38px;
}

.sdzp-pipeline {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.sdzp-pipeline span,
.sdzp-pipeline strong {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--sdzp-line);
  border-radius: 9px;
  background: #fff;
  color: #4b5c74;
  font-size: 10px;
  text-align: center;
}

.sdzp-pipeline strong {
  border-color: var(--sdzp-accent);
  background: var(--sdzp-accent);
  color: #fff;
}

.sdzp-pipeline i {
  display: block;
  width: 1px;
  height: 13px;
  background: rgba(var(--sdzp-accent-rgb), 0.5);
}

.sdzp-section {
  padding: 82px 0;
}

.sdzp-section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.sdzp-section-heading h2 {
  margin-bottom: 0;
  color: var(--sdzp-ink);
  font-size: clamp(29px, 3.2vw, 42px);
  font-weight: 930;
  letter-spacing: -0.038em;
  line-height: 1.12;
}

.sdzp-section-heading.is-split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.sdzp-section-heading.is-split > div {
  max-width: 780px;
}

.sdzp-section-heading.is-split > span {
  flex: 0 0 auto;
  margin-bottom: 5px;
  color: #77869a;
  font-size: 12px;
  font-weight: 800;
}

.sdzp-values-section {
  padding-bottom: 44px;
}

.sdzp-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--sdzp-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(18, 39, 70, 0.07);
}

.sdzp-values article {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--sdzp-line);
}

.sdzp-values article:last-child {
  border-right: 0;
}

.sdzp-values article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--sdzp-accent);
  font-size: 12px;
  font-weight: 950;
}

.sdzp-values h3,
.sdzp-feature h3,
.sdzp-workflow h3 {
  margin-bottom: 9px;
  color: var(--sdzp-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.sdzp-values p,
.sdzp-feature p,
.sdzp-workflow p {
  margin-bottom: 0;
  color: var(--sdzp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sdzp-capabilities {
  padding-top: 44px;
  background: linear-gradient(180deg, #fff, #f6f9fd 52%, #fff);
}

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

.sdzp-feature {
  min-width: 0;
  min-height: 244px;
  padding: 22px;
  border: 1px solid var(--sdzp-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 43, 76, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sdzp-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--sdzp-accent-rgb), 0.32);
  box-shadow: 0 20px 38px rgba(21, 43, 76, 0.085);
}

.sdzp-feature-top {
  display: flex;
  min-height: 49px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.sdzp-feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: rgba(var(--sdzp-accent-rgb), 0.1);
  color: var(--sdzp-accent-deep);
}

.sdzp-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sdzp-feature-top small {
  padding: 5px 7px;
  border-radius: 6px;
  background: #f0f3f8;
  color: #69788d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sdzp-workflow-section {
  border-top: 1px solid var(--sdzp-line);
  border-bottom: 1px solid var(--sdzp-line);
  background: var(--sdzp-soft);
}

.sdzp-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sdzp-workflow::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--sdzp-accent-rgb), 0.42), transparent);
}

.sdzp-workflow li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 14px;
  min-width: 0;
}

.sdzp-workflow li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 5px solid var(--sdzp-soft);
  border-radius: 50%;
  background: var(--sdzp-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 0 1px rgba(var(--sdzp-accent-rgb), 0.24);
}

.sdzp-workflow li > div {
  padding-top: 3px;
}

.sdzp-workflow h3 {
  font-size: 15px;
}

.sdzp-workflow p {
  font-size: 13px;
}

.sdzp-context-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 26px;
}

.sdzp-scenarios {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--sdzp-line);
  border-radius: 18px;
}

.sdzp-scenarios {
  background: #fff;
}

.sdzp-scenarios .sdzp-section-heading {
  margin-bottom: 24px;
}

.sdzp-scenarios .sdzp-section-heading h2 {
  font-size: 27px;
}

.sdzp-scenarios ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sdzp-scenarios li {
  position: relative;
  padding: 13px 14px 13px 39px;
  border: 1px solid #e5eaf2;
  border-radius: 10px;
  background: #f8fafd;
  color: #40516a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.sdzp-scenarios li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--sdzp-accent);
  border-radius: 2px;
}

.sdzp-deployment-section {
  border-top: 1px solid var(--sdzp-line);
  background: #f7fafe;
}

.sdzp-deployment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
}

.sdzp-license-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sdzp-license-grid article,
.sdzp-requirements {
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--sdzp-line);
  border-radius: 13px;
  background: #fff;
}

.sdzp-license-grid h3,
.sdzp-requirements h3 {
  margin-bottom: 10px;
  color: var(--sdzp-ink);
  font-size: 16px;
  font-weight: 900;
}

.sdzp-license-grid p,
.sdzp-requirements li {
  margin-bottom: 0;
  color: var(--sdzp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.sdzp-requirements ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.sdzp-faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: 76px;
}

.sdzp-faq-list {
  border-top: 1px solid var(--sdzp-line);
}

.sdzp-faq-list details {
  border-bottom: 1px solid var(--sdzp-line);
}

.sdzp-faq-list summary {
  position: relative;
  padding: 21px 42px 21px 0;
  color: var(--sdzp-ink);
  font-size: 15px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.sdzp-faq-list summary::-webkit-details-marker {
  display: none;
}

.sdzp-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--sdzp-line);
  border-radius: 50%;
  color: var(--sdzp-accent-deep);
  font-size: 17px;
}

.sdzp-faq-list details[open] summary::after {
  content: "−";
  border-color: rgba(var(--sdzp-accent-rgb), 0.34);
  background: rgba(var(--sdzp-accent-rgb), 0.08);
}

.sdzp-faq-list details p {
  max-width: 780px;
  margin-bottom: 21px;
  padding-right: 45px;
  color: var(--sdzp-muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1050px) {
  .sdzp-hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1.14fr);
    gap: 38px;
  }

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

  .sdzp-context-grid {
    grid-template-columns: 1fr;
  }

  .sdzp-deployment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .sdzp-shell {
    width: min(100% - 36px, 720px);
  }

  .sdzp-product-switcher {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sdzp-product-switcher::-webkit-scrollbar {
    display: none;
  }

  .sdzp-product-switcher .sdzp-shell {
    width: max-content;
    min-width: calc(100% - 36px);
    justify-content: flex-start;
  }

  .sdzp-hero {
    padding: 54px 0 62px;
  }

  .sdzp-hero::before {
    width: 100%;
  }

  .sdzp-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sdzp-hero h1 {
    max-width: 650px;
    font-size: clamp(40px, 9vw, 58px);
  }

  .sdzp-visual {
    width: min(100%, 650px);
  }

  .sdzp-values {
    grid-template-columns: 1fr;
  }

  .sdzp-values article {
    border-right: 0;
    border-bottom: 1px solid var(--sdzp-line);
  }

  .sdzp-values article:last-child {
    border-bottom: 0;
  }

  .sdzp-values article > span {
    margin-bottom: 18px;
  }

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

  .sdzp-workflow::before {
    display: none;
  }

  .sdzp-license-grid {
    grid-template-columns: 1fr;
  }

  .sdzp-faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .sdzp-shell {
    width: calc(100% - 28px);
  }

  .sdzp-product-switcher .sdzp-shell {
    min-width: calc(100% - 28px);
  }

  .sdzp-product-switcher a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  .sdzp-hero {
    padding: 42px 0 50px;
  }

  .sdzp-hero h1 {
    margin-bottom: 18px;
    font-size: 39px;
    line-height: 1.04;
  }

  .sdzp-lead {
    margin-bottom: 23px;
    font-size: 15px;
    line-height: 1.7;
  }

  .sdzp-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sdzp-button {
    width: 100%;
  }

  .sdzp-pills {
    gap: 6px;
    margin-top: 20px;
  }

  .sdzp-pills li {
    font-size: 11px;
  }

  .sdzp-studio-grid,
  .sdzp-dashboard-grid {
    grid-template-columns: 100px 1fr;
    min-height: 294px;
  }

  .sdzp-visual-side,
  .sdzp-dashboard-nav {
    padding: 16px 10px;
  }

  .sdzp-visual-work {
    padding: 28px 17px 18px;
  }

  .sdzp-work-cards {
    grid-template-columns: 1fr;
  }

  .sdzp-work-cards span {
    min-height: 35px;
  }

  .sdzp-operations-grid {
    gap: 8px;
    min-height: 300px;
    padding: 15px;
  }

  .sdzp-metric {
    padding: 13px 10px;
  }

  .sdzp-metric b {
    font-size: 20px;
  }

  .sdzp-metric i {
    right: 11px;
    bottom: 13px;
  }

  .sdzp-mini-trend {
    min-height: 104px;
  }

  .sdzp-event-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sdzp-event-list span {
    padding: 8px;
    font-size: 9px;
  }

  .sdzp-dashboard-main {
    padding: 16px 12px;
  }

  .sdzp-status-row {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .sdzp-status-row span {
    padding: 7px 9px;
  }

  .sdzp-tag-table > * {
    padding: 10px 7px;
    font-size: 9px;
  }

  .sdzp-gateway-grid {
    grid-template-columns: 1fr;
    min-height: 320px;
    padding: 20px 14px;
  }

  .sdzp-pipeline {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }

  .sdzp-pipeline i {
    width: 12px;
    height: 1px;
  }

  .sdzp-section {
    padding: 58px 0;
  }

  .sdzp-values-section {
    padding-bottom: 30px;
  }

  .sdzp-capabilities {
    padding-top: 30px;
  }

  .sdzp-section-heading {
    margin-bottom: 24px;
  }

  .sdzp-section-heading h2 {
    font-size: 30px;
  }

  .sdzp-section-heading.is-split {
    display: block;
  }

  .sdzp-section-heading.is-split > span {
    display: block;
    margin-top: 10px;
  }

  .sdzp-values article {
    padding: 23px;
  }

  .sdzp-feature-grid {
    grid-template-columns: 1fr;
  }

  .sdzp-feature {
    min-height: 0;
  }

  .sdzp-workflow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sdzp-scenarios {
    padding: 24px 20px;
  }

  .sdzp-faq-list summary {
    padding-right: 38px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .sdzp-page *,
  .sdzp-page *::before,
  .sdzp-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* v124: evidence-first, high-density product pages */
.sdzp-hero {
  padding: 24px 0;
}

.sdzp-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
}

.sdzp-hero h1 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3.2vw, 42px);
  line-height: 1.08;
}

.sdzp-lead {
  margin-bottom: 20px;
  font-size: 15.5px;
  line-height: 1.62;
}

.sdzp-pills {
  margin-top: 16px;
}

.sdzp-studio-grid,
.sdzp-operations-grid,
.sdzp-dashboard-grid,
.sdzp-gateway-grid {
  min-height: 0;
}

.sdzp-operations-grid {
  padding: 20px;
}

.sdzp-mini-trend {
  min-height: 100px;
}

.sdzp-fact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--sdzp-accent-rgb), 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(16, 35, 66, 0.07);
}

.sdzp-fact-grid article {
  min-width: 0;
  padding: 15px 17px;
  border-right: 1px solid var(--sdzp-line);
}

.sdzp-fact-grid article:last-child {
  border-right: 0;
}

.sdzp-fact-grid span,
.sdzp-fact-grid strong,
.sdzp-fact-grid small {
  display: block;
}

.sdzp-fact-grid span {
  margin-bottom: 5px;
  color: #758399;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sdzp-fact-grid strong {
  overflow-wrap: anywhere;
  color: var(--sdzp-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.sdzp-fact-grid small {
  margin-top: 4px;
  color: var(--sdzp-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.sdzp-section {
  padding: 24px 0;
}

.sdzp-section-heading {
  margin-bottom: 16px;
}

.sdzp-section-heading h2,
.sdzp-compact-heading h2 {
  margin-bottom: 0;
  color: var(--sdzp-ink);
  font-size: clamp(25px, 2.4vw, 32px);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.sdzp-capabilities {
  padding-top: 24px;
  background: #f7f9fc;
}

.sdzp-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sdzp-feature {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  min-height: 0;
  padding: 16px;
  border-radius: 11px;
  box-shadow: none;
}

.sdzp-feature:hover {
  transform: none;
  box-shadow: 0 10px 24px rgba(21, 43, 76, 0.06);
}

.sdzp-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.sdzp-feature-icon svg {
  width: 19px;
  height: 19px;
}

.sdzp-feature-title {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.sdzp-feature-title h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

.sdzp-feature-title small {
  flex: 0 0 auto;
  padding: 4px 6px;
  border-radius: 5px;
  background: rgba(var(--sdzp-accent-rgb), 0.08);
  color: var(--sdzp-accent-deep);
  font-size: 9px;
  font-weight: 850;
}

.sdzp-feature p {
  font-size: 12.5px;
  line-height: 1.55;
}

.sdzp-practical-section {
  border-top: 1px solid var(--sdzp-line);
  background: #fff;
}

.sdzp-practical-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 14px;
}

.sdzp-practical-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--sdzp-line);
  border-radius: 14px;
  background: #fff;
}

.sdzp-compact-heading {
  margin-bottom: 17px;
}

.sdzp-compact-heading h2 {
  font-size: 21px;
}

.sdzp-workflow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sdzp-workflow::before {
  display: none;
}

.sdzp-workflow li {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid #e6ebf2;
  border-radius: 9px;
  background: #f8fafd;
}

.sdzp-workflow li > span {
  width: 30px;
  height: 30px;
  border: 0;
  font-size: 10px;
}

.sdzp-workflow li > div {
  padding-top: 0;
}

.sdzp-workflow h3 {
  margin-bottom: 3px;
  font-size: 13px;
}

.sdzp-workflow p {
  font-size: 11.5px;
  line-height: 1.45;
}

.sdzp-scenarios {
  padding: 22px;
  border-radius: 14px;
}

.sdzp-scenarios ul {
  gap: 7px;
}

.sdzp-scenarios li {
  padding: 9px 10px 9px 31px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
}

.sdzp-scenarios li::before {
  top: 13px;
  left: 12px;
  width: 6px;
  height: 6px;
}

.sdzp-evaluation-section {
  border-top: 1px solid var(--sdzp-line);
  background: #f7fafe;
}

.sdzp-evaluation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 14px;
}

.sdzp-evaluation-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--sdzp-line);
  border-radius: 12px;
  background: #fff;
}

.sdzp-evaluation-card > h3 {
  margin-bottom: 12px;
  color: var(--sdzp-ink);
  font-size: 15px;
  font-weight: 850;
}

.sdzp-license-grid {
  grid-template-columns: 1fr;
  gap: 7px;
}

.sdzp-license-grid article {
  padding: 11px 12px;
  border-radius: 8px;
  background: #f8fafd;
}

.sdzp-license-grid h3 {
  margin-bottom: 3px;
  font-size: 12.5px;
}

.sdzp-license-grid p,
.sdzp-requirements li {
  font-size: 11.5px;
  line-height: 1.5;
}

.sdzp-requirements {
  padding: 18px;
}

.sdzp-requirements ul {
  gap: 6px;
}

@media (max-width: 1050px) {
  .sdzp-hero-grid,
  .sdzp-practical-grid,
  .sdzp-evaluation-grid {
    grid-template-columns: 1fr;
  }

  .sdzp-hero-grid {
    gap: 24px;
  }

  .sdzp-visual {
    width: min(100%, 720px);
  }

  .sdzp-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sdzp-fact-grid article:nth-child(2) {
    border-right: 0;
  }

  .sdzp-fact-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--sdzp-line);
  }
}

@media (max-width: 760px) {
  .sdzp-hero {
    padding: 18px 0;
  }

  .sdzp-hero-grid {
    gap: 18px;
  }

  .sdzp-visual {
    height: 362px;
    aspect-ratio: auto;
  }

  .sdzp-hero h1 {
    font-size: clamp(30px, 9vw, 34px);
  }

  .sdzp-section {
    padding: 18px 0;
  }

  .sdzp-feature-grid,
  .sdzp-workflow {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {
  .sdzp-product-switcher {
    overflow: visible;
  }

  .sdzp-product-switcher .sdzp-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: calc(100% - 28px);
    min-width: 0;
    padding: 8px 0;
  }

  .sdzp-product-switcher a {
    justify-content: center;
    min-height: 42px;
    padding: 6px 8px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .sdzp-hero h1 {
    overflow-wrap: anywhere;
    font-size: clamp(28px, 8.4vw, 32px);
    line-height: 1.08;
  }

  .sdzp-visual {
    height: auto;
    aspect-ratio: 1;
  }

  .sdzp-fact-grid {
    grid-template-columns: 1fr;
  }

  .sdzp-fact-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--sdzp-line);
  }

  .sdzp-fact-grid article:last-child {
    border-bottom: 0;
  }

  .sdzp-section-heading.is-split {
    display: block;
  }

  .sdzp-section-heading.is-split > span {
    margin-top: 8px;
  }

  .sdzp-feature {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 13px;
  }

  .sdzp-feature-icon {
    width: 34px;
    height: 34px;
  }

  .sdzp-practical-card,
  .sdzp-scenarios,
  .sdzp-evaluation-card {
    padding: 16px;
  }

}
