
  .hzps-product {
    --hz-orange: #f47a20;
    --hz-orange-dark: #c95208;
    --hz-ink: #10161d;
    --hz-ink-soft: #1b2530;
    --hz-text: #26313c;
    --hz-muted: #66727e;
    --hz-line: #dfe5ea;
    --hz-soft: #f4f6f8;
    --hz-white: #ffffff;
    overflow: hidden;
    color: var(--hz-text);
    background: var(--hz-white);
    font-family: Arial, Helvetica, sans-serif;
  }

  .hzps-product * {
    box-sizing: border-box;
  }

  .hzps-product img {
    display: block;
    width: 100%;
    height: auto;
  }

  .hzps-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }

  .hzps-section {
    padding: 88px 0;
  }

  .hzps-section--soft {
    background: var(--hz-soft);
  }

  .hzps-section--dark {
    color: var(--hz-white);
    background:
      radial-gradient(circle at 80% 20%, rgba(244, 122, 32, 0.16), transparent 34%),
      linear-gradient(135deg, #0d1319 0%, #17212b 100%);
  }

  .hzps-eyebrow {
    margin-bottom: 14px;
    color: var(--hz-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .hzps-heading {
    max-width: 820px;
    margin: 0;
    color: inherit;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .hzps-heading--small {
    font-size: clamp(30px, 3.5vw, 46px);
  }

  .hzps-lead {
    max-width: 790px;
    margin: 22px 0 0;
    color: var(--hz-muted);
    font-size: 18px;
    line-height: 1.72;
  }

  .hzps-section--dark .hzps-lead {
    color: #c3ccd4;
  }

  .hzps-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    color: var(--hz-white);
    background: #0e151c;
  }

  .hzps-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 12, 17, 0.96) 0%, rgba(7, 12, 17, 0.82) 44%, rgba(7, 12, 17, 0.12) 78%);
    pointer-events: none;
  }

  .hzps-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hzps-hero-inner {
    position: relative;
    z-index: 1;
    padding: 100px 0;
  }

  .hzps-hero-copy {
    max-width: 680px;
  }

  .hzps-hero h1 {
    margin: 0;
    color: var(--hz-white);
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .hzps-hero h1 span {
    display: block;
    margin-top: 16px;
    color: var(--hz-orange);
    font-size: 0.45em;
    line-height: 1.18;
    letter-spacing: -0.015em;
  }

  .hzps-hero p {
    max-width: 640px;
    margin: 26px 0 0;
    color: #d6dde3;
    font-size: 19px;
    line-height: 1.7;
  }

  .hzps-tags,
  .hzps-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hzps-tags {
    margin-top: 30px;
  }

  .hzps-tag {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #eef2f5;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 700;
  }

  .hzps-actions {
    margin-top: 36px;
  }

  .hzps-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
  }

  .hzps-btn--primary {
    color: var(--hz-white);
    background: var(--hz-orange);
  }

  .hzps-btn--primary:hover {
    background: var(--hz-orange-dark);
    transform: translateY(-1px);
  }

  .hzps-btn--ghost {
    color: var(--hz-white);
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.04);
  }

  .hzps-metrics {
    color: var(--hz-white);
    background: var(--hz-orange);
  }

  .hzps-metric-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hzps-metric {
    min-height: 126px;
    padding: 26px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.26);
  }

  .hzps-metric:last-child {
    border-right: 0;
  }

  .hzps-metric strong {
    display: block;
    font-size: 25px;
    line-height: 1.15;
  }

  .hzps-metric span {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.5;
  }

  .hzps-principle-grid,
  .hzps-platform-grid,
  .hzps-spec-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
  }

  .hzps-media {
    overflow: hidden;
    border-radius: 18px;
    background: #e7ebee;
    box-shadow: 0 24px 55px rgba(11, 24, 36, 0.12);
  }

  .hzps-media img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .hzps-note {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 4px solid var(--hz-orange);
    border-radius: 0 8px 8px 0;
    color: #35414c;
    background: #fff5ed;
    font-size: 15px;
    line-height: 1.65;
  }

  .hzps-note strong {
    color: var(--hz-ink);
  }

  .hzps-checks {
    display: grid;
    gap: 15px;
    margin-top: 30px;
  }

  .hzps-check {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
  }

  .hzps-check b {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--hz-white);
    background: var(--hz-orange);
    font-size: 13px;
  }

  .hzps-check strong {
    display: block;
    color: var(--hz-ink);
    font-size: 17px;
  }

  .hzps-check span {
    display: block;
    margin-top: 5px;
    color: var(--hz-muted);
    font-size: 14px;
    line-height: 1.6;
  }

  .hzps-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 46px;
  }

  .hzps-feature-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
  }

  .hzps-feature-card small {
    color: var(--hz-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  .hzps-feature-card h3 {
    margin: 22px 0 10px;
    color: var(--hz-white);
    font-size: 21px;
  }

  .hzps-feature-card p {
    margin: 0;
    color: #bdc7cf;
    font-size: 14px;
    line-height: 1.7;
  }

  .hzps-app-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 46px;
  }

  .hzps-app-card {
    overflow: hidden;
    border: 1px solid var(--hz-line);
    border-radius: 16px;
    background: var(--hz-white);
    box-shadow: 0 16px 35px rgba(16, 29, 42, 0.07);
  }

  .hzps-app-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .hzps-app-body {
    padding: 26px;
  }

  .hzps-app-body small {
    color: var(--hz-orange);
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .hzps-app-body h3 {
    margin: 12px 0 12px;
    color: var(--hz-ink);
    font-size: 22px;
    line-height: 1.25;
  }

  .hzps-app-body p {
    margin: 0;
    color: var(--hz-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  .hzps-boundary {
    margin-top: 26px;
    padding: 18px 22px;
    border: 1px solid #f3c7a8;
    border-radius: 10px;
    color: #6a3c1d;
    background: #fff7f1;
    font-size: 14px;
    line-height: 1.65;
  }

  .hzps-deploy-workflow {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 64px;
    align-items: start;
  }

  .hzps-spacing-list {
    display: grid;
    gap: 16px;
    margin-top: 32px;
  }

  .hzps-spacing-card {
    padding: 22px;
    border: 1px solid var(--hz-line);
    border-radius: 12px;
    background: var(--hz-white);
  }

  .hzps-spacing-card strong {
    color: var(--hz-ink);
    font-size: 17px;
  }

  .hzps-spacing-card p {
    margin: 8px 0 0;
    color: var(--hz-muted);
    font-size: 14px;
    line-height: 1.65;
  }

  .hzps-flow {
    display: grid;
    gap: 13px;
  }

  .hzps-flow-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 19px 20px;
    border-radius: 12px;
    color: var(--hz-white);
    background: var(--hz-ink-soft);
  }

  .hzps-flow-step b {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    color: var(--hz-white);
    background: var(--hz-orange);
  }

  .hzps-flow-step strong {
    display: block;
    font-size: 17px;
  }

  .hzps-flow-step span {
    display: block;
    margin-top: 6px;
    color: #bfc9d1;
    font-size: 13px;
    line-height: 1.55;
  }

  .hzps-platform-media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .hzps-output-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .hzps-output-item {
    padding: 18px;
    border: 1px solid var(--hz-line);
    border-radius: 10px;
  }

  .hzps-output-item strong {
    color: var(--hz-ink);
    font-size: 15px;
  }

  .hzps-output-item span {
    display: block;
    margin-top: 6px;
    color: var(--hz-muted);
    font-size: 13px;
    line-height: 1.5;
  }

  .hzps-table-wrap {
    overflow-x: auto;
    margin-top: 42px;
    border: 1px solid var(--hz-line);
    border-radius: 14px;
    background: var(--hz-white);
  }

  .hzps-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
  }

  .hzps-table th,
  .hzps-table td {
    padding: 17px 20px;
    border-bottom: 1px solid var(--hz-line);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.55;
  }

  .hzps-table th {
    width: 30%;
    color: var(--hz-ink);
    background: #eef2f5;
    font-weight: 800;
  }

  .hzps-table tr:last-child th,
  .hzps-table tr:last-child td {
    border-bottom: 0;
  }

  .hzps-spec-note {
    margin-top: 16px;
    color: var(--hz-muted);
    font-size: 13px;
    line-height: 1.6;
  }

  .hzps-faq {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin-top: 38px;
  }

  .hzps-faq details {
    padding: 0 22px;
    border: 1px solid var(--hz-line);
    border-radius: 10px;
    background: var(--hz-white);
  }

  .hzps-faq summary {
    padding: 20px 0;
    color: var(--hz-ink);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
  }

  .hzps-faq p {
    margin: 0;
    padding: 0 0 20px;
    color: var(--hz-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  .hzps-cta {
    text-align: center;
    color: var(--hz-white);
    background:
      linear-gradient(135deg, rgba(244, 122, 32, 0.96), rgba(201, 82, 8, 0.98)),
      #f47a20;
  }

  .hzps-cta .hzps-heading,
  .hzps-cta .hzps-lead {
    margin-right: auto;
    margin-left: auto;
    color: var(--hz-white);
  }

  .hzps-cta .hzps-actions {
    justify-content: center;
  }

  .hzps-cta .hzps-btn--primary {
    color: var(--hz-orange-dark);
    background: var(--hz-white);
  }

  .hzps-cta .hzps-btn--ghost {
    border-color: rgba(255, 255, 255, 0.68);
  }

  @media (max-width: 980px) {
    .hzps-section {
      padding: 72px 0;
    }

    .hzps-metric-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hzps-metric:nth-child(3) {
      border-right: 0;
    }

    .hzps-principle-grid,
    .hzps-platform-grid,
    .hzps-spec-grid,
    .hzps-deploy-workflow {
      grid-template-columns: 1fr;
      gap: 42px;
    }

    .hzps-feature-grid,
    .hzps-app-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 680px) {
    .hzps-container {
      width: min(100% - 28px, 1180px);
    }

    .hzps-section {
      padding: 56px 0;
    }

    .hzps-hero {
      min-height: 660px;
      align-items: flex-end;
    }

    .hzps-hero::after {
      background: linear-gradient(180deg, rgba(7, 12, 17, 0.2) 0%, rgba(7, 12, 17, 0.92) 56%, rgba(7, 12, 17, 0.98) 100%);
    }

    .hzps-hero-bg {
      object-position: 68% center;
    }

    .hzps-hero-inner {
      padding: 86px 0 58px;
    }

    .hzps-hero h1 {
      font-size: 44px;
    }

    .hzps-hero p,
    .hzps-lead {
      font-size: 16px;
    }

    .hzps-actions,
    .hzps-btn {
      width: 100%;
    }

    .hzps-metric-grid,
    .hzps-feature-grid,
    .hzps-app-grid,
    .hzps-output-grid {
      grid-template-columns: 1fr;
    }

    .hzps-metric {
      min-height: auto;
      border-right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    }

    .hzps-metric:last-child {
      border-bottom: 0;
    }

    .hzps-feature-card {
      min-height: auto;
    }

    .hzps-table-wrap {
      border: 0;
      border-radius: 0;
    }
  }
