:root {
  --hp-blue: #073b8e;
  --hp-blue-deep: #052a66;
  --hp-blue-bright: #0b57c4;
  --hp-orange: #ff5a00;
  --hp-ink: #1f2933;
  --hp-muted: #617089;
  --hp-soft: #f5f8fc;
  --hp-line: #d8e3f5;
  --hp-white: #fff;
  --hp-shadow: 0 18px 48px rgba(5, 42, 102, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hp-ink);
  background: var(--hp-white);
}

.homepage-v6,
.homepage-v6 *,
.homepage-managed-section,
.homepage-managed-section * {
  box-sizing: border-box;
}

.homepage-v6 {
  overflow: clip;
  font-family: "Noto Sans SC", "HarmonyOS Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

.homepage-v6 a {
  color: inherit;
  text-decoration: none;
}

.homepage-v6 button,
.homepage-v6 input,
.homepage-managed-section button {
  font: inherit;
}

.homepage-source-shell {
  display: none;
}

.hp-container {
  width: min(1312px, calc(100% - 64px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--hp-blue-bright);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hp-eyebrow::before {
  width: 26px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--hp-orange);
  content: "";
}

.hp-eyebrow.is-light {
  color: rgba(255, 255, 255, 0.76);
}

.hp-hero {
  position: relative;
  padding: 76px 0 72px;
  color: var(--hp-white);
  background: var(--hp-blue);
}

.hp-hero::after {
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(255, 255, 255, 0.025), 0 0 0 126px rgba(255, 255, 255, 0.018);
  content: "";
  pointer-events: none;
}

.hp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 64px;
  align-items: start;
}

.hp-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.1vw, 72px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.hp-hero-copy h1 span {
  position: relative;
  color: #fff;
}

.hp-hero-copy h1 span::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: var(--hp-orange);
  content: "";
}

.hp-hero-lead,
.hp-hero-detail {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.82;
}

.hp-hero-detail {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.hp-hero-detail strong {
  color: #fff;
}

.homepage-site-search {
  width: 100%;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  color: var(--hp-ink);
  background: #fff;
  box-shadow: 0 24px 58px rgba(2, 25, 64, 0.26);
}

.hp-search-heading {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 13px;
}

.hp-search-heading > div {
  flex: 1 1 auto;
}

.hp-search-heading span {
  display: block;
  margin-bottom: 3px;
  color: var(--hp-blue-bright);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hp-search-heading h2 {
  margin: 0;
  color: var(--hp-blue-deep);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.3;
}

.hp-search-heading > a {
  color: var(--hp-blue-bright);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.hp-search-heading > a:hover,
.hp-search-heading > a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.hp-search-form input {
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 1.5px solid #c9d8ef;
  border-radius: 10px;
  outline: none;
  color: var(--hp-ink);
  background: #fbfdff;
  font-size: 15px;
}

.hp-search-form input::placeholder {
  color: #8798ae;
}

.hp-search-form input:focus {
  border-color: var(--hp-blue-bright);
  box-shadow: 0 0 0 3px rgba(11, 87, 196, 0.12);
}

.hp-search-form button {
  min-width: 138px;
  height: 54px;
  border: 1px solid var(--hp-orange);
  border-radius: 10px;
  color: #fff;
  background: var(--hp-orange);
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.hp-search-form button:hover,
.hp-search-form button:focus-visible {
  background: #e94f00;
  transform: translateY(-1px);
  outline: 3px solid rgba(255, 90, 0, 0.2);
  outline-offset: 2px;
}

.hp-search-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.homepage-search-scopes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
}

.homepage-search-scopes > span {
  margin-right: 2px;
  color: #7c8da4;
  font-size: 12px;
}

.homepage-search-scopes button {
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid var(--hp-line);
  border-radius: 999px;
  color: #536a86;
  background: #f7f9fc;
  font-size: 11.5px;
  cursor: pointer;
}

.homepage-search-scopes button:hover,
.homepage-search-scopes button:focus-visible,
.homepage-search-scopes button.is-active {
  border-color: var(--hp-blue-bright);
  color: var(--hp-blue-bright);
  background: #eef4fd;
  outline: none;
}

.hp-search-status {
  margin-top: 10px;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.6;
}

.hp-search-status:empty {
  display: none;
}

.hp-search-note {
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px solid #e8eef7;
  color: var(--hp-muted);
  font-size: 11.5px;
  line-height: 1.65;
}

.hp-hero-promise {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.65;
}

.hp-route-card {
  position: sticky;
  top: 108px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  color: var(--hp-ink);
  background: #fff;
  box-shadow: var(--hp-shadow);
}

.hp-route-head > span {
  color: var(--hp-orange);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hp-route-head h2 {
  margin: 8px 0 0;
  color: var(--hp-blue-deep);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.25;
}

.hp-route-head p {
  margin: 9px 0 0;
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.hp-route-list {
  margin-top: 20px;
  border-top: 1px solid #e7eef8;
}

.hp-route-list > a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid #e7eef8;
}

.hp-route-list > a > span {
  color: #9eb4d4;
  font-size: 14px;
  font-weight: 800;
}

.hp-route-list strong,
.hp-route-list small,
.hp-route-list b {
  display: block;
}

.hp-route-list strong {
  color: var(--hp-blue-deep);
  font-size: 14px;
}

.hp-route-list small {
  margin-top: 4px;
  color: var(--hp-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.hp-route-list b {
  color: var(--hp-blue-bright);
  font-size: 11px;
  white-space: nowrap;
}

.hp-route-list > a:hover strong,
.hp-route-list > a:focus-visible strong,
.hp-route-list > a:hover b,
.hp-route-list > a:focus-visible b {
  color: var(--hp-orange);
}

.hp-route-list > a:focus-visible,
.hp-route-extensions a:focus-visible,
.hp-route-all:focus-visible {
  outline: 3px solid rgba(11, 87, 196, 0.2);
  outline-offset: 4px;
}

.hp-route-extensions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.hp-route-extensions a {
  padding: 14px;
  border: 1px solid var(--hp-line);
  border-radius: 10px;
  background: var(--hp-soft);
}

.hp-route-extensions strong,
.hp-route-extensions span {
  display: block;
}

.hp-route-extensions strong {
  color: var(--hp-blue-deep);
  font-size: 13px;
}

.hp-route-extensions span {
  margin-top: 5px;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hp-route-all {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--hp-blue-bright) !important;
  font-size: 12px;
  font-weight: 750;
}

.hp-data-status {
  border-bottom: 1px solid #e5ecf6;
  background: #fff;
}

.hp-data-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hp-data-status-grid > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  padding: 27px 22px;
  border-right: 1px solid #e5ecf6;
}

.hp-data-status-grid > div:first-child {
  border-left: 1px solid #e5ecf6;
}

.hp-data-status-grid strong {
  color: var(--hp-blue);
  font-size: 27px;
  line-height: 1;
}

.hp-data-status-grid span {
  color: #5b6e88;
  font-size: 12px;
  line-height: 1.45;
}

.hp-data-status-grid > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 16px 14px;
  color: #76879d;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.hp-quick,
.hp-capabilities,
.hp-cases,
.hp-final-cta {
  padding: 96px 0;
}

.hp-quick,
.hp-cases {
  background: #fff;
}

.hp-capabilities {
  background: var(--hp-soft);
}

.hp-section-heading {
  display: flex;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.hp-section-heading > div {
  flex: 1 1 auto;
}

.hp-section-heading h2 {
  margin: 0;
  color: var(--hp-blue-deep);
  font-size: clamp(31px, 3.1vw, 43px);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.hp-section-heading > p {
  max-width: 38em;
  margin: 0;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.hp-section-heading.compact h2 {
  font-size: clamp(28px, 2.7vw, 38px);
}

.hp-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hp-line);
  border-bottom: 1px solid var(--hp-line);
}

.hp-quick-grid a {
  min-width: 0;
  padding: 26px 22px;
  border-right: 1px solid var(--hp-line);
  transition: background 0.18s ease, transform 0.18s ease;
}

.hp-quick-grid a:first-child {
  border-left: 1px solid var(--hp-line);
}

.hp-quick-grid a:hover,
.hp-quick-grid a:focus-visible {
  background: #f7faff;
  transform: translateY(-3px);
  outline: 0;
}

.hp-quick-grid span,
.hp-quick-grid strong,
.hp-quick-grid small {
  display: block;
}

.hp-quick-grid span {
  color: var(--hp-orange);
  font-size: 12px;
  font-weight: 800;
}

.hp-quick-grid strong {
  margin-top: 16px;
  color: var(--hp-blue-deep);
  font-size: 16px;
}

.hp-quick-grid small {
  margin-top: 7px;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.55;
}

.hp-capability-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.hp-capability-tabs button {
  min-width: 0;
  min-height: 134px;
  padding: 18px;
  border: 1px solid var(--hp-line);
  border-radius: 12px;
  color: var(--hp-ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hp-capability-tabs button:hover,
.hp-capability-tabs button:focus-visible {
  border-color: #9db8e0;
  box-shadow: 0 8px 20px rgba(7, 59, 142, 0.08);
  transform: translateY(-2px);
  outline: 0;
}

.hp-capability-tabs button[aria-selected="true"] {
  border-color: var(--hp-blue);
  color: #fff;
  background: var(--hp-blue);
  box-shadow: 0 12px 26px rgba(7, 59, 142, 0.18);
}

.hp-capability-tabs span,
.hp-capability-tabs strong,
.hp-capability-tabs small {
  display: block;
}

.hp-capability-tabs span {
  color: var(--hp-orange);
  font-size: 12px;
  font-weight: 800;
}

.hp-capability-tabs strong {
  margin-top: 15px;
  color: inherit;
  font-size: 16px;
  line-height: 1.35;
}

.hp-capability-tabs small {
  margin-top: 6px;
  color: var(--hp-muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.hp-capability-tabs button[aria-selected="true"] small {
  color: rgba(255, 255, 255, 0.7);
}

.hp-capability-panel {
  scroll-margin-top: 108px;
  margin-top: 16px;
  padding: 40px;
  border: 1px solid var(--hp-line);
  border-top: 4px solid var(--hp-orange);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 59, 142, 0.08);
}

.hp-hero {
  scroll-margin-top: 82px;
}

.hp-capability-panel[hidden] {
  display: none;
}

.hp-panel-summary {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(280px, 1.15fr);
  column-gap: 46px;
  align-items: end;
}

.hp-panel-summary .hp-eyebrow {
  grid-column: 1;
}

.hp-panel-summary h3 {
  grid-column: 1;
  margin: 0;
  color: var(--hp-blue-deep);
  font-size: clamp(27px, 2.7vw, 38px);
  line-height: 1.25;
}

.hp-panel-summary > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.8;
}

.hp-panel-columns,
.hp-panel-delivery,
.hp-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.hp-panel-columns.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hp-panel-columns article,
.hp-panel-delivery > div {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--hp-line);
  border-radius: 10px;
  background: var(--hp-soft);
}

.hp-panel-columns article > span {
  color: var(--hp-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-panel-columns h4,
.hp-panel-delivery h4 {
  margin: 9px 0 0;
  color: var(--hp-blue-deep);
  font-size: 17px;
  line-height: 1.4;
}

.hp-panel-columns p,
.hp-panel-delivery p {
  margin: 9px 0 0;
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.75;
}

.hp-panel-columns .hp-panel-note {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #dfe8f4;
  color: #73839a;
  font-size: 11.5px;
}

.hp-panel-columns article > a {
  display: inline-block;
  margin-top: 16px;
  color: var(--hp-blue-bright);
  font-size: 13px;
  font-weight: 750;
}

.hp-panel-columns article > a:hover,
.hp-panel-columns article > a:focus-visible,
.hp-panel-actions a:hover,
.hp-panel-actions a:focus-visible {
  color: var(--hp-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-panel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 22px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e6edf7;
}

.hp-panel-actions > p {
  flex: 1 1 100%;
  margin: 0 0 5px;
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.75;
}

.hp-panel-actions a {
  color: var(--hp-blue-bright);
  font-size: 13px;
  font-weight: 750;
}

.hp-panel-quote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--hp-orange);
  color: #405571;
  background: var(--hp-soft);
  font-size: 13px;
  line-height: 1.75;
}

.hp-database-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.hp-database-list span {
  padding: 13px 15px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  color: #405571;
  background: var(--hp-soft);
  font-size: 12px;
  text-align: center;
}

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

.hp-tool-grid a {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--hp-line);
  border-radius: 10px;
  background: #fff;
}

.hp-tool-grid a:hover,
.hp-tool-grid a:focus-visible {
  border-color: #9db8e0;
  box-shadow: 0 8px 20px rgba(7, 59, 142, 0.08);
  outline: 0;
}

.hp-tool-grid span,
.hp-tool-grid strong,
.hp-tool-grid small {
  display: block;
}

.hp-tool-grid span {
  color: var(--hp-orange);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.hp-tool-grid strong {
  margin-top: 12px;
  color: var(--hp-blue-deep);
  font-size: 15px;
  line-height: 1.4;
}

.hp-tool-grid small {
  margin-top: 7px;
  color: var(--hp-muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.hp-trust {
  padding: 94px 0;
  color: #fff;
  background: var(--hp-blue-deep);
}

.hp-section-heading.inverse h2 {
  color: #fff;
}

.hp-section-heading.inverse > p {
  color: rgba(255, 255, 255, 0.68);
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hp-trust-grid article {
  min-width: 0;
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hp-trust-grid article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hp-trust-grid span {
  color: var(--hp-orange);
  font-size: 12px;
  font-weight: 800;
}

.hp-trust-grid h3 {
  margin: 19px 0 0;
  color: #fff;
  font-size: 18px;
}

.hp-trust-grid p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.5px;
  line-height: 1.7;
}

.hp-heading-link {
  flex: 0 0 auto;
  color: var(--hp-blue-bright) !important;
  font-size: 14px;
  font-weight: 750;
}

.hp-heading-link:hover,
.hp-heading-link:focus-visible {
  color: var(--hp-orange) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hp-case-grid a {
  min-width: 0;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--hp-line);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.hp-case-grid a:hover,
.hp-case-grid a:focus-visible {
  border-color: #9db8e0;
  box-shadow: 0 10px 24px rgba(7, 59, 142, 0.09);
  transform: translateY(-3px);
  outline: 0;
}

.hp-case-grid span {
  color: var(--hp-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hp-case-grid h3 {
  margin: 30px 0 0;
  color: var(--hp-blue-deep);
  font-size: 17px;
  line-height: 1.45;
}

.hp-case-grid p {
  margin: 10px 0 0;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.65;
}

.hp-final-cta {
  background: #fff;
}

.hp-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
  gap: 54px;
  align-items: center;
  padding: 54px 58px;
  border-radius: 18px;
  color: #fff;
  background: var(--hp-blue);
}

.hp-cta-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
}

.hp-cta-card p:not(.hp-eyebrow) {
  max-width: 62em;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

.hp-cta-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hp-cta-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.hp-cta-card a.is-primary {
  border-color: var(--hp-orange);
  background: var(--hp-orange);
}

.hp-cta-card a:hover,
.hp-cta-card a:focus-visible {
  border-color: #fff;
  outline: 3px solid rgba(255, 255, 255, 0.2);
  outline-offset: 3px;
}

/* Full-site search results */
.homepage-search-results {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid #e3ebf7;
}

.homepage-search-results-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--hp-blue-deep);
  font-size: 13px;
}

.homepage-search-results-head span {
  margin-left: auto;
  color: #74869d;
  font-size: 11px;
  font-weight: 500;
  text-align: right;
}

.homepage-search-results-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.homepage-search-result a {
  height: 100%;
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--hp-line);
  border-radius: 9px;
  color: #17304f;
  background: #f8fafd;
}

.homepage-search-result a:hover,
.homepage-search-result a:focus-visible {
  border-color: #9ebbe6;
  background: #fff;
  outline: 0;
}

.homepage-search-result small,
.homepage-search-result strong,
.homepage-search-result p {
  display: block;
}

.homepage-search-result small {
  margin-bottom: 4px;
  color: var(--hp-blue-bright);
  font-size: 10.5px;
  font-weight: 750;
}

.homepage-search-result strong {
  color: var(--hp-blue-deep);
  font-size: 13.5px;
  line-height: 1.45;
}

.homepage-search-result p {
  margin: 5px 0 0;
  color: var(--hp-muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.homepage-search-more,
.homepage-search-xiaoju {
  min-height: 38px;
  margin-top: 12px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.homepage-search-more {
  border: 1px solid #c9d8ef;
  color: var(--hp-blue-bright);
  background: #fff;
}

.homepage-search-xiaoju {
  margin-left: 8px;
  border: 1px solid var(--hp-orange);
  color: #fff;
  background: var(--hp-orange);
}

/* Runtime-managed organizations and testimonials */
.homepage-managed-section {
  padding: 96px 0;
  color: var(--hp-ink);
  font-family: "Noto Sans SC", "HarmonyOS Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

.homepage-managed-section.is-soft {
  background: #eef3f9;
}

.homepage-managed-section.is-white {
  background: #fff;
}

.homepage-managed-inner {
  width: min(1312px, calc(100% - 64px));
  margin: 0 auto;
}

.homepage-managed-heading {
  display: flex;
  align-items: end;
  gap: 36px;
  margin-bottom: 36px;
}

.homepage-managed-heading > div:first-child {
  flex: 1 1 auto;
}

.homepage-managed-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--hp-blue-bright);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.homepage-managed-eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--hp-orange);
  content: "";
}

.homepage-managed-heading h2 {
  margin: 0;
  color: var(--hp-blue-deep);
  font-size: clamp(31px, 3.1vw, 43px);
  line-height: 1.25;
}

.homepage-managed-heading p {
  max-width: 65em;
  margin: 10px 0 0;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.75;
}

.homepage-managed-count {
  flex: 0 0 auto;
  color: var(--hp-blue-bright);
  font-size: 13px;
  font-weight: 750;
}

.homepage-org-viewport {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.homepage-org-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: homepageOrgScroll var(--org-duration, 52s) linear infinite;
}

.homepage-org-viewport:hover .homepage-org-track,
.homepage-org-viewport:focus-within .homepage-org-track {
  animation-play-state: paused;
}

.homepage-org-card {
  min-width: 248px;
  max-width: 330px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid var(--hp-line);
  border-radius: 10px;
  color: #17304f;
  background: #fff;
}

.homepage-org-card i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--hp-blue-bright);
  background: #eef4fd;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.homepage-org-card span {
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}

.homepage-org-card small {
  display: block;
  margin-top: 3px;
  color: #73849b;
  font-size: 10.5px;
  font-weight: 500;
}

.homepage-managed-disclaimer {
  margin: 14px 0 0;
  color: #718198;
  font-size: 11.5px;
  line-height: 1.7;
}

.homepage-managed-disclaimer + .homepage-managed-disclaimer {
  margin-top: 3px;
}

@keyframes homepageOrgScroll {
  to { transform: translateX(calc(-50% - 6px)); }
}

.homepage-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.homepage-testimonial-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--hp-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(7, 59, 142, 0.045);
}

.homepage-testimonial-card blockquote {
  flex: 1 1 auto;
  margin: 0;
  color: #2c405a;
  font-size: 13.5px;
  line-height: 1.75;
}

.homepage-testimonial-card blockquote::before {
  display: block;
  margin-bottom: 8px;
  color: var(--hp-orange);
  content: "“";
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 0.7;
}

.homepage-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  padding-top: 13px;
  border-top: 1px solid #edf2f8;
  color: #65778f;
  font-size: 11px;
}

.homepage-testimonial-meta b {
  color: var(--hp-blue-bright);
}

.homepage-testimonial-actions {
  margin-top: 26px;
  text-align: center;
}

.homepage-testimonial-actions button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--hp-blue-bright);
  border-radius: 9px;
  color: var(--hp-blue-bright);
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.homepage-testimonial-actions button:hover,
.homepage-testimonial-actions button:focus-visible {
  color: #fff;
  background: var(--hp-blue-bright);
  outline: 3px solid rgba(11, 87, 196, 0.16);
  outline-offset: 3px;
}

.homepage-testimonial-dialog {
  width: min(940px, calc(100% - 28px));
  max-height: min(84vh, 900px);
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: var(--hp-ink);
  background: #fff;
  box-shadow: 0 28px 90px rgba(5, 42, 102, 0.35);
}

.homepage-testimonial-dialog::backdrop {
  background: rgba(5, 27, 64, 0.64);
}

.homepage-dialog-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  border-bottom: 1px solid #e7eef8;
  background: #fff;
}

.homepage-dialog-head h2 {
  flex: 1 1 auto;
  margin: 0;
  color: var(--hp-blue-deep);
  font-size: 20px;
}

.homepage-dialog-head button {
  width: 38px;
  height: 38px;
  border: 1px solid #c9d8ef;
  border-radius: 8px;
  color: var(--hp-blue-deep);
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}

.homepage-dialog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  max-height: calc(84vh - 78px);
  margin: 0;
  padding: 20px 22px 24px;
  overflow: auto;
  list-style: none;
}

.homepage-dialog-list li {
  padding: 17px;
  border: 1px solid var(--hp-line);
  border-radius: 10px;
  color: #334963;
  background: #f8fafd;
  font-size: 12.5px;
  line-height: 1.7;
}

.homepage-dialog-list b {
  display: block;
  margin-bottom: 6px;
  color: var(--hp-blue-bright);
  font-size: 11px;
}

.homepage-managed-empty {
  width: 100%;
  padding: 30px;
  border: 1px dashed #b9cbe5;
  border-radius: 10px;
  color: var(--hp-muted);
  background: #f8fafd;
  text-align: center;
}

@media (max-width: 1160px) {
  .hp-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    gap: 36px;
  }

  .hp-panel-columns.four,
  .hp-tool-grid,
  .homepage-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .hp-hero {
    padding: 60px 0;
  }

  .hp-hero-grid,
  .hp-cta-card {
    grid-template-columns: 1fr;
  }

  .hp-route-card {
    position: relative;
    top: auto;
  }

  .hp-data-status-grid,
  .hp-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-data-status-grid > div:nth-child(2),
  .hp-trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .hp-data-status-grid > div:nth-child(3),
  .hp-data-status-grid > div:nth-child(4),
  .hp-trust-grid article:nth-child(3),
  .hp-trust-grid article:nth-child(4) {
    border-top: 1px solid #e5ecf6;
  }

  .hp-trust-grid article:nth-child(3),
  .hp-trust-grid article:nth-child(4) {
    border-top-color: rgba(255, 255, 255, 0.18);
  }

  .hp-quick-grid,
  .hp-capability-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-quick-grid a,
  .hp-quick-grid a:first-child {
    border: 1px solid var(--hp-line);
    border-bottom: 0;
  }

  .hp-quick-grid a:last-child {
    border-bottom: 1px solid var(--hp-line);
  }

  .hp-panel-summary {
    display: block;
  }

  .hp-panel-summary > p:last-child {
    margin-top: 16px;
  }

  .hp-section-heading,
  .homepage-managed-heading {
    display: block;
  }

  .hp-section-heading > p,
  .homepage-managed-count,
  .hp-heading-link {
    display: block;
    margin-top: 14px;
  }
}

@media (max-width: 680px) {
  .hp-container,
  .homepage-managed-inner {
    width: min(100% - 36px, 1312px);
  }

  .hp-hero {
    padding: 46px 0 48px;
  }

  .hp-hero::after {
    display: none;
  }

  .hp-hero-copy h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hp-hero-lead {
    font-size: 15px;
  }

  .hp-hero-detail {
    font-size: 13.5px;
  }

  .homepage-site-search,
  .hp-route-card {
    padding: 17px;
    border-radius: 13px;
  }

  .hp-search-heading {
    display: block;
  }

  .hp-search-heading > a {
    display: inline-block;
    margin-top: 7px;
    white-space: normal;
  }

  .hp-search-form,
  .hp-route-extensions,
  .hp-panel-columns,
  .hp-panel-columns.four,
  .hp-panel-delivery,
  .hp-tool-grid,
  .hp-database-list,
  .hp-case-grid,
  .homepage-testimonial-grid,
  .homepage-dialog-list {
    grid-template-columns: 1fr;
  }

  .hp-search-form button {
    width: 100%;
  }

  .homepage-search-results-head {
    display: block;
  }

  .homepage-search-results-head span {
    display: block;
    margin: 5px 0 0;
    text-align: left;
  }

  .homepage-search-results-list {
    grid-template-columns: 1fr;
  }

  .hp-route-list > a {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .hp-route-list b {
    grid-column: 2;
    margin-top: -6px;
  }

  .hp-data-status-grid,
  .hp-trust-grid,
  .hp-quick-grid,
  .hp-capability-tabs {
    grid-template-columns: 1fr;
  }

  .hp-data-status-grid > div,
  .hp-data-status-grid > div:first-child,
  .hp-data-status-grid > div:nth-child(2),
  .hp-data-status-grid > div:nth-child(3),
  .hp-data-status-grid > div:nth-child(4) {
    border: 0;
    border-bottom: 1px solid #e5ecf6;
  }

  .hp-quick,
  .hp-capabilities,
  .hp-cases,
  .hp-final-cta,
  .homepage-managed-section {
    padding: 68px 0;
  }

  .hp-section-heading h2,
  .homepage-managed-heading h2 {
    font-size: 30px;
  }

  .hp-capability-tabs button {
    min-height: 0;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 3px 10px;
    padding: 15px 16px;
  }

  .hp-capability-tabs span {
    grid-row: 1 / span 2;
  }

  .hp-capability-tabs strong,
  .hp-capability-tabs small {
    margin: 0;
  }

  .hp-capability-panel {
    padding: 25px 20px;
  }

  .hp-panel-summary h3 {
    font-size: 27px;
  }

  .hp-trust-grid article,
  .hp-trust-grid article:first-child,
  .hp-trust-grid article:nth-child(2),
  .hp-trust-grid article:nth-child(3),
  .hp-trust-grid article:nth-child(4) {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hp-cta-card {
    gap: 28px;
    padding: 34px 24px;
  }

  .homepage-org-viewport {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: thin;
  }

  .homepage-org-card {
    min-width: 218px;
  }

  .homepage-testimonial-card {
    min-height: 0;
  }

  .homepage-testimonial-dialog {
    max-height: 88vh;
  }

  .homepage-dialog-list {
    max-height: calc(88vh - 78px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .homepage-org-track { width: auto; flex-wrap: wrap; animation: none; }
  .homepage-org-viewport { overflow: visible; mask-image: none; }
  .homepage-org-card[aria-hidden="true"] { display: none; }
}
