﻿:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #172033;
  --muted: #65738a;
  --line: #dbe3ee;
  --blue: #2563eb;
  --teal: #0f766e;
  --amber: #b45309;
  --red: #b91c1c;
  --green: #15803d;
  --shadow: 0 10px 30px rgba(23, 32, 51, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
code { padding: 0.1rem 0.32rem; border-radius: 5px; background: #edf2f7; font-size: 0.92em; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 251, 0.94);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; background: var(--text); color: #fff; font-weight: 800; }
.brand small { display: block; color: var(--muted); font-size: 11px; line-height: 1.1; }
.site-nav { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a { padding: 8px 11px; border-radius: 7px; color: var(--muted); font-size: 14px; }
.site-nav a:hover, .site-nav a.active { background: var(--surface-2); color: var(--text); }
main { padding: 28px clamp(18px, 4vw, 48px) 56px; }
.home-hero, .band, .page-title, .entry-hero, .toolbar, .search-panel, .graph-layout {
  max-width: 1280px; margin: 0 auto 18px;
}
.home-hero {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr); gap: 18px;
  min-height: 360px; align-items: stretch;
}
.hero-copy, .hero-panel, .band, .page-title, .entry-hero, .toolbar, .search-panel, .graph-canvas, .graph-side {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow);
}
.hero-copy { padding: clamp(24px, 5vw, 54px); }
.eyebrow { color: var(--teal); font-weight: 700; font-size: 13px; letter-spacing: 0; margin: 0 0 10px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(32px, 5vw, 58px); line-height: 1.08; letter-spacing: 0; margin-bottom: 16px; }
h2 { font-size: 22px; letter-spacing: 0; }
h3 { letter-spacing: 0; }
.hero-copy > p:not(.eyebrow), .page-title p, .section-head p, .entry-hero p { color: var(--muted); max-width: 820px; }
.hero-search, .search-panel, .toolbar { display: flex; gap: 10px; align-items: center; }
.hero-search { margin-top: 28px; max-width: 720px; }
input, select, button {
  min-height: 42px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--text);
  font: inherit; padding: 0 12px;
}
input { flex: 1; min-width: 180px; }
button { background: var(--blue); color: #fff; border-color: var(--blue); font-weight: 700; cursor: pointer; }
button:hover { background: #1d4ed8; }
.hero-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; }
.hero-panel div { padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-panel strong { display: block; font-size: 34px; line-height: 1.1; }
.hero-panel span { color: var(--muted); font-size: 13px; }
.band { padding: 22px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 16px; }
.section-head.compact { margin-bottom: 10px; }
.text-link { color: var(--blue); font-weight: 700; }
.type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.type-tile, .category-strip a {
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
  border: 1px solid var(--line); border-radius: 8px; padding: 15px; background: #fbfcfe;
}
.type-tile:hover, .category-strip a:hover, .entry-card:hover { border-color: #a7b5ca; }
.type-tile span, .category-strip span { color: var(--muted); }
.type-tile strong, .category-strip strong { font-size: 24px; }
.category-strip { max-width: 1280px; margin: 0 auto 18px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.category-strip.thin { box-shadow: none; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.entry-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.entry-list { display: grid; gap: 10px; }
.compact-list { grid-template-columns: 1fr; }
.entry-card { height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.entry-card__meta { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.entry-card h3 { margin: 0; font-size: 17px; line-height: 1.35; }
.entry-card p { color: var(--muted); font-size: 14px; margin-bottom: auto; }
.entry-card__footer { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 12px; border-top: 1px solid var(--line); padding-top: 10px; }
.badge { display: inline-flex; align-items: center; min-height: 24px; padding: 3px 8px; border-radius: 999px; background: #edf2f7; color: #4b5563; font-size: 12px; }
.badge.type { background: #dbeafe; color: #1d4ed8; }
.badge.published { background: #dcfce7; color: var(--green); }
.badge.draft { background: #fef3c7; color: var(--amber); }
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.page-title { padding: 28px; }
.page-title h1 { font-size: clamp(28px, 4vw, 44px); }
.toolbar { padding: 14px; box-shadow: none; }
.entry-page { max-width: 1400px; margin: 0 auto; }
.entry-hero { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 18px; padding: 26px; }
.entry-hero h1 { font-size: clamp(30px, 4vw, 48px); }
.fact-panel { margin: 0; display: grid; gap: 8px; }
.fact-panel div { border: 1px solid var(--line); border-radius: 8px; padding: 10px; background: #fbfcfe; }
.fact-panel dt { color: var(--muted); font-size: 12px; }
.fact-panel dd { margin: 2px 0 0; font-weight: 700; }
.entry-layout { display: grid; grid-template-columns: 210px minmax(0, 1fr) 300px; gap: 18px; align-items: start; }
.toc, .side-panel { position: sticky; top: 82px; }
.toc, .side-panel section, .prose { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.toc { display: grid; gap: 6px; font-size: 14px; }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--blue); }
.toc-3 { padding-left: 12px; }
.side-panel { display: grid; gap: 12px; }
.side-panel h2 { font-size: 17px; }
.prose { min-width: 0; }
.prose h2 { margin-top: 30px; padding-top: 14px; border-top: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { margin-top: 24px; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose pre { overflow: auto; padding: 14px; border-radius: 8px; background: #111827; color: #f9fafb; }
.prose blockquote { border-left: 4px solid var(--teal); margin: 16px 0; padding: 10px 14px; background: #effaf8; color: #28524d; }
.prose li { margin: 5px 0; }
.table-wrap { overflow-x: auto; margin: 16px 0; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { border-bottom: 1px solid var(--line); padding: 10px; text-align: left; vertical-align: top; }
th { background: #f1f5f9; }
.relation-list, .source-list, .metric-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.relation-list li, .source-list li, .metric-list li { border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.relation-list small, .source-list span { display: block; color: var(--muted); font-size: 12px; }
.source-list a { color: var(--blue); }
.search-page, .graph-layout { max-width: 1280px; margin: 0 auto; }
.search-panel { padding: 14px; margin-bottom: 14px; }
.search-results, .inline-results { display: grid; gap: 10px; }
.inline-results { margin-top: 14px; }
.result-item { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.result-item h3 { margin: 0 0 6px; }
.result-item p { color: var(--muted); margin: 0; }
.graph-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 18px; }
.graph-canvas { min-height: 620px; padding: 16px; overflow: hidden; }
.graph-canvas svg { width: 100%; height: 580px; display: block; }
.graph-node text { font-size: 11px; fill: var(--text); }
.graph-side { padding: 18px; }
.metric-list li { display: flex; justify-content: space-between; gap: 12px; }
.site-footer { border-top: 1px solid var(--line); padding: 22px clamp(18px, 4vw, 48px); display: flex; justify-content: space-between; gap: 18px; color: var(--muted); background: #fff; }
.site-footer strong { color: var(--text); margin-right: 8px; }
.footer-links { display: flex; gap: 14px; }
.footer-links a { color: var(--blue); }
[hidden] { display: none !important; }
@media (max-width: 1100px) {
  .home-hero, .two-col, .entry-hero, .entry-layout, .graph-layout { grid-template-columns: 1fr; }
  .toc, .side-panel { position: static; }
  .entry-layout { gap: 12px; }
}
@media (max-width: 760px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  main { padding-top: 18px; }
  .hero-search, .search-panel, .toolbar { flex-direction: column; align-items: stretch; }
  .hero-panel { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 34px; }
  .site-footer { flex-direction: column; }
}

/* Conversion components: keep the knowledge-base tone calm, readable, and scenario-specific. */
.entry-cta-card,
.listing-cta-card {
  border: 1px solid #d6e0ec;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.07);
}
.entry-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding: 22px;
  border-radius: 10px;
  border-left: 4px solid #ee822f;
}
.entry-cta-copy h2,
.listing-cta-card h2 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.35;
  color: var(--text);
}
.entry-cta-copy p,
.listing-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.entry-cta-kicker {
  margin: 0 0 7px !important;
  color: #0f9f6e !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.entry-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.cta-btn {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #c7d5e7;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none !important;
}
.cta-btn-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff !important;
}
.cta-btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; }
.cta-btn-secondary {
  background: #fff;
  color: #24415f !important;
}
.cta-btn-secondary:hover { border-color: #93abc9; color: var(--blue) !important; }
.toc-cta-card {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e2eaf3;
}
.toc-cta-link {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none !important;
}
.toc-cta-link span {
  font-weight: 650;
}
.toc-cta-link strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
}
.toc-cta-link:hover strong {
  color: #1d4ed8;
}
.listing-cta-card {
  max-width: 1280px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 10px;
}
.listing-cta-card .entry-cta-actions { justify-content: flex-end; }
.cta-scenario-hardware,
.cta-scenario-comparison { border-left: 4px solid var(--blue); }
.cta-scenario-software,
.cta-scenario-rag { border-left: 4px solid var(--teal); }
.cta-scenario-solution,
.cta-scenario-search { border-left: 4px solid #2f6fb7; }
.cta-scenario-faq,
.cta-scenario-guide { border-left: 4px solid #ee822f; }
.cta-scenario-concept { border-left: 4px solid #94a3b8; }
@media (max-width: 1100px) {
  .entry-cta-card,
  .listing-cta-card {
    grid-template-columns: 1fr;
  }
  .entry-cta-actions,
  .listing-cta-card .entry-cta-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .entry-cta-card,
  .listing-cta-card {
    padding: 18px;
  }
  .entry-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btn {
    width: 100%;
  }
}

/* Enterprise shell: align subpages with the V1.11 AI Infrastructure visual system. */
body {
  background:
    radial-gradient(circle at 12% -8%, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6fb 100%);
  color: #111827;
}

main {
  padding: 30px clamp(18px, 4vw, 56px) 72px;
}

.site-header {
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 31, 0.9);
  color: #f8fafc;
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.brand {
  gap: 12px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.86);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.86);
}

.brand strong {
  display: block;
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 760;
}

.brand small {
  color: rgba(203, 213, 225, 0.82);
}

.site-header.is-scrolled .brand strong {
  color: #111827;
}

.site-header.is-scrolled .brand small {
  color: #64748b;
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.82);
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-header.is-scrolled .site-nav a {
  color: #526173;
}

.site-header.is-scrolled .site-nav a:hover {
  background: #eef5ff;
  color: #2563eb;
}

.site-header.is-scrolled .site-nav a.active {
  background: #eaf1ff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.page-title,
.entry-hero {
  position: relative;
  max-width: 1320px;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.2), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(8, 145, 178, 0.14), transparent 34%),
    linear-gradient(135deg, #08111f 0%, #0f1d31 52%, #17243a 100%);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.page-title {
  padding: clamp(42px, 6vw, 72px) clamp(28px, 5vw, 72px);
}

.entry-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(34px, 5vw, 62px);
}

.page-title::before,
.entry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 72px 72px;
  mask-image: linear-gradient(125deg, rgba(0,0,0,0.82), rgba(0,0,0,0.15));
  pointer-events: none;
}

.page-title > *,
.entry-hero > * {
  position: relative;
  z-index: 1;
}

.page-title .eyebrow,
.entry-hero .eyebrow {
  color: #93c5fd;
  font-weight: 800;
}

.page-title h1,
.entry-hero h1 {
  max-width: 900px;
  color: #f8fafc;
  letter-spacing: 0;
}

.page-title p,
.entry-hero p,
.entry-hero .tag-row {
  color: rgba(226, 232, 240, 0.78);
}

.entry-hero .entry-card__meta {
  margin-bottom: 14px;
}

.entry-hero .badge {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(241, 245, 249, 0.88);
}

.entry-hero .badge.type {
  background: rgba(37, 99, 235, 0.16);
  color: #bfdbfe;
}

.entry-hero .badge.published {
  background: rgba(20, 184, 166, 0.12);
  color: #99f6e4;
}

.entry-hero .badge.draft {
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
}

.entry-hero code {
  background: rgba(15, 23, 42, 0.56);
  color: #dbeafe;
}

.entry-hero .fact-panel div {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.entry-hero .fact-panel dt {
  color: rgba(203, 213, 225, 0.74);
}

.entry-hero .fact-panel dd {
  color: #f8fafc;
  font-weight: 760;
}

.site-footer {
  margin-top: 48px;
  padding: 46px clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background:
    radial-gradient(circle at 84% 0%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0b1628 100%);
  color: #94a3b8;
}

.site-footer > div:first-child {
  max-width: 760px;
}

.site-footer strong {
  display: block;
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 16px;
}

.site-footer span {
  color: #b6c2d2;
}

.footer-links {
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #dbeafe;
}

.footer-links a:hover {
  border-color: rgba(147, 197, 253, 0.38);
  background: rgba(37, 99, 235, 0.16);
  color: #fff;
}

@media (max-width: 1100px) {
  .entry-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .page-title,
  .entry-hero {
    border-radius: 18px;
  }

  .page-title {
    padding: 36px 22px;
  }

  .entry-hero {
    padding: 28px 22px;
  }

  .site-footer {
    flex-direction: column;
  }

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

/* Public pages: hide operational status labels while keeping status data for backend/content ops. */
.badge.published,
.badge.draft,
select[data-status-filter] {
  display: none !important;
}

/* Public release: keep taxonomy links, hide operations-facing metrics. */
.category-strip a strong,
.type-grid .type-tile strong,
.graph-relation-list span,
.graph-node-list span {
  display: none !important;
}

/* Brand relationship footer: FUCHUANG platform, HYNX corporate ownership. */
.site-footer {
  display: block;
}

.site-footer > .footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  gap: 24px;
}

.site-footer .footer-brand {
  max-width: 760px;
}

.site-footer .footer-legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #7f8da1;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .site-footer > .footer-main {
    flex-direction: column;
  }

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

  .site-footer .footer-legal {
    margin-top: 22px;
  }
}

/* ops-sync: responsive content */
.prose {
  overflow-wrap: anywhere;
}
.prose table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.prose th,
.prose td {
  min-width: 112px;
  word-break: break-word;
}
@media (max-width: 760px) {
  .prose table {
    font-size: 13px;
  }
  .prose th,
  .prose td {
    min-width: 104px;
    padding: 10px;
  }
}


/* ops-sync: canonical homepage layer */
body.home-v16 {
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --surface: #ffffff;
  --surface-soft: #f9fbff;
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #6b7280;
  --muted-2: #94a3b8;
  --line: #e5e7eb;
  --line-strong: #d8dee8;
  --primary: #2563eb;
  --primary-hover: #3b82f6;
  --primary-soft: rgba(37, 99, 235, 0.1);
  --cyan: #0891b2;
  --cyan-soft: rgba(8, 145, 178, 0.1);
  --green: #0f766e;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.1);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 20px;
}

body.home-v16 * { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.home-v16 {
  margin: 0;
  background:
    radial-gradient(circle at 15% -6%, rgba(37, 99, 235, 0.09), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(8, 145, 178, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0, var(--bg) 420px, #f7f9fc 100%);
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
  text-rendering: geometricPrecision;
}
body.home-v16 a { color: inherit; text-decoration: none; }
body.home-v16 h1,



























































































































 body.home-v16 h2,



























































































































 body.home-v16 h3,



























































































































 body.home-v16 p { margin-top: 0; }
body.home-v16 h1,



























































































































 body.home-v16 h2,



























































































































 body.home-v16 h3 { color: var(--ink); letter-spacing: 0; }
body.home-v16 p { color: var(--muted); }
body.home-v16 button,



























































































































 body.home-v16 input { font: inherit; }

body.home-v16 .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}
body.home-v16 .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
body.home-v16 .brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.9);
}
body.home-v16 .brand strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.18;
  font-weight: 760;
}
body.home-v16 .brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.18;
}
body.home-v16 .site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}
body.home-v16 .site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #526173;
  font-size: 14px;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
body.home-v16 .site-nav a:hover {
  background: #eef5ff;
  color: var(--primary);
}
body.home-v16 .site-nav a.active {
  background: #eaf1ff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

body.home-v16 main {
  padding: 34px clamp(18px, 4vw, 56px) 86px;
}
body.home-v16 .home-hero,




























































































































body.home-v16 .band {
  max-width: 1320px;
  margin: 0 auto;
}

body.home-v16 .home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: 580px;
  padding: clamp(58px, 8vw, 104px) clamp(28px, 6vw, 78px);
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at 16% 86%, rgba(8, 145, 178, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 46%, #eef6ff 100%);
  box-shadow: var(--shadow-md);
}
body.home-v16 .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px) 0 0 / 66px 66px,
    linear-gradient(0deg, rgba(8, 145, 178, 0.045) 1px, transparent 1px) 0 0 / 66px 66px;
  mask-image: linear-gradient(125deg, rgba(0,0,0,0.82), rgba(0,0,0,0.12));
  pointer-events: none;
}
body.home-v16 .home-hero::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -28%;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13), transparent 64%);
  pointer-events: none;
}
body.home-v16 .hero-copy,




























































































































body.home-v16 .hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}
body.home-v16 .hero-copy {
  max-width: 730px;
}
body.home-v16 .eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}
body.home-v16 h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #0f172a;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.03;
  font-weight: 820;
  overflow-wrap: anywhere;
}
body.home-v16 .hero-copy h1 span {
  display: block;
}
body.home-v16 .hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #475569;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.82;
  overflow-wrap: anywhere;
}
body.home-v16 .hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin-top: clamp(34px, 4.8vw, 54px);
  padding: 8px;
  border: 1px solid rgba(203, 213, 225, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(37, 99, 235, 0.13), 0 6px 18px rgba(15, 23, 42, 0.06);
}
body.home-v16 .hero-search input {
  flex: 1;
  min-width: 180px;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  border-radius: 13px;
  background: #f8fafc;
  color: var(--ink);
  outline: none;
}
body.home-v16 .hero-search input::placeholder {
  color: #8290a3;
}
body.home-v16 .hero-search:focus-within {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 22px 58px rgba(37, 99, 235, 0.17), 0 0 0 4px rgba(37, 99, 235, 0.08);
}
body.home-v16 .hero-search button {
  min-height: 54px;
  border: 0;
  border-radius: 13px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
body.home-v16 .hero-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}
body.home-v16 .hero-query-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin-top: 22px;
}
body.home-v16 .hero-query-row a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #334155;
  font-size: 13px;
  box-shadow: var(--shadow-xs);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}
body.home-v16 .hero-query-row a:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.42);
  background: #eef5ff;
  color: var(--primary);
}
body.home-v16 .inline-results {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

body.home-v16 .hero-dimensions-panel {
  display: grid;
  gap: 22px;
  align-self: stretch;
  padding: 26px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.1);
}
body.home-v16 .panel-heading span {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 720;
}
body.home-v16 .panel-heading strong {
  display: block;
  color: #0f172a;
  font-size: 23px;
  line-height: 1.35;
}
body.home-v16 .dimension-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
body.home-v16 .dimension-list div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
body.home-v16 .dimension-list div:last-child {
  border-bottom: 0;
}
body.home-v16 .dimension-list span {
  color: #8190a3;
  font-size: 12px;
  font-weight: 700;
}
body.home-v16 .dimension-list strong {
  color: #1f2937;
  font-size: 13px;
  font-weight: 760;
}
body.home-v16 .infra-topology {
  position: relative;
  min-height: 164px;
  border: 1px solid #dbe4ef;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(8,145,178,0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, #ffffff, #f2f7ff);
  overflow: hidden;
}
body.home-v16 .infra-topology::before,




























































































































body.home-v16 .infra-topology::after {
  content: "";
  position: absolute;
  inset: 35px 44px;
  border-top: 1px solid rgba(37, 99, 235, 0.32);
  border-bottom: 1px solid rgba(8, 145, 178, 0.25);
  transform: skewY(-9deg);
}
body.home-v16 .infra-topology::after {
  inset: 58px 52px 44px;
  border-color: rgba(100, 116, 139, 0.18);
  transform: skewY(9deg);
}
body.home-v16 .infra-topology i {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(37, 99, 235, 0.62);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}
body.home-v16 .infra-topology i:nth-child(1) { left: 16%; top: 28%; }
body.home-v16 .infra-topology i:nth-child(2) { left: 42%; top: 20%; }
body.home-v16 .infra-topology i:nth-child(3) { right: 18%; top: 34%; }
body.home-v16 .infra-topology i:nth-child(4) { left: 25%; bottom: 25%; }
body.home-v16 .infra-topology i:nth-child(5) { left: 54%; bottom: 18%; }
body.home-v16 .infra-topology i:nth-child(6) { right: 12%; bottom: 30%; }

body.home-v16 .band {
  padding: clamp(78px, 8vw, 112px) 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
}
body.home-v16 .band:last-of-type { border-bottom: 0; }
body.home-v16 .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}
body.home-v16 .section-head.compact {
  margin-bottom: 24px;
}
body.home-v16 .section-head h2 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.2;
  font-weight: 800;
}
body.home-v16 .section-head p {
  max-width: 760px;
  margin-bottom: 0;
}
body.home-v16 .text-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 2px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}
body.home-v16 .text-link:hover {
  color: var(--primary-hover);
}

body.home-v16 .deployment-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.home-v16 .path-step,




























































































































body.home-v16 .topic-card,




























































































































body.home-v16 .solution-grid a,




























































































































body.home-v16 .type-tile,




























































































































body.home-v16 .category-strip a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-xs);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
body.home-v16 .path-step {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 184px;
  padding: 24px;
}
body.home-v16 .path-step:hover,




























































































































body.home-v16 .topic-card:hover,




























































































































body.home-v16 .solution-grid a:hover,




























































































































body.home-v16 .type-tile:hover,




























































































































body.home-v16 .category-strip a:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.24);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
body.home-v16 .path-step span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 820;
}
body.home-v16 .path-step strong {
  color: #111827;
  font-size: 18px;
}
body.home-v16 .path-step p {
  margin: 0;
  font-size: 14px;
}

body.home-v16 .topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.home-v16 .topic-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 22px;
}
body.home-v16 .topic-icon {
  display: inline-grid;
  place-items: center;
  width: max-content;
  min-width: 40px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: #eef5ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 820;
}
body.home-v16 .topic-card strong,




























































































































body.home-v16 .solution-grid strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
}
body.home-v16 .topic-card p {
  margin-bottom: 0;
  font-size: 14px;
}

body.home-v16 .category-strip,




























































































































body.home-v16 .type-grid {
  display: grid;
  gap: 14px;
}
body.home-v16 .category-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.home-v16 .type-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
body.home-v16 .category-strip a,




























































































































body.home-v16 .type-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 19px 20px;
}
body.home-v16 .type-tile {
  min-height: 86px;
}
body.home-v16 .category-strip span,




























































































































body.home-v16 .type-tile span {
  color: #1f2937;
  font-weight: 680;
}
body.home-v16 .category-strip strong,




























































































































body.home-v16 .type-tile strong {
  color: #8a97aa;
  font-size: 21px;
  font-weight: 760;
}

body.home-v16 .faq-list {
  display: grid;
  gap: 12px;
}
body.home-v16 .faq-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) minmax(120px, 180px);
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-xs);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
body.home-v16 .faq-row:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.24);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
body.home-v16 .faq-row:hover h3 {
  color: var(--primary);
}
body.home-v16 .row-index {
  color: var(--primary);
  font-size: 13px;
  font-weight: 820;
}
body.home-v16 .faq-row h3 {
  margin-bottom: 7px;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
}
body.home-v16 .faq-row p {
  margin-bottom: 0;
  font-size: 14px;
}
body.home-v16 .faq-row em {
  color: #64748b;
  font-style: normal;
  font-size: 13px;
  text-align: right;
}

body.home-v16 .solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.home-v16 .solution-grid a {
  min-height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86)),
    radial-gradient(circle at 20% 10%, var(--cyan-soft), transparent 56%);
}
body.home-v16 .solution-grid span {
  color: var(--muted);
  font-size: 14px;
}

body.home-v16 .cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: none;
  margin-left: calc(clamp(18px, 4vw, 56px) * -1);
  margin-right: calc(clamp(18px, 4vw, 56px) * -1);
  padding: clamp(76px, 8vw, 104px) clamp(18px, 4vw, 56px);
  border: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #eef6ff 52%, #f8fafc);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), inset 0 -1px 0 rgba(226,232,240,0.95);
}
body.home-v16 .cta-band .eyebrow {
  color: var(--primary);
}
body.home-v16 .cta-band h2 {
  max-width: 820px;
  margin-bottom: 12px;
  color: #0f172a;
  font-size: clamp(28px, 3.2vw, 44px);
}
body.home-v16 .cta-band p {
  max-width: 780px;
  margin-bottom: 0;
}
body.home-v16 .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
body.home-v16 .cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  color: #334155;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
body.home-v16 .cta-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.32);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
body.home-v16 .cta-actions .cta-primary {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  font-weight: 820;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

body.home-v16 .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}
body.home-v16 .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
body.home-v16 .timeline-list li {
  position: relative;
}
body.home-v16 .timeline-list a {
  display: block;
  padding: 18px 20px 18px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-xs);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
body.home-v16 .timeline-list a::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 30px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}
body.home-v16 .timeline-list.quiet a::before {
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(8, 145, 178, 0.1);
}
body.home-v16 .timeline-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow-sm);
}
body.home-v16 .timeline-list time {
  display: block;
  margin-bottom: 6px;
  color: #94a3b8;
  font-size: 12px;
}
body.home-v16 .timeline-list h3 {
  margin-bottom: 7px;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
}
body.home-v16 .timeline-list p {
  margin-bottom: 9px;
  font-size: 14px;
}
body.home-v16 .timeline-list span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
body.home-v16 .timeline-list a:hover h3 {
  color: var(--primary);
}

body.home-v16 .result-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
}
body.home-v16 .result-item h3 {
  margin: 7px 0;
  color: #111827;
  font-size: 16px;
}
body.home-v16 .result-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
body.home-v16 .entry-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
body.home-v16 .badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 2px 8px;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 680;
}
body.home-v16 .badge.type {
  border-color: rgba(37, 99, 235, 0.16);
  background: #eef5ff;
  color: #1d4ed8;
}
body.home-v16 .badge.published {
  color: #64748b;
}
.home-v13 .badge.draft {
  display: none;
}

body.home-v16 .site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  color: var(--muted);
}
body.home-v16 .site-footer strong {
  color: var(--ink);
  margin-right: 8px;
}
body.home-v16 .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body.home-v16 .footer-links a {
  color: #475569;
  font-weight: 680;
}
body.home-v16 .footer-links a:hover {
  color: var(--primary);
}
body.home-v16 [hidden] { display: none !important; }

@media (max-width: 1180px) {
  body.home-v16 .home-hero,




























































































































  body.home-v16 .two-col,




























































































































  body.home-v16 .cta-band {
    grid-template-columns: 1fr;
  }
  body.home-v16 .hero-copy {
    max-width: 780px;
  }
  body.home-v16 .hero-dimensions-panel {
    align-self: auto;
  }
  body.home-v16 .deployment-path,




























































































































  body.home-v16 .topic-grid,




























































































































  body.home-v16 .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.home-v16 .type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.home-v16 .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  body.home-v16 .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  body.home-v16 .site-nav {
    justify-content: flex-start;
  }
  body.home-v16 main {
    padding-top: 18px;
  }
  body.home-v16 .home-hero {
    min-height: auto;
    padding: 44px 22px;
    border-radius: 20px;
  }
  body.home-v16 h1 {
    font-size: 38px;
    line-height: 1.12;
  }
  body.home-v16 .hero-search {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    padding: 7px;
  }
  body.home-v16 .hero-search button,




























































































































  body.home-v16 .hero-search input {
    width: 100%;
  }
  body.home-v16 .dimension-list div,




























































































































  body.home-v16 .faq-row {
    grid-template-columns: 1fr;
  }
  body.home-v16 .faq-row {
    gap: 8px;
  }
  body.home-v16 .faq-row em {
    text-align: left;
  }
  body.home-v16 .deployment-path,




























































































































  body.home-v16 .topic-grid,




























































































































  body.home-v16 .solution-grid,




























































































































  body.home-v16 .category-strip,




























































































































  body.home-v16 .type-grid {
    grid-template-columns: 1fr;
  }
  body.home-v16 .band {
    padding: 68px 0;
  }
  body.home-v16 .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  body.home-v16 .cta-actions,




























































































































  body.home-v16 .cta-actions a {
    width: 100%;
  }
  body.home-v16 .site-footer {
    flex-direction: column;
  }
}

/* Brand relationship footer: FUCHUANG platform, HYNX corporate ownership. */
body.home-v16 .site-footer {
  display: block;
}

body.home-v16 .site-footer > .footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  gap: 24px;
}

body.home-v16 .site-footer .footer-brand {
  max-width: 760px;
}

body.home-v16 .site-footer .footer-legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #7f8da1;
  font-size: 12px;
  line-height: 1.65;
}

.home-v16 .site-footer .footer-legal {
  border-top-color: rgba(255, 255, 255, 0.09);
  color: #748297;
}

@media (max-width: 820px) {
  body.home-v16 .site-footer > .footer-main {
    flex-direction: column;
  }

  body.home-v16 .site-footer .footer-links {
    justify-content: flex-start;
  }

  body.home-v16 .site-footer .footer-legal {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  body.home-v16 .brand {
    min-width: 0;
  }
  body.home-v16 .site-nav a {
    min-height: 34px;
    padding: 0 10px;
  }
  body.home-v16 h1 {
    font-size: 32px;
  }
  body.home-v16 .eyebrow {
    font-size: 12px;
  }
  body.home-v16 .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.72;
  }
  body.home-v16 .hero-query-row a {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }
  body.home-v16 .hero-dimensions-panel {
    padding: 18px;
  }
  body.home-v16 .infra-topology {
    min-height: 136px;
  }
}

/* V1.6: V1.4 comfort + restrained enterprise control-plane details */
.home-v16 {
  --control-950: #07101d;
  --control-900: #0b1524;
  --control-850: #101d30;
  --control-800: #17263a;
  --control-line: rgba(255, 255, 255, 0.12);
  --control-text: #f8fafc;
  --control-muted: #a8b5c7;
  --enterprise-blue: #2563eb;
  --enterprise-blue-soft: rgba(37, 99, 235, 0.12);
  --light-band: #f6f9fc;
  --light-card: #ffffff;
  --light-line: #dbe4ef;
}

.home-v16 {
  background:
    radial-gradient(circle at 15% -6%, rgba(37, 99, 235, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0, #f8fafc 420px, #f7f9fc 100%);
}

.home-v16 .site-header {
  min-height: 74px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(7, 16, 29, 0.96), rgba(13, 27, 45, 0.96));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-v16 .brand-logo {
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.home-v16 .brand strong {
  color: #f8fafc;
}

.home-v16 .brand small {
  color: #9fb0c4;
}

.home-v16 .site-nav a {
  border-radius: 8px;
  color: #c3cedd;
}

.home-v16 .site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-v16 .site-nav a.active {
  background: rgba(37, 99, 235, 0.22);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.18);
}

.home-v16 .home-hero {
  border-color: rgba(15, 23, 42, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 84% 12%, rgba(37, 99, 235, 0.14), transparent 30%),
    linear-gradient(135deg, #0b1524 0%, #101d30 56%, #162942 100%);
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.14);
}

.home-v16 .home-hero::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.035), transparent);
  mask-image: linear-gradient(120deg, rgba(0,0,0,0.7), rgba(0,0,0,0.08));
}

.home-v16 .home-hero::after {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.11), transparent 68%);
  opacity: 0.72;
}

.home-v16 .hero-copy .eyebrow {
  color: #93c5fd;
}

.home-v16 .hero-copy h1,




























































































































.home-v16 .hero-copy h1 span {
  color: var(--control-text);
}

.home-v16 .hero-copy > p:not(.eyebrow) {
  color: #cad6e5;
}

.home-v16 .hero-search {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.home-v16 .hero-search button {
  background: var(--enterprise-blue);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.home-v16 .hero-search button:hover {
  transform: translateY(-1px);
  background: #2f6fed;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.26);
}

.home-v16 .hero-query-row a {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  color: #dbeafe;
  box-shadow: none;
}

.home-v16 .hero-query-row a:hover {
  border-color: rgba(147, 197, 253, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.home-v16 .hero-dimensions-panel {
  gap: 0;
  padding: 0;
  border-color: var(--control-line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(28, 43, 62, 0.92), rgba(17, 31, 50, 0.92));
  backdrop-filter: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.home-v16 .panel-heading {
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--control-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.home-v16 .panel-heading span {
  color: #93a4b8;
  font-size: 11px;
  letter-spacing: 0;
}

.home-v16 .panel-heading strong {
  color: #f8fafc;
  font-size: 22px;
}

.home-v16 .dimension-list {
  border: 0;
}

.home-v16 .dimension-list div {
  grid-template-columns: 78px minmax(0, 1fr);
  margin: 0 26px;
  padding: 15px 0;
  border-bottom-color: rgba(255, 255, 255, 0.095);
}

.home-v16 .dimension-list span {
  color: #93a4b8;
  font-size: 11px;
  font-weight: 680;
}

.home-v16 .dimension-list strong {
  color: #eef6ff;
  font-size: 13px;
  font-weight: 780;
}

.home-v16 .infra-topology {
  margin: 24px 26px 26px;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}

.home-v16 .infra-topology::before,




























































































































.home-v16 .infra-topology::after {
  border-color: rgba(147, 197, 253, 0.22);
}

.home-v16 .infra-topology i {
  border-color: rgba(147, 197, 253, 0.68);
  background: #dbeafe;
  box-shadow: 0 0 0 5px rgba(147, 197, 253, 0.1);
}

.home-v16 .band {
  border-bottom-color: rgba(226, 232, 240, 0.76);
}

.home-v16 .topic-band,




























































































































.home-v16 .faq-band,




























































































































.home-v16 .recent-band {
  position: relative;
}

.home-v16 .topic-band::before,




























































































































.home-v16 .faq-band::before,




























































































































.home-v16 .recent-band::before {
  content: "";
  position: absolute;
  inset: 0 calc(clamp(18px, 4vw, 56px) * -1);
  z-index: -1;
  background: #f6f9fc;
}

.home-v16 .faq-band::before {
  background: #f3f5f8;
}

.home-v16 .recent-band::before {
  background: #f7f9fc;
}

.home-v16 .section-head h2 {
  font-weight: 790;
}

.home-v16 .topic-card,




























































































































.home-v16 .path-step,




























































































































.home-v16 .category-strip a,




























































































































.home-v16 .type-tile,




























































































































.home-v16 .faq-row,




























































































































.home-v16 .timeline-list a {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035);
}

.home-v16 .topic-card:hover,




























































































































.home-v16 .path-step:hover,




























































































































.home-v16 .category-strip a:hover,




























































































































.home-v16 .type-tile:hover,




























































































































.home-v16 .faq-row:hover,




























































































































.home-v16 .timeline-list a:hover,




























































































































.home-v16 .solution-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.home-v16 .topic-card {
  border-radius: 18px;
}

.home-v16 .topic-card::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.3);
}

.home-v16 .faq-row {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
}

.home-v16 .solution-band {
  position: relative;
}

.home-v16 .solution-band::before {
  content: "";
  position: absolute;
  inset: 0 calc(clamp(18px, 4vw, 56px) * -1);
  z-index: -1;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.home-v16 .solution-grid a {
  position: relative;
  min-height: 166px;
  justify-content: flex-start;
  gap: 16px;
  border-color: #dce5f0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035);
  overflow: hidden;
}

.home-v16 .solution-grid a::before {
  color: #64748b;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.home-v16 .solution-grid a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.32), rgba(148, 163, 184, 0.12), transparent);
}

.home-v16 .solution-grid a:nth-child(1)::before { content: "FINANCE"; }
.home-v16 .solution-grid a:nth-child(2)::before { content: "MANUFACTURING"; }
.home-v16 .solution-grid a:nth-child(3)::before { content: "MEDICAL"; }
.home-v16 .solution-grid a:nth-child(4)::before { content: "EDUCATION"; }

.home-v16 .solution-grid strong {
  margin-top: 10px;
}

.home-v16 .solution-grid span {
  color: #66758a;
}

.home-v16 .cta-band {
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.12), transparent 32%),
    linear-gradient(135deg, #0b1524, #13243a 62%, #162c46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(255,255,255,0.08);
}

.home-v16 .cta-band .eyebrow {
  color: #93c5fd;
}

.home-v16 .cta-band h2 {
  color: #f8fafc;
}

.home-v16 .cta-band p {
  color: #cbd5e1;
}

.home-v16 .cta-actions a {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  color: #e2e8f0;
  box-shadow: none;
}

.home-v16 .cta-actions a:hover {
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: none;
}

.home-v16 .cta-actions .cta-primary {
  border-color: var(--enterprise-blue);
  background: var(--enterprise-blue);
  color: #ffffff;
}

.home-v16 .site-footer {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #0a1220, #07101d);
  color: #9aa8bb;
}

.home-v16 .site-footer strong {
  display: block;
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 17px;
}

.home-v16 .site-footer span {
  color: #aab7c8;
}

.home-v16 .footer-links a {
  color: #cbd5e1;
}

.home-v16 .footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 820px) {
  .home-v16 .topic-band::before,




























































































































  .home-v16 .faq-band::before,




























































































































  .home-v16 .recent-band::before,




























































































































  .home-v16 .solution-band::before {
    left: calc(clamp(18px, 4vw, 56px) * -1);
    right: calc(clamp(18px, 4vw, 56px) * -1);
  }

  .home-v16 .hero-dimensions-panel {
    border-radius: 18px;
  }
}

/* V1.7: Header keeps the first-screen dark platform feel, then turns into a light enterprise nav while scrolling. */
.home-v17 .site-header {
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.home-v17 .brand strong,




























































































































.home-v17 .brand small,




























































































































.home-v17 .site-nav a {
  transition:
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.home-v17.header-scrolled .site-header {
  border-bottom-color: rgba(203, 213, 225, 0.74);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  backdrop-filter: saturate(160%) blur(14px);
}

.home-v17.header-scrolled .brand-logo {
  box-shadow:
    0 0 0 1px rgba(226, 232, 240, 0.92),
    0 8px 18px rgba(15, 23, 42, 0.06);
}

.home-v17.header-scrolled .brand strong {
  color: #111827;
}

.home-v17.header-scrolled .brand small {
  color: #64748b;
}

.home-v17.header-scrolled .site-nav a {
  color: #475569;
}

.home-v17.header-scrolled .site-nav a:hover {
  background: #eef4ff;
  color: #1d4ed8;
}

.home-v17.header-scrolled .site-nav a.active {
  background: #e7efff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

@media (max-width: 820px) {
  .home-v17.header-scrolled .site-header {
    background: rgba(255, 255, 255, 0.98);
  }
}

/* V1.8: Restore the CTA to the calmer V1.4 light gradient treatment. */
.home-v18 .cta-band {
  border: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #eef6ff 52%, #f8fafc);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(226, 232, 240, 0.95);
}

.home-v18 .cta-band .eyebrow {
  color: var(--primary);
}

.home-v18 .cta-band h2 {
  color: #0f172a;
}

.home-v18 .cta-band p {
  color: var(--muted);
}

.home-v18 .cta-actions a {
  border-color: #dbe4ef;
  background: rgba(255, 255, 255, 0.8);
  color: #334155;
  box-shadow: var(--shadow-xs);
}

.home-v18 .cta-actions a:hover {
  border-color: rgba(37, 99, 235, 0.32);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.home-v18 .cta-actions .cta-primary {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

/* V1.9: Lift the hero decision panel from the dark field without letting it compete with the main copy. */
.home-v19 .hero-dimensions-panel {
  position: relative;
  isolation: isolate;
  align-self: center;
  border-color: rgba(184, 205, 231, 0.26);
  background:
    radial-gradient(circle at 78% 0%, rgba(96, 165, 250, 0.14), transparent 31%),
    linear-gradient(180deg, rgba(35, 52, 74, 0.98) 0%, rgba(20, 38, 61, 0.98) 56%, rgba(14, 29, 48, 0.98) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 18px 38px rgba(11, 21, 36, 0.18);
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.home-v19 .hero-dimensions-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(147, 197, 253, 0.045));
  pointer-events: none;
}

.home-v19 .hero-dimensions-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.55), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.home-v19 .hero-dimensions-panel > * {
  position: relative;
  z-index: 1;
}

.home-v19 .hero-dimensions-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 219, 254, 0.34);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.045) inset,
    0 20px 44px rgba(11, 21, 36, 0.2);
}

.home-v19 .panel-heading {
  padding: 25px 28px 21px;
  border-bottom-color: rgba(203, 213, 225, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026));
}

.home-v19 .panel-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9bbcf;
  font-size: 11px;
  font-weight: 700;
}

.home-v19 .panel-heading span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #93c5fd;
  box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.09);
}

.home-v19 .panel-heading strong {
  margin-top: 8px;
  color: #f8fbff;
  font-size: 23px;
  font-weight: 760;
}

.home-v19 .dimension-list {
  padding: 3px 0;
}

.home-v19 .dimension-list div {
  position: relative;
  grid-template-columns: 76px minmax(0, 1fr);
  margin: 0;
  padding: 16px 28px;
  border-bottom-color: rgba(203, 213, 225, 0.12);
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.home-v19 .dimension-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: #93c5fd;
  opacity: 0;
  transition: opacity 160ms ease;
}

.home-v19 .dimension-list div:hover {
  background: rgba(255, 255, 255, 0.035);
  border-bottom-color: rgba(203, 213, 225, 0.18);
}

.home-v19 .dimension-list div:hover::before {
  opacity: 0.72;
}

.home-v19 .dimension-list span {
  color: #94a8be;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-v19 .dimension-list strong {
  color: #f3f8ff;
  font-size: 13.5px;
  font-weight: 760;
}

.home-v19 .infra-topology {
  margin: 23px 28px 28px;
  border-color: rgba(203, 213, 225, 0.16);
  background:
    radial-gradient(circle at 52% 48%, rgba(96, 165, 250, 0.1), transparent 43%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.home-v19 .infra-topology::before,




























































































































.home-v19 .infra-topology::after {
  border-color: rgba(147, 197, 253, 0.28);
}

.home-v19 .infra-topology i {
  border-color: rgba(191, 219, 254, 0.76);
  background: #e8f2ff;
  box-shadow:
    0 0 0 5px rgba(147, 197, 253, 0.11),
    0 6px 16px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
  .home-v19 .infra-topology i {
    animation: v19-node-pulse 5.8s ease-in-out infinite;
  }

  .home-v19 .infra-topology i:nth-child(2) { animation-delay: 0.5s; }
  .home-v19 .infra-topology i:nth-child(3) { animation-delay: 1s; }
  .home-v19 .infra-topology i:nth-child(4) { animation-delay: 1.5s; }
  .home-v19 .infra-topology i:nth-child(5) { animation-delay: 2s; }
  .home-v19 .infra-topology i:nth-child(6) { animation-delay: 2.5s; }
}

@keyframes v19-node-pulse {
  0%, 100% {
    opacity: 0.82;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 640px) {
  .home-v19 .panel-heading {
    padding: 22px 22px 18px;
  }

  .home-v19 .dimension-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 22px;
  }

  .home-v19 .infra-topology {
    margin: 20px 22px 22px;
  }
}

/* V1.9 height baseline: restore the hero rhythm to the V1.4 height system. */
.home-v19 .home-hero {
  min-height: 580px;
  gap: clamp(30px, 5vw, 72px);
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.home-v19 .hero-search {
  margin-top: clamp(24px, 3vw, 32px);
  padding: 7px;
}

.home-v19 .hero-search input,




























































































































.home-v19 .hero-search button {
  min-height: 50px;
}

.home-v19 .hero-query-row {
  margin-top: 16px;
}

.home-v19 .hero-query-row a {
  min-height: 32px;
}

.home-v19 .hero-copy > p:not(.eyebrow) {
  line-height: 1.68;
}

.home-v19 .panel-heading {
  padding: 19px 24px 16px;
}

.home-v19 .panel-heading strong {
  margin-top: 5px;
  font-size: 21px;
}

.home-v19 .dimension-list {
  padding: 0;
}

.home-v19 .dimension-list div {
  padding: 11px 24px;
}

.home-v19 .dimension-list div::before {
  top: 12px;
  bottom: 12px;
}

.home-v19 .infra-topology {
  min-height: 108px;
  margin: 16px 24px 20px;
}

@media (max-width: 640px) {
  .home-v19 .home-hero {
    min-height: auto;
    padding: 44px 22px;
  }
}

@media (max-width: 640px) {
  .home-v19 .panel-heading {
    padding: 20px 22px 16px;
  }

  .home-v19 .dimension-list div {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 22px;
  }

  .home-v19 .infra-topology {
    min-height: 92px;
    margin: 14px 22px 18px;
  }
}

/* V1.11: FAQ and industry solutions share a calm full-width band treatment. */
.home-v110 .faq-band {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin-left: calc(clamp(18px, 4vw, 56px) * -1);
  margin-right: calc(clamp(18px, 4vw, 56px) * -1);
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(226, 232, 240, 0.76);
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
  background: #f3f5f8;
}

.home-v110 .faq-band::before {
  content: none;
}

.home-v110 .faq-band .section-head,




























































































































.home-v110 .faq-band .faq-list {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.home-v110 .solution-band {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin-left: calc(clamp(18px, 4vw, 56px) * -1);
  margin-right: calc(clamp(18px, 4vw, 56px) * -1);
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(226, 232, 240, 0.76);
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
  background: #f3f5f8;
}

.home-v110 .solution-band::before {
  content: none;
}

.home-v110 .solution-band .section-head,




























































































































.home-v110 .solution-band .solution-grid {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.home-v110 .solution-band .section-head {
  margin-bottom: clamp(28px, 3.2vw, 38px);
}

.home-v110 .solution-band .section-head h2 {
  color: #111827;
}

.home-v110 .solution-band .section-head p {
  max-width: 620px;
  color: #64748b;
}

.home-v110 .solution-grid {
  gap: 18px;
}

.home-v110 .solution-grid a {
  position: relative;
  min-height: 176px;
  padding: 25px 24px 23px;
  border-color: #d7e1ec;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.035),
    0 14px 32px rgba(15, 23, 42, 0.045);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.home-v110 .solution-grid a::before {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 20px;
  margin-bottom: 12px;
  padding: 0 0 9px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.22);
  color: #526277;
  font-size: 10.5px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.home-v110 .solution-grid a::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 55px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(148, 163, 184, 0.1), transparent);
}

.home-v110 .solution-grid strong {
  margin-top: 4px;
  color: #111827;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 790;
}

.home-v110 .solution-grid span {
  max-width: 95%;
  color: #5f6f83;
  font-size: 14px;
  line-height: 1.72;
}

.home-v110 .solution-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 18px 38px rgba(15, 23, 42, 0.065);
}

.home-v110 .solution-grid a:hover::before {
  border-bottom-color: rgba(37, 99, 235, 0.38);
  color: #334155;
}

@media (max-width: 820px) {
  .home-v110 .solution-grid a {
    min-height: 156px;
  }
}

@media (max-width: 640px) {
  .home-v110 .solution-band .section-head {
    margin-bottom: 22px;
  }

  .home-v110 .solution-grid {
    gap: 14px;
  }

  .home-v110 .solution-grid a {
    min-height: 196px;
    padding: 22px;
  }

  .home-v110 .solution-grid a::after {
    left: 22px;
    right: 22px;
    top: 52px;
  }
}

/* Public pages: hide operational status labels while keeping status data for backend/content ops. */
body.home-v16 .badge.published,




























































































































body.home-v16 .badge.draft,




























































































































body.home-v16 select[data-status-filter] {
  display: none !important;
}

/* Public release: keep taxonomy links, hide operations-facing metrics. */
body.home-v16 .category-strip a strong,




























































































































body.home-v16 .type-grid .type-tile strong,




























































































































body.home-v16 .graph-relation-list span,




























































































































body.home-v16 .graph-node-list span {
  display: none !important;
}

/* ops-sync: 0608 homepage visual baseline */
/* V1.6: V1.4 comfort + restrained enterprise control-plane details */
body.home-v16 {
  --control-950: #07101d;
  --control-900: #0b1524;
  --control-850: #101d30;
  --control-800: #17263a;
  --control-line: rgba(255, 255, 255, 0.12);
  --control-text: #f8fafc;
  --control-muted: #a8b5c7;
  --enterprise-blue: #2563eb;
  --enterprise-blue-soft: rgba(37, 99, 235, 0.12);
  --light-band: #f6f9fc;
  --light-card: #ffffff;
  --light-line: #dbe4ef;
}

body.home-v16 {
  background:
    radial-gradient(circle at 15% -6%, rgba(37, 99, 235, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0, #f8fafc 420px, #f7f9fc 100%);
}

body.home-v16 .site-header {
  min-height: 74px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(7, 16, 29, 0.96), rgba(13, 27, 45, 0.96));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.home-v16 .brand-logo {
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

body.home-v16 .brand strong {
  color: #f8fafc;
}

body.home-v16 .brand small {
  color: #9fb0c4;
}

body.home-v16 .site-nav a {
  border-radius: 8px;
  color: #c3cedd;
}

body.home-v16 .site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.home-v16 .site-nav a.active {
  background: rgba(37, 99, 235, 0.22);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.18);
}

body.home-v16 .home-hero {
  border-color: rgba(15, 23, 42, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 84% 12%, rgba(37, 99, 235, 0.14), transparent 30%),
    linear-gradient(135deg, #0b1524 0%, #101d30 56%, #162942 100%);
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.14);
}

body.home-v16 .home-hero::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.035), transparent);
  mask-image: linear-gradient(120deg, rgba(0,0,0,0.7), rgba(0,0,0,0.08));
}

body.home-v16 .home-hero::after {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.11), transparent 68%);
  opacity: 0.72;
}

body.home-v16 .hero-copy .eyebrow {
  color: #93c5fd;
}

body.home-v16 .hero-copy h1,
body.home-v16 .hero-copy h1 span {
  color: var(--control-text);
}

body.home-v16 .hero-copy > p:not(.eyebrow) {
  color: #cad6e5;
}

body.home-v16 .hero-search {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

body.home-v16 .hero-search button {
  background: var(--enterprise-blue);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

body.home-v16 .hero-search button:hover {
  transform: translateY(-1px);
  background: #2f6fed;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.26);
}

body.home-v16 .hero-query-row a {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  color: #dbeafe;
  box-shadow: none;
}

body.home-v16 .hero-query-row a:hover {
  border-color: rgba(147, 197, 253, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body.home-v16 .hero-dimensions-panel {
  gap: 0;
  padding: 0;
  border-color: var(--control-line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(28, 43, 62, 0.92), rgba(17, 31, 50, 0.92));
  backdrop-filter: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

body.home-v16 .panel-heading {
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--control-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

body.home-v16 .panel-heading span {
  color: #93a4b8;
  font-size: 11px;
  letter-spacing: 0;
}

body.home-v16 .panel-heading strong {
  color: #f8fafc;
  font-size: 22px;
}

body.home-v16 .dimension-list {
  border: 0;
}

body.home-v16 .dimension-list div {
  grid-template-columns: 78px minmax(0, 1fr);
  margin: 0 26px;
  padding: 15px 0;
  border-bottom-color: rgba(255, 255, 255, 0.095);
}

body.home-v16 .dimension-list span {
  color: #93a4b8;
  font-size: 11px;
  font-weight: 680;
}

body.home-v16 .dimension-list strong {
  color: #eef6ff;
  font-size: 13px;
  font-weight: 780;
}

body.home-v16 .infra-topology {
  margin: 24px 26px 26px;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}

body.home-v16 .infra-topology::before,
body.home-v16 .infra-topology::after {
  border-color: rgba(147, 197, 253, 0.22);
}

body.home-v16 .infra-topology i {
  border-color: rgba(147, 197, 253, 0.68);
  background: #dbeafe;
  box-shadow: 0 0 0 5px rgba(147, 197, 253, 0.1);
}

body.home-v16 .band {
  border-bottom-color: rgba(226, 232, 240, 0.76);
}

body.home-v16 .topic-band,
body.home-v16 .faq-band,
body.home-v16 .recent-band {
  position: relative;
}

body.home-v16 .topic-band::before,
body.home-v16 .faq-band::before,
body.home-v16 .recent-band::before {
  content: "";
  position: absolute;
  inset: 0 calc(clamp(18px, 4vw, 56px) * -1);
  z-index: -1;
  background: #f6f9fc;
}

body.home-v16 .faq-band::before {
  background: #f3f5f8;
}

body.home-v16 .recent-band::before {
  background: #f7f9fc;
}

body.home-v16 .section-head h2 {
  font-weight: 790;
}

body.home-v16 .topic-card,
body.home-v16 .path-step,
body.home-v16 .category-strip a,
body.home-v16 .type-tile,
body.home-v16 .faq-row,
body.home-v16 .timeline-list a {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035);
}

body.home-v16 .topic-card:hover,
body.home-v16 .path-step:hover,
body.home-v16 .category-strip a:hover,
body.home-v16 .type-tile:hover,
body.home-v16 .faq-row:hover,
body.home-v16 .timeline-list a:hover,
body.home-v16 .solution-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

body.home-v16 .topic-card {
  border-radius: 18px;
}

body.home-v16 .topic-card::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.3);
}

body.home-v16 .faq-row {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
}

body.home-v16 .solution-band {
  position: relative;
}

body.home-v16 .solution-band::before {
  content: "";
  position: absolute;
  inset: 0 calc(clamp(18px, 4vw, 56px) * -1);
  z-index: -1;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

body.home-v16 .solution-grid a {
  position: relative;
  min-height: 166px;
  justify-content: flex-start;
  gap: 16px;
  border-color: #dce5f0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035);
  overflow: hidden;
}

body.home-v16 .solution-grid a::before {
  color: #64748b;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

body.home-v16 .solution-grid a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.32), rgba(148, 163, 184, 0.12), transparent);
}

body.home-v16 .solution-grid a:nth-child(1)::before { content: "FINANCE"; }
body.home-v16 .solution-grid a:nth-child(2)::before { content: "MANUFACTURING"; }
body.home-v16 .solution-grid a:nth-child(3)::before { content: "MEDICAL"; }
body.home-v16 .solution-grid a:nth-child(4)::before { content: "EDUCATION"; }

body.home-v16 .solution-grid strong {
  margin-top: 10px;
}

body.home-v16 .solution-grid span {
  color: #66758a;
}

body.home-v16 .cta-band {
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.12), transparent 32%),
    linear-gradient(135deg, #0b1524, #13243a 62%, #162c46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(255,255,255,0.08);
}

body.home-v16 .cta-band .eyebrow {
  color: #93c5fd;
}

body.home-v16 .cta-band h2 {
  color: #f8fafc;
}

body.home-v16 .cta-band p {
  color: #cbd5e1;
}

body.home-v16 .cta-actions a {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  color: #e2e8f0;
  box-shadow: none;
}

body.home-v16 .cta-actions a:hover {
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: none;
}

body.home-v16 .cta-actions .cta-primary {
  border-color: var(--enterprise-blue);
  background: var(--enterprise-blue);
  color: #ffffff;
}

body.home-v16 .site-footer {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #0a1220, #07101d);
  color: #9aa8bb;
}

body.home-v16 .site-footer strong {
  display: block;
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 17px;
}

body.home-v16 .site-footer span {
  color: #aab7c8;
}

body.home-v16 .footer-links a {
  color: #cbd5e1;
}

body.home-v16 .footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 820px) {
  body.home-v16 .topic-band::before,
  body.home-v16 .faq-band::before,
  body.home-v16 .recent-band::before,
  body.home-v16 .solution-band::before {
    left: calc(clamp(18px, 4vw, 56px) * -1);
    right: calc(clamp(18px, 4vw, 56px) * -1);
  }

  body.home-v16 .hero-dimensions-panel {
    border-radius: 18px;
  }
}

/* V1.7: Header keeps the first-screen dark platform feel, then turns into a light enterprise nav while scrolling. */
body.home-v17 .site-header {
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

body.home-v17 .brand strong,
body.home-v17 .brand small,
body.home-v17 .site-nav a {
  transition:
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

body.home-v17.header-scrolled .site-header {
  border-bottom-color: rgba(203, 213, 225, 0.74);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  backdrop-filter: saturate(160%) blur(14px);
}

body.home-v17.header-scrolled .brand-logo {
  box-shadow:
    0 0 0 1px rgba(226, 232, 240, 0.92),
    0 8px 18px rgba(15, 23, 42, 0.06);
}

body.home-v17.header-scrolled .brand strong {
  color: #111827;
}

body.home-v17.header-scrolled .brand small {
  color: #64748b;
}

body.home-v17.header-scrolled .site-nav a {
  color: #475569;
}

body.home-v17.header-scrolled .site-nav a:hover {
  background: #eef4ff;
  color: #1d4ed8;
}

body.home-v17.header-scrolled .site-nav a.active {
  background: #e7efff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
}

@media (max-width: 820px) {
  body.home-v17.header-scrolled .site-header {
    background: rgba(255, 255, 255, 0.98);
  }
}

/* V1.8: Restore the CTA to the calmer V1.4 light gradient treatment. */
body.home-v18 .cta-band {
  border: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #eef6ff 52%, #f8fafc);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(226, 232, 240, 0.95);
}

body.home-v18 .cta-band .eyebrow {
  color: var(--primary);
}

body.home-v18 .cta-band h2 {
  color: #0f172a;
}

body.home-v18 .cta-band p {
  color: var(--muted);
}

body.home-v18 .cta-actions a {
  border-color: #dbe4ef;
  background: rgba(255, 255, 255, 0.8);
  color: #334155;
  box-shadow: var(--shadow-xs);
}

body.home-v18 .cta-actions a:hover {
  border-color: rgba(37, 99, 235, 0.32);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

body.home-v18 .cta-actions .cta-primary {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

/* V1.9: Lift the hero decision panel from the dark field without letting it compete with the main copy. */
body.home-v19 .hero-dimensions-panel {
  position: relative;
  isolation: isolate;
  align-self: center;
  border-color: rgba(184, 205, 231, 0.26);
  background:
    radial-gradient(circle at 78% 0%, rgba(96, 165, 250, 0.14), transparent 31%),
    linear-gradient(180deg, rgba(35, 52, 74, 0.98) 0%, rgba(20, 38, 61, 0.98) 56%, rgba(14, 29, 48, 0.98) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 18px 38px rgba(11, 21, 36, 0.18);
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.home-v19 .hero-dimensions-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(147, 197, 253, 0.045));
  pointer-events: none;
}

body.home-v19 .hero-dimensions-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.55), transparent);
  opacity: 0.72;
  pointer-events: none;
}

body.home-v19 .hero-dimensions-panel > * {
  position: relative;
  z-index: 1;
}

body.home-v19 .hero-dimensions-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 219, 254, 0.34);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.045) inset,
    0 20px 44px rgba(11, 21, 36, 0.2);
}

body.home-v19 .panel-heading {
  padding: 25px 28px 21px;
  border-bottom-color: rgba(203, 213, 225, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026));
}

body.home-v19 .panel-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9bbcf;
  font-size: 11px;
  font-weight: 700;
}

body.home-v19 .panel-heading span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #93c5fd;
  box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.09);
}

body.home-v19 .panel-heading strong {
  margin-top: 8px;
  color: #f8fbff;
  font-size: 23px;
  font-weight: 760;
}

body.home-v19 .dimension-list {
  padding: 3px 0;
}

body.home-v19 .dimension-list div {
  position: relative;
  grid-template-columns: 76px minmax(0, 1fr);
  margin: 0;
  padding: 16px 28px;
  border-bottom-color: rgba(203, 213, 225, 0.12);
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

body.home-v19 .dimension-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: #93c5fd;
  opacity: 0;
  transition: opacity 160ms ease;
}

body.home-v19 .dimension-list div:hover {
  background: rgba(255, 255, 255, 0.035);
  border-bottom-color: rgba(203, 213, 225, 0.18);
}

body.home-v19 .dimension-list div:hover::before {
  opacity: 0.72;
}

body.home-v19 .dimension-list span {
  color: #94a8be;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.home-v19 .dimension-list strong {
  color: #f3f8ff;
  font-size: 13.5px;
  font-weight: 760;
}

body.home-v19 .infra-topology {
  margin: 23px 28px 28px;
  border-color: rgba(203, 213, 225, 0.16);
  background:
    radial-gradient(circle at 52% 48%, rgba(96, 165, 250, 0.1), transparent 43%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

body.home-v19 .infra-topology::before,
body.home-v19 .infra-topology::after {
  border-color: rgba(147, 197, 253, 0.28);
}

body.home-v19 .infra-topology i {
  border-color: rgba(191, 219, 254, 0.76);
  background: #e8f2ff;
  box-shadow:
    0 0 0 5px rgba(147, 197, 253, 0.11),
    0 6px 16px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
  body.home-v19 .infra-topology i {
    animation: v19-node-pulse 5.8s ease-in-out infinite;
  }

  body.home-v19 .infra-topology i:nth-child(2) { animation-delay: 0.5s; }
  body.home-v19 .infra-topology i:nth-child(3) { animation-delay: 1s; }
  body.home-v19 .infra-topology i:nth-child(4) { animation-delay: 1.5s; }
  body.home-v19 .infra-topology i:nth-child(5) { animation-delay: 2s; }
  body.home-v19 .infra-topology i:nth-child(6) { animation-delay: 2.5s; }
}

@keyframes v19-node-pulse {
  0%, 100% {
    opacity: 0.82;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 640px) {
  body.home-v19 .panel-heading {
    padding: 22px 22px 18px;
  }

  body.home-v19 .dimension-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 22px;
  }

  body.home-v19 .infra-topology {
    margin: 20px 22px 22px;
  }
}

/* V1.9 height baseline: restore the hero rhythm to the V1.4 height system. */
body.home-v19 .home-hero {
  min-height: 580px;
  gap: clamp(30px, 5vw, 72px);
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

body.home-v19 .hero-search {
  margin-top: clamp(24px, 3vw, 32px);
  padding: 7px;
}

body.home-v19 .hero-search input,
body.home-v19 .hero-search button {
  min-height: 50px;
}

body.home-v19 .hero-query-row {
  margin-top: 16px;
}

body.home-v19 .hero-query-row a {
  min-height: 32px;
}

body.home-v19 .hero-copy > p:not(.eyebrow) {
  line-height: 1.68;
}

body.home-v19 .panel-heading {
  padding: 19px 24px 16px;
}

body.home-v19 .panel-heading strong {
  margin-top: 5px;
  font-size: 21px;
}

body.home-v19 .dimension-list {
  padding: 0;
}

body.home-v19 .dimension-list div {
  padding: 11px 24px;
}

body.home-v19 .dimension-list div::before {
  top: 12px;
  bottom: 12px;
}

body.home-v19 .infra-topology {
  min-height: 108px;
  margin: 16px 24px 20px;
}

@media (max-width: 640px) {
  body.home-v19 .home-hero {
    min-height: auto;
    padding: 44px 22px;
  }
}

@media (max-width: 640px) {
  body.home-v19 .panel-heading {
    padding: 20px 22px 16px;
  }

  body.home-v19 .dimension-list div {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 22px;
  }

  body.home-v19 .infra-topology {
    min-height: 92px;
    margin: 14px 22px 18px;
  }
}

/* V1.11: FAQ and industry solutions share a calm full-width band treatment. */
body.home-v110 .faq-band {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin-left: calc(clamp(18px, 4vw, 56px) * -1);
  margin-right: calc(clamp(18px, 4vw, 56px) * -1);
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(226, 232, 240, 0.76);
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
  background: #f3f5f8;
}

body.home-v110 .faq-band::before {
  content: none;
}

body.home-v110 .faq-band .section-head,
body.home-v110 .faq-band .faq-list {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

body.home-v110 .solution-band {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin-left: calc(clamp(18px, 4vw, 56px) * -1);
  margin-right: calc(clamp(18px, 4vw, 56px) * -1);
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(226, 232, 240, 0.76);
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
  background: #f3f5f8;
}

body.home-v110 .solution-band::before {
  content: none;
}

body.home-v110 .solution-band .section-head,
body.home-v110 .solution-band .solution-grid {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

body.home-v110 .solution-band .section-head {
  margin-bottom: clamp(28px, 3.2vw, 38px);
}

body.home-v110 .solution-band .section-head h2 {
  color: #111827;
}

body.home-v110 .solution-band .section-head p {
  max-width: 620px;
  color: #64748b;
}

body.home-v110 .solution-grid {
  gap: 18px;
}

body.home-v110 .solution-grid a {
  position: relative;
  min-height: 176px;
  padding: 25px 24px 23px;
  border-color: #d7e1ec;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.035),
    0 14px 32px rgba(15, 23, 42, 0.045);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

body.home-v110 .solution-grid a::before {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 20px;
  margin-bottom: 12px;
  padding: 0 0 9px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.22);
  color: #526277;
  font-size: 10.5px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

body.home-v110 .solution-grid a::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 55px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(148, 163, 184, 0.1), transparent);
}

body.home-v110 .solution-grid strong {
  margin-top: 4px;
  color: #111827;
  font-size: 17px;
  line-height: 1.38;
  font-weight: 790;
}

body.home-v110 .solution-grid span {
  max-width: 95%;
  color: #5f6f83;
  font-size: 14px;
  line-height: 1.72;
}

body.home-v110 .solution-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 18px 38px rgba(15, 23, 42, 0.065);
}

body.home-v110 .solution-grid a:hover::before {
  border-bottom-color: rgba(37, 99, 235, 0.38);
  color: #334155;
}

@media (max-width: 820px) {
  body.home-v110 .solution-grid a {
    min-height: 156px;
  }
}

@media (max-width: 640px) {
  body.home-v110 .solution-band .section-head {
    margin-bottom: 22px;
  }

  body.home-v110 .solution-grid {
    gap: 14px;
  }

  body.home-v110 .solution-grid a {
    min-height: 196px;
    padding: 22px;
  }

  body.home-v110 .solution-grid a::after {
    left: 22px;
    right: 22px;
    top: 52px;
  }
}

/* ops-sync: canonical footer */
.site-footer {
  display: block;
  margin-top: 48px;
}
.site-footer > div.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  gap: 24px;
}
.site-footer .footer-brand {
  max-width: 760px;
}
.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.site-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #dbeafe;
  font-weight: 680;
  white-space: nowrap;
}
.site-footer .footer-links a:hover {
  border-color: rgba(147, 197, 253, 0.38);
  background: rgba(37, 99, 235, 0.16);
  color: #ffffff;
}
.site-footer .footer-legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #7f8da1;
  font-size: 12px;
  line-height: 1.65;
}
@media (max-width: 820px) {
  .site-footer > div.footer-main {
    flex-direction: column;
  }
  .site-footer .footer-links {
    justify-content: flex-start;
  }
  .site-footer .footer-legal {
    margin-top: 22px;
  }
}



/* ops-sync: homepage conflict fixes */
body.home-v16 .hero-copy,
body.home-v16 .band {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
body.home-v16 .hero-copy {
  padding: 0;
}
body.home-v16 .band {
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
}
body.home-v16 .band:last-of-type {
  border-bottom: 0;
}
body.home-v16 .hero-panel.hero-dimensions-panel {
  grid-template-columns: minmax(0, 1fr);
}
body.home-v16 .hero-panel.hero-dimensions-panel > * {
  min-width: 0;
}
body.home-v16 .hero-panel.hero-dimensions-panel div {
  border-right: 0;
}
