/* Public website only. Keep storefront templates and customer/admin consoles isolated. */
body.official-site {
  --web-blue: #2458e8;
  --web-blue-hover: #1742c4;
  --web-yellow: #ffd54d;
  --web-text: #202a3b;
  --web-muted: #647086;
  --web-line: #e2e7f0;
  --web-pale: #f3f7ff;
  --web-gutter: max(28px, calc((100% - 1200px) / 2));
  --ink: var(--web-text);
  --teal: var(--web-blue);
  --teal-deep: var(--web-blue);
  --catalog-text: var(--web-text);
  --catalog-muted: var(--web-muted);
  --catalog-line: var(--web-line);
  --agency-ink: var(--web-text);
  --agency-blue: var(--web-blue);
  --agency-muted: var(--web-muted);
  --agency-line: var(--web-line);
  color-scheme: light;
  color: var(--web-text);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: clip;
}
.official-site *, .official-site *::before, .official-site *::after { box-sizing: border-box; letter-spacing: 0; }
.official-site [hidden] { display: none !important; }
.official-site main { background: #fff; }
.official-site h1, .official-site h2, .official-site h3 { color: var(--web-text); text-wrap: balance; }
.official-site h1 { font-size: 46px; line-height: 1.3; }
.official-site h2 { font-size: 34px; line-height: 1.45; }
.official-site em { font-style: normal; color: var(--web-blue); }
.official-site p { overflow-wrap: anywhere; }
.official-site svg { width: 20px; height: 20px; flex-shrink: 0; }
.official-site a, .official-site button { -webkit-tap-highlight-color: transparent; }
.official-site :is(a,button,input,summary,select):focus-visible { outline: 3px solid #809bff; outline-offset: 4px; }
.official-site :is(section[id],article[id],div[id]) { scroll-margin-top: 150px; }
.web-skip { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; background: #fff; color: var(--web-blue); }
.web-skip:focus { top: 8px; }

/* A single header rhythm across every public entry and its detail pages. */
.official-site .site-header {
  position: sticky; top: 0; z-index: 50; height: 78px; width: 100%;
  padding: 0 max(24px, calc((100% - 1360px) / 2)); gap: 22px;
  background: #fffffffa; border-bottom: 1px solid var(--web-line); color: var(--web-text);
  box-shadow: none; transition: box-shadow .2s;
}
.official-site .site-header.has-scrolled { box-shadow: 0 6px 22px #27375d0a; }
.official-site .site-header .brand { flex: 0 0 130px; }
.official-site .site-header .brand-logo { width: 130px; max-width: 130px; height: 54px; }
.official-site .site-header .main-nav { display: flex; align-items: center; justify-content: center; flex: 1; gap: 22px; margin: 0; }
.official-site .site-header .main-nav a { position: relative; min-height: 78px; padding: 0; border: 0; font-size: 13px; white-space: nowrap; color: #515c70; }
.official-site .site-header .main-nav a:is(:hover,.is-current) { color: var(--web-blue); }
.official-site .site-header .main-nav a.is-current::after { content: ""; position: absolute; bottom: 16px; left: 0; width: 18px; height: 3px; border-radius: 2px; background: var(--web-yellow); }
.official-site .header-actions { flex-shrink: 0; margin: 0; }
.official-site .header-cta { display: inline-flex; justify-content: center; gap: 8px; min-height: 40px; border-radius: 6px; padding: 8px 16px; background: var(--web-blue); color: #fff; font-size: 13px; box-shadow: none; }
.official-site .header-cta svg { width: 15px; height: 15px; }
.official-site .header-cta:hover { background: var(--web-blue-hover); }
.official-site .site-nav-toggle { display: none; }
.official-site .site-footer { padding: 52px var(--web-gutter) 20px; background: #f7f9fc; border-top: 1px solid var(--web-line); color: var(--web-muted); }
.official-site .site-footer::before { display: none; }
.official-site .site-footer-main { gap: 40px; }
.official-site .site-footer .brand-logo { width: 136px; height: 52px; object-fit: contain; }
.official-site .site-footer h2 { font-size: 14px; }
.official-site .site-footer-nav a, .official-site .site-footer-contact p, .official-site .site-footer-brand p { color: var(--web-muted); font-size: 13px; }
.official-site .site-footer-nav a:hover { color: var(--web-blue); }
.official-site .site-footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--web-line); }

.web-eyebrow { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--web-blue); font-size: 12px; font-weight: 650; line-height: 1.6; margin: 0 0 18px; }
.web-dot { display: inline-block; width: 7px; height: 7px; border-radius: 2px; background: var(--web-blue); }
.web-tag { padding: 4px 10px; color: #766019; border: 1px solid #efdd9e; border-radius: 4px; background: #fff9e6; font-size: 11px; font-weight: 400; }
.web-actions { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 12px 22px; margin-top: 26px; }
.web-button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 48px; padding: 11px 23px; color: #fff; background: var(--web-blue); border: 1px solid var(--web-blue); border-radius: 6px; font-size: 14px; font-weight: 600; transition: background .18s, transform .18s; }
.web-button:hover { background: var(--web-blue-hover); transform: translateY(-2px); color: #fff; }
.web-button svg { width: 17px; height: 17px; }
.web-button-secondary { background: #fff; border-color: #d2dbea; color: var(--web-text); }
.web-button-secondary:hover { background: var(--web-pale); border-color: #95acf1; color: var(--web-blue); }
.web-link { display: inline-flex; align-items: center; gap: 12px; color: var(--web-blue); font-size: 14px; font-weight: 600; }
.web-link svg { width: 17px; height: 17px; transition: transform .18s; }
.web-link:hover svg { transform: translateX(3px); }
.web-hero { position: relative; overflow: hidden; background: #f4f7ff; }
.web-hero-copy { position: relative; z-index: 2; padding: 42px 24px 0; margin: 0 auto; max-width: 1000px; text-align: center; }
.web-hero-copy .web-eyebrow, .web-hero .web-actions { justify-content: center; }
.web-hero h1 { margin: 0 0 8px; font-size: 62px; font-weight: 800; line-height: 1.35; }
.web-hero h1 em { margin-left: 16px; }
.web-hero-value { display: flex; justify-content: center; flex-wrap: wrap; gap: 0 12px; margin: 0 0 10px; color: #48566f; font-size: 21px; font-weight: 500; }
.web-hero-summary { max-width: 700px; margin: 0 auto; color: var(--web-muted); font-size: 14px; line-height: 1.8; }
.web-hero .web-actions { margin-top: 22px; }
.web-hero-stage { position: relative; width: 100%; height: min(410px, 45svh); min-height: 310px; margin-top: 20px; }
.web-hero-stage #commerce-scene { position: absolute; inset: 0 0 44px; width: 100%; height: calc(100% - 44px); opacity: 0; }
.web-hero-stage.is-ready #commerce-scene { opacity: 1; }
.web-scene-fallback { display: block; width: auto; max-width: 86%; height: calc(100% - 48px); object-fit: contain; margin: 0 auto; border: 1px solid #dbe3f3; box-shadow: 0 12px 24px #244ba712; }
.web-hero-stage.is-ready .web-scene-fallback { visibility: hidden; }
.web-stage-meta { position: absolute; bottom: 9px; left: 0; right: 0; display: flex; align-items: center; justify-content: center; gap: 24px; color: #708098; font-size: 11px; }
.web-stage-meta > span, .web-motion { display: inline-flex; gap: 6px; align-items: center; }
.web-stage-meta svg { width: 14px; height: 14px; }
.web-motion { border: 0; background: transparent; color: #526682; padding: 8px; font-size: 11px; }
.web-motion:disabled { cursor: default; }
.web-benefit-band { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); padding: 22px var(--web-gutter); background: #fff; border-bottom: 1px solid var(--web-line); gap: 18px; }
.web-benefit-band span { display: flex; align-items: center; justify-content: center; gap: 10px; color: #4d5c72; font-size: 13px; }
.web-benefit-band svg { color: var(--web-blue); width: 18px; height: 18px; }
.official-site .web-section { max-width: none; margin: 0; padding: 76px var(--web-gutter); background: #fff; }
.web-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 32px; }
.web-heading h2 { margin: 0; font-size: 34px; }
.web-heading .web-eyebrow { margin-bottom: 12px; }
.web-heading > p, .web-heading > div > p:not(.web-eyebrow) { max-width: 440px; color: var(--web-muted); font-size: 14px; line-height: 1.9; margin-bottom: 8px; }
.web-feature-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0 30px; border-top: 1px solid var(--web-line); }
.web-feature { position: relative; display: block; min-width: 0; padding: 28px 0; border-bottom: 1px solid var(--web-line); }
.web-feature > svg { width: 27px; height: 27px; color: var(--web-blue); margin-bottom: 22px; }
.web-feature-number { float: right; font-size: 12px; color: #919cac; }
.web-feature h3 { font-size: 19px; margin: 0 0 10px; }
.web-feature p { color: var(--web-muted); font-size: 14px; margin: 0 0 20px; max-width: 310px; }
.web-feature .web-link { font-size: 12px; }
.web-feature:hover { border-bottom-color: var(--web-blue); }
.official-site .web-showcase-section { background: var(--web-pale); }
.web-tabs { display: flex; justify-content: center; gap: 8px; margin: 0 0 24px; }
.web-tabs button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; padding: 10px 24px; border: 1px solid transparent; border-radius: 6px; color: #62718b; font-size: 14px; background: transparent; }
.web-tabs button[aria-selected="true"] { background: #fff; border-color: #dce5f6; color: var(--web-blue); box-shadow: 0 3px 7px #294c9010; }
.web-tabs svg { width: 18px; height: 18px; }
.web-showcase-panel { max-width: 1080px; margin: auto; }
.web-screenshot { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 1px solid #dce4f2; border-radius: 8px; background: #fff; box-shadow: 0 18px 44px #243f7810; }
.web-screenshot img { display: block; width: 100%; height: auto; aspect-ratio: 1.6; object-fit: contain; }
.web-screenshot > span { position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; color: var(--web-blue); border: 1px solid #d4dff5; border-radius: 4px; background: #fff; font-size: 12px; }
.web-screenshot > span svg { width: 14px; height: 14px; }
.web-showcase-panel > p { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; color: #526178; font-size: 13px; }
.web-showcase-panel small { color: #7e8797; font-size: 11px; }
.web-image-dialog { position: fixed; max-width: min(1440px,96vw); width: fit-content; max-height: 93svh; padding: 36px 16px 12px; margin: auto; border: 1px solid #d7e0ef; border-radius: 8px; background: #fff; color: var(--web-muted); box-shadow: 0 20px 80px #15284c40; }
.web-image-dialog::backdrop { background: #24395d91; }
.web-image-dialog img { display: block; max-width: 100%; max-height: calc(90svh - 90px); width: auto; height: auto; object-fit: contain; margin: auto; }
.web-image-dialog p { text-align: center; font-size: 12px; margin: 12px 24px 0; }
.web-image-close { position: absolute; right: 7px; top: 5px; display: grid; place-items: center; width: 32px; height: 30px; border: 0; border-radius: 4px; background: #eef3fc; color: #3d526e; }
.official-site .web-connect { background: #f3f7ff; }
.web-connection-flow { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; list-style: none; padding: 26px 0 0; margin: 34px 0 0; border-top: 1px solid #d9e3f4; }
.web-connection-flow li { display: grid; grid-template-columns: 32px 1fr; gap: 3px 12px; padding: 5px 14px; border-right: 1px solid #d9e3f4; }
.web-connection-flow li:last-child { border: 0; }
.web-connection-flow svg { grid-row: span 2; width: 25px; height: 25px; align-self: center; color: var(--web-blue); }
.web-connection-flow b { font-size: 15px; }
.web-connection-flow span { font-size: 12px; color: var(--web-muted); }
.official-site .home-agency { background: #fff; border: 0; }
.official-site .home-agency-plans { margin-top: 0; gap: 24px; }
.official-site .home-agency-plan { border: 1px solid var(--web-line); border-radius: 8px; box-shadow: none; padding: 28px; background: #fff; }
.official-site .home-agency-plan[data-agency-plan="advanced"] { background: #fffdf5; border-top: 3px solid var(--web-yellow); }
.official-site .home-agency-price strong { color: var(--web-text); }
.official-site .home-agency-plan-heading h3 { font-size: 22px; }
.official-site .home-agency-discount { color: var(--web-blue); }
.official-site .home-agency-join { color: var(--web-blue); }
.official-site .home-agency-note { color: var(--web-muted); font-size: 12px; }
.official-site .web-start { background: #fafbfd; border-top: 1px solid var(--web-line); }
.web-start-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 36px; list-style: none; margin: 0; padding: 0; }
.web-start-steps li { padding-top: 24px; border-top: 1px solid #d5dfef; }
.web-start-steps li > span { display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 20px; background: var(--web-yellow); border-radius: 6px; color: #544512; font-size: 13px; font-weight: 700; }
.web-start-steps h3 { font-size: 19px; margin-bottom: 8px; }
.web-start-steps p { color: var(--web-muted); font-size: 14px; }
.web-start-steps a { display: inline-flex; align-items: center; gap: 10px; color: var(--web-blue); font-size: 13px; }
.web-start-steps a svg { width: 16px; height: 16px; }
.web-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 62px var(--web-gutter); background: #fff5cf; }
.web-cta .web-eyebrow { color: #7a641b; }
.web-cta h2 { margin: 0; font-size: 34px; }
.web-cta > div:last-child { display: flex; align-items: center; gap: 24px; }

/* Interior pages use short, consistent introductions and meaningful next actions. */
.web-page-intro, .official-site :is(.version-hero,.pricing-hero,.edition-detail-hero,.contact-hero,.agency-home-hero) {
  position: relative; display: block; min-height: 0; height: auto; padding: 62px var(--web-gutter) 50px;
  background: #f3f7ff; background-image: none; border-bottom: 1px solid #e1e8f4; overflow: visible; text-align: center;
}
.official-site :is(.version-hero,.pricing-hero,.edition-detail-hero,.contact-hero,.agency-home-hero)::after,
.official-site :is(.version-hero,.pricing-hero,.edition-detail-hero)::before { display: none; }
.official-site :is(.version-hero,.pricing-hero,.edition-detail-hero,.contact-hero,.agency-home-hero) h1,
.official-site .web-page-intro h1 { font-size: 44px; margin: 0 0 14px; line-height: 1.35; }
.web-page-intro .web-eyebrow, .official-site :is(.version-hero,.pricing-hero,.edition-detail-hero,.contact-hero) .web-eyebrow { justify-content: center; }
.official-site :is(.version-hero,.pricing-hero-copy,.contact-hero-copy) > p:not(.web-eyebrow),
.web-page-intro > p:not(.web-eyebrow), .official-site .edition-detail-summary { max-width: 750px; margin: 0 auto; background: transparent; padding: 0; font-size: 15px; color: var(--web-muted); }
.official-site .version-hero .catalog-text-link { margin-top: 18px; }
.web-page-intro .web-actions { justify-content: center; }
.web-page-intro .web-tag { margin-left: 4px; }
.web-subnav { display: flex; justify-content: center; gap: 30px; padding: 13px 24px; border-bottom: 1px solid var(--web-line); flex-wrap: wrap; font-size: 13px; background: #fff; }
.web-subnav a { display: inline-flex; align-items: center; gap: 8px; min-height: 30px; color: #52617c; }
.web-subnav a:hover { color: var(--web-blue); }
.web-product-capabilities { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 44px; }
.web-product-capability { position: relative; padding: 30px 0; border-bottom: 1px solid var(--web-line); }
.web-product-capability > svg { color: var(--web-blue); width: 28px; height: 28px; margin-bottom: 20px; }
.web-product-capability h3 { font-size: 23px; margin: 0 0 8px; }
.web-product-capability p { color: var(--web-muted); font-size: 14px; margin-bottom: 18px; }
.web-product-capability ul { display: grid; gap: 9px; padding: 0; list-style: none; font-size: 13px; }
.web-product-capability li { display: flex; align-items: baseline; gap: 12px; }
.web-product-capability li::before { content: ""; display: inline-block; width: 5px; height: 5px; background: #dfb423; flex-shrink: 0; }
.web-product-capability .web-link { font-size: 13px; margin-top: 12px; }
.web-fit-strip { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding: 26px 0; border-top: 1px solid var(--web-line); border-bottom: 1px solid var(--web-line); color: var(--web-muted); font-size: 13px; }
.web-fit-strip strong { color: var(--web-text); font-size: 16px; }
.official-site .edition-list-section { padding: 48px var(--web-gutter) 64px; }
.official-site .edition-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.official-site .edition-row { display: flex; flex-direction: column; align-items: stretch; min-width: 0; padding: 26px; border: 1px solid var(--web-line); border-radius: 8px; background: #fff; gap: 8px; color: var(--web-text); transition: border-color .2s,transform .2s; }
.official-site .edition-row:hover { padding: 26px; border-color: #8ba6f2; transform: translateY(-3px); }
.official-site .edition-row:nth-child(2) { border-top: 4px solid var(--web-blue); padding-top: 23px; }
.official-site .edition-row:nth-child(3) { border-top: 4px solid var(--web-yellow); padding-top: 23px; }
.official-site .edition-row > strong { font-size: 26px; }
.official-site .edition-code { color: var(--web-blue); font-size: 12px; }
.official-site .edition-en { color: #8690a0; font-size: 11px; margin: 0 0 12px; }
.official-site .edition-summary { font-size: 14px; color: var(--web-muted); }
.official-site .edition-summary-copy { display: block; min-height: 72px; }
.official-site .edition-row .edition-public-price { margin-top: 24px; }
.official-site .edition-row .edition-public-price strong { font-size: 27px; color: var(--web-text); }
.official-site .edition-public-rights { grid-template-columns: 1fr; margin: 24px 0; padding-top: 20px; border-top: 1px solid var(--web-line); gap: 10px; }
.official-site .edition-row .edition-link { display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid var(--web-line); padding-top: 16px; margin-top: auto; color: var(--web-blue); font-size: 14px; }
.official-site .edition-detail-body { padding: 48px var(--web-gutter); gap: 50px; }
.official-site .detail-intro h2 { font-size: 26px; }
.official-site .edition-detail-hero .eyebrow { justify-content: center; }
.official-site .pricing-plan-grid { gap: 24px; }
.official-site .pricing-plan { padding: 26px; border: 1px solid var(--web-line); border-radius: 8px; background: #fff; box-shadow: none; }
.official-site .pricing-plan[data-edition="professional"] { border-top: 4px solid var(--web-blue); padding-top: 23px; background: #f9fbff; }
.official-site .pricing-plan[data-edition="private-deployment"] { border-top: 4px solid var(--web-yellow); padding-top: 23px; }
.official-site .pricing-plan h3 { color: var(--web-text); font-size: 25px; }
.official-site .pricing-plan-price .edition-public-price strong { color: var(--web-text); font-size: 30px; }
.official-site .pricing-plan > a { display: flex; align-items: center; justify-content: space-between; min-height: 44px; padding: 10px 14px; margin-top: auto; border: 1px solid #d6e2fa; border-radius: 5px; color: var(--web-blue); background: #f3f7ff; }
.official-site .pricing-plan[data-edition="professional"] > a { background: var(--web-blue); color: #fff; border-color: var(--web-blue); }
.official-site .pricing-plan dl { font-size: 13px; }
.official-site .pricing-plan > p { color: var(--web-muted); font-size: 13px; }
.official-site .catalog-nav { position: sticky; top: 78px; z-index: 20; padding-block: 7px; background: #fffffffa; border-color: var(--web-line); }
.official-site .catalog-nav a { color: #61708a; font-size: 13px; }
.official-site .catalog-nav a:hover { color: var(--web-blue); border-color: var(--web-yellow); }
.official-site .catalog-section, .official-site .pricing-plans { padding: 44px var(--web-gutter); }
.official-site .catalog-section:nth-of-type(even) { background: #f8faff; }
.official-site .catalog-heading h2, .official-site .pricing-section-heading h2 { font-size: 27px; }
.official-site .catalog-kicker, .official-site .catalog-text-link, .official-site .plugin-links a { color: var(--web-blue); }
.official-site .catalog-status.is-included { background: #edf4ff; color: #2758b5; }
.official-site .catalog-status.is-extra { background: #fff7dc; color: #876610; }
.official-site .catalog-table { border-color: var(--web-line); }
.official-site .catalog-table thead th { background: #eff4ff; color: var(--web-text); }
.official-site .catalog-table tbody th, .official-site .catalog-table tbody td { border-color: var(--web-line); }
.official-site .catalog-search:focus-within { border-color: var(--web-blue); }
.official-site .feature-card { border-radius: 6px; }

/* Documentation retains its directory, anchors, search and readable content width. */
.official-site.docs-page { --docs-accent: var(--web-blue); --docs-line: var(--web-line); --docs-ink: var(--web-text); }
.official-site .docs-toolbar { max-width: none; padding: 20px max(24px,calc((100% - 1320px)/2)); background: #f4f7ff; border-bottom: 1px solid var(--web-line); }
.official-site .docs-title { min-width: 210px; }
.official-site .docs-search { background: #fff; border-color: #d1ddef; height: 46px; }
.official-site .docs-workspace { max-width: 1320px; grid-template-columns: 244px minmax(0,1fr); }
.official-site .docs-sidebar { background: #fff; }
.official-site .docs-directory { top: 96px; max-height: calc(100svh - 114px); }
.official-site .docs-page-heading h1 { font-size: 30px; }
.official-site .docs-home-heading { padding: 12px 0 28px; }
.official-site .docs-home-heading::before { content: ""; display: block; width: 38px; height: 4px; margin-bottom: 18px; background: var(--web-yellow); }
.official-site .docs-start { border: 0; border-radius: 0; background: #f4f7ff; padding: 22px; }
.official-site .docs-section-heading h2 { font-size: 20px; }
.official-site .docs-topic { padding-top: 26px; }
.official-site .docs-topic-section a:hover { background: #f3f7ff; }
.official-site .docs-toc { top: 98px; }
.official-site .docs-topic-sections { gap: 28px; }
.official-site .docs-bottom-help { background: #fff9e4; border-color: #f1e3ad; }
.official-site .docs-page-heading { scroll-margin-top: 100px; }
.official-site .document-body :is(h2,h3,h4) { scroll-margin-top: 108px; }

/* The lookup form is a framed tool, with a clear result and follow-up links. */
.official-site .license-main { padding: 54px var(--web-gutter) 64px; max-width: none; margin: 0; background: #fff; }
.official-site .license-lookup { max-width: 960px; margin: 0 auto; padding: 44px; background: #f5f8ff; border: 1px solid #dce5f6; border-radius: 8px; box-shadow: none; }
.official-site .license-heading { text-align: center; }
.official-site .license-heading h1 { font-size: 38px; margin: 10px 0 12px; }
.official-site .license-eyebrow { color: var(--web-blue); justify-content: center; }
.official-site .license-form { max-width: 760px; margin: 30px auto 0; }
.official-site .query-control button { background: var(--web-blue); box-shadow: none; }
.official-site .query-input-wrap { background: #fff; }
.official-site .license-privacy { max-width: 760px; margin: 22px auto 0; color: #64748b; }
.official-site .license-help { max-width: 1100px; margin: 54px auto 0; }
.official-site .license-section-heading h2 { font-size: 25px; }
.official-site .license-help-grid { border-top: 1px solid var(--web-line); }
.official-site .license-help-grid article { padding: 28px 24px 24px 0; border: 0; border-radius: 0; background: #fff; box-shadow: none; }
.official-site .license-help-grid h3 { font-size: 17px; }
.official-site .license-actions { border-top: 1px solid var(--web-line); padding-top: 22px; }
.official-site .license-actions a { color: var(--web-blue); }

/* Developer pages remain technical where it helps the developer make a decision. */
.official-site .open-intro { padding-top: 54px; background: #f3f7ff; }
.official-site .open-intro .open-wrap { text-align: center; }
.official-site .open-intro .open-eyebrow, .official-site .open-actions { justify-content: center; }
.official-site .open-intro h1 { font-size: 44px; }
.official-site .open-eyebrow { color: var(--web-blue); }
.official-site .open-eyebrow > span { background: var(--web-yellow); }
.official-site .open-lead { color: #435677; font-size: 22px; }
.official-site .open-protocol { margin-top: 34px; background: #fff; border-color: var(--web-line); text-align: center; }
.official-site .open-protocol > div { padding: 18px 14px; border-right: 1px solid var(--web-line); }
.official-site .open-protocol > div:last-child { border-right: 0; }
.official-site .open-protocol dd { color: #455875; }
.official-site .open-response { background: #f5f8ff; color: #314664; border-left: 1px solid var(--web-line); }
.official-site .open-response-top { border-color: #dce5f5; background: #ecf2ff; }
.official-site .open-response-top button { background: #fff; color: var(--web-blue); border-color: #cad9f3; }
.official-site .open-response-meta { color: #62718a; }
.official-site .open-response .json-key { color: #1b59b8; }
.official-site .open-response .json-string { color: #267a68; }
.official-site .open-response .json-number { color: #aa6420; }
.official-site .open-response .json-boolean { color: #6d54b0; }
.official-site .open-method { color: #277854; }
.official-site .open-response-meta i { background: #299966; }
.official-site .open-capabilities { background: #f7f9fc; }
.official-site .open-capability-grid article { background: transparent; border: 0; border-right: 1px solid var(--web-line); border-radius: 0; padding: 12px 28px 12px 0; }
.official-site .open-capability-grid article:last-child { border-right: 0; }
.official-site .open-start { background: #fff; }
.official-site .open-bottom { background: #fff6d5; color: var(--web-text); padding: 28px; border: 0; border-radius: 0; }
.official-site .open-bottom h2 { color: var(--web-text); }
.official-site .open-bottom p { color: #746a4b; }
.official-site .open-api-table th, .official-site .open-api-table td { border-color: var(--web-line); }
.official-site .open-heading h2, .official-site .open-bottom h2 { font-size: 28px; }

.official-site .agency-hero-image { display: none; }
.official-site .agency-home-hero-copy { max-width: 820px; margin: auto; }
.official-site .agency-home-hero h1 br { display: none; }
.official-site .agency-home-hero h1 em { margin-left: 10px; color: var(--web-blue); }
.official-site .agency-kicker { justify-content: center; color: var(--web-blue); font-size: 12px; }
.official-site .agency-kicker > span { background: var(--web-yellow); }
.official-site .agency-home-lead { max-width: 740px; margin: 0 auto; font-size: 14px; color: var(--web-muted); }
.official-site .agency-home-tagline { font-size: 21px; color: #516386; margin-bottom: 12px; }
.official-site .agency-home-actions { justify-content: center; margin-top: 24px; }
.official-site .agency-primary { min-height: 46px; border-radius: 6px; background: var(--web-blue); color: #fff; padding: 10px 20px; box-shadow: none; }
.official-site .agency-home-proof { justify-content: center; margin-top: 30px; }
.official-site .agency-home-proof b { color: #ae8420; }
.official-site .agency-benefit-strip { max-width: 1200px; padding-block: 28px; }
.official-site .agency-benefit-strip strong { color: var(--web-text); font-size: 17px; }
.official-site .agency-benefit-strip > div > svg { color: var(--web-blue); }
.official-site .agency-home-section { padding: 58px var(--web-gutter); max-width: none; }
.official-site .agency-section-heading { gap: 36px; }
.official-site .agency-section-heading h2, .official-site .agency-support-copy h2, .official-site .agency-faq h2 { color: var(--web-text); font-size: 32px; }
.official-site .agency-section-index { color: var(--web-blue); }
.official-site .agency-public-plan-grid { max-width: 1050px; gap: 24px; margin: 30px auto 0; }
.official-site .agency-public-plan { border-radius: 8px; box-shadow: none; padding: 28px; border-color: var(--web-line); }
.official-site .agency-public-plan.is-featured { border-top: 4px solid var(--web-yellow); padding-top: 25px; background: #fffdf5; }
.official-site .agency-public-plan-price strong { color: var(--web-text); }
.official-site .agency-public-discount { background: #f1f5ff; border-left-color: var(--web-blue); }
.official-site .agency-public-discount strong { color: var(--web-blue); }
.official-site .agency-gift-benefit { color: #49628b !important; }
.official-site .agency-plan-note { line-height: 1.9; }
.official-site .agency-flow-section { background: #f5f8ff; border: 0; }
.official-site .agency-flow-list { margin-top: 28px; }
.official-site .agency-flow-list article { min-height: 0; }
.official-site .agency-flow-list article > b { color: #ac8010; }
.official-site .agency-flow-list article > svg { margin: 18px 0; }
.official-site .agency-support-section { border: 0; }
.official-site .agency-faq { border-top: 1px solid var(--web-line); gap: 48px; }
.official-site .agency-home-cta { margin: 0; padding: 48px var(--web-gutter); background: #fff6d5; color: var(--web-text); }
.official-site .agency-home-cta h2 { color: var(--web-text); font-size: 30px; }
.official-site .agency-home-cta p:last-child { color: #746746; }
.official-site .agency-home-cta .agency-section-index { color: #8a701a; }

.official-site .contact-hero-copy { max-width: 800px; margin: auto; }
.official-site .contact-directory { padding: 52px var(--web-gutter); }
.official-site .contact-directory-heading { gap: 30px; margin-bottom: 28px; }
.official-site .contact-directory-heading h2 { font-size: 30px; margin-bottom: 8px; }
.official-site .contact-directory-heading p { font-size: 14px; color: var(--web-muted); }
.official-site .contact-groups { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px; }
.web-contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr)); gap: 20px; }
.web-contact-card { display: flex; flex-direction: column; gap: 14px; min-width: 0; padding: 24px; border: 1px solid var(--web-line); border-radius: 8px; background: #fff; }
.web-contact-card > svg { color: var(--web-blue); width: 25px; height: 25px; }
.web-contact-card h4 { margin: 0; font-size: 19px; color: var(--web-text); }
.web-contact-card dl { display: grid; gap: 8px; margin: 0; }
.web-contact-card dl > div { display: flex; gap: 20px; justify-content: space-between; font-size: 13px; }
.web-contact-card dt { color: var(--web-muted); }
.web-contact-card dd { margin: 0; overflow-wrap: anywhere; }
.web-contact-card .web-button { margin-top: auto; font-size: 13px; }
.web-contact-qr { display: flex; align-items: center; gap: 14px; border: 0; padding: 0; background: none; color: var(--web-muted); text-align: left; font-size: 12px; }
.web-contact-qr img { width: 94px; height: 94px; object-fit: contain; }
.official-site .contact-group { padding: 0; border: 0; background: #fff; }
.official-site .contact-group-head { display: block; margin-bottom: 22px; background: #fff; border: 0; padding: 0; }
.official-site .contact-group-head > span { display: none; }
.official-site .contact-group-head h3 { font-size: 21px; }
.official-site .contact-support { padding: 48px var(--web-gutter); background: #fff6d5; color: var(--web-text); }
.official-site .contact-support h2 { color: var(--web-text); font-size: 28px; }
.official-site .contact-support p { color: #71664c; }
.official-site .contact-support .primary-button { background: var(--web-blue); color: #fff; }
.official-site .contact-empty-state { padding: 40px 0; background: #fff; border-block: 1px solid var(--web-line); }
.official-site .contact-empty-state h3 { font-size: 24px; }

/* Content is never hidden waiting for JavaScript or a scroll event. */
@keyframes web-reveal { from { transform: translateY(16px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) { .official-site [data-reveal].is-revealed { animation: web-reveal .55s cubic-bezier(.2,.7,.3,1) both; } }
@media (max-width: 1280px) {
  .official-site .site-header .main-nav { gap: 15px; }
  .official-site .site-header { gap: 16px; }
  .official-site .site-header .brand { flex-basis: 120px; }
  .official-site .site-header .brand-logo { width: 120px; max-width: 120px; }
}
@media (max-width: 1100px) {
  .official-site .site-header { height: 70px; padding-inline: 24px; gap: 14px; }
  .official-site .site-header .header-actions { margin-left: auto; }
  .official-site .site-header .site-nav-toggle { display: grid; place-items: center; width: 40px; height: 40px; padding: 8px; margin: 0; border: 1px solid #dce4f2; border-radius: 5px; color: var(--web-blue); background: #fff; }
  .official-site .site-header .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100svh - 70px); overflow-y: auto; padding: 16px 24px; border-bottom: 1px solid var(--web-line); background: #fff; box-shadow: 0 12px 22px #18346510; }
  .official-site .site-header.is-menu-open .main-nav { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 4px 16px; }
  .official-site .site-header .main-nav a { min-height: 44px; padding: 9px 12px; border-radius: 4px; white-space: normal; }
  .official-site .site-header .main-nav a.is-current { background: #f0f5ff; }
  .official-site .site-header .main-nav a.is-current::after { display: none; }
  .web-hero h1 { font-size: 54px; }
  .web-hero-stage { height: 350px; min-height: 0; }
  .web-heading { gap: 24px; }
  .web-heading h2 { font-size: 30px; }
  .official-site .catalog-nav { top: 70px; }
  .web-contact-grid { grid-template-columns: 1fr; }
  .official-site .docs-directory { top: 86px; }
}
@media (max-width: 980px) {
  .official-site .docs-workspace { grid-template-columns: 1fr; }
  .official-site .docs-directory { position: static; max-height: none; }
  .official-site .docs-title { min-width: 0; }
  .official-site .docs-sidebar { border-right: 0; }
  .official-site .agency-benefit-strip { margin: 0 24px; }
  .official-site .pricing-plan-grid, .official-site .edition-list { gap: 14px; }
  .official-site .pricing-plan, .official-site .edition-row { padding: 20px; }
  .official-site .pricing-plan[data-edition], .official-site .edition-row:nth-child(n) { padding: 20px; }
  .official-site .pricing-plan-price .edition-public-price strong { font-size: 26px; }
  .web-cta > div:last-child { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  body.official-site { --web-gutter: 24px; }
  .official-site h2, .web-heading h2 { font-size: 28px; }
  .official-site .web-section { padding-block: 48px; }
  .web-heading { display: block; margin-bottom: 26px; }
  .web-heading > p, .web-heading > div > p:not(.web-eyebrow) { margin-top: 16px; }
  .web-heading > .web-link { margin-top: 16px; }
  .web-feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 24px; }
  .web-feature p { font-size: 13px; }
  .web-feature h3 { font-size: 18px; }
  .web-connection-flow { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px 8px; }
  .web-connection-flow li:nth-child(2) { border: 0; }
  .web-connection-flow li { padding-inline: 0; }
  .web-start-steps { gap: 24px; grid-template-columns: 1fr; }
  .web-start-steps li { display: grid; grid-template-columns: 40px 1fr; column-gap: 16px; }
  .web-start-steps li > span { grid-row: span 3; }
  .web-start-steps h3 { margin: 0 0 6px; }
  .web-start-steps p, .web-start-steps a { grid-column: 2; }
  .web-cta { align-items: flex-start; padding-block: 38px; }
  .web-cta h2 { font-size: 28px; }
  .official-site :is(.version-hero,.pricing-hero,.edition-detail-hero,.contact-hero,.agency-home-hero), .web-page-intro { padding-block: 36px; }
  .official-site :is(.version-hero,.pricing-hero,.edition-detail-hero,.contact-hero,.agency-home-hero) h1, .web-page-intro h1 { font-size: 34px; }
  .official-site .pricing-plan-grid, .official-site .edition-list { grid-template-columns: 1fr; gap: 20px; }
  .official-site .pricing-plan, .official-site .pricing-plan[data-edition], .official-site .edition-row, .official-site .edition-row:nth-child(n) { padding: 24px; }
  .official-site .pricing-plan[data-edition="professional"], .official-site .pricing-plan[data-edition="private-deployment"] { padding-top: 21px; }
  .official-site .pricing-plan dl > div { gap: 16px; }
  .official-site .pricing-plan > p { min-height: 0; }
  .official-site .edition-summary-copy { min-height: 0; }
  .official-site .pricing-plan-price .edition-public-price strong { font-size: 30px; }
  .official-site .edition-detail-body { grid-template-columns: 1fr; gap: 30px; }
  .official-site .catalog-nav { gap: 8px 20px; position: relative; top: auto; }
  .official-site .catalog-section, .official-site .pricing-plans, .official-site .edition-list-section { padding-block: 32px; }
  .official-site .catalog-heading h2, .official-site .pricing-section-heading h2 { font-size: 24px; }
  .official-site .license-main { padding-block: 32px; }
  .official-site .license-lookup { padding: 30px 22px; }
  .official-site .license-heading h1 { font-size: 30px; }
  .official-site .license-help { margin-top: 34px; }
  .official-site .license-help-grid article { padding: 22px 0; }
  .official-site .open-intro { padding-top: 36px; }
  .official-site .open-intro h1 { font-size: 34px; }
  .official-site .open-lead { font-size: 18px; }
  .official-site .open-protocol { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .official-site .open-protocol > div { border-bottom: 1px solid var(--web-line); }
  .official-site .open-response { border-left: 0; }
  .official-site .open-heading h2, .official-site .open-bottom h2 { font-size: 25px; }
  .official-site .open-capability-grid article { border-right: 0; border-bottom: 1px solid var(--web-line); padding-bottom: 22px; }
  .official-site .agency-home-actions { flex-direction: row; align-items: center; gap: 12px; }
  .official-site .agency-home-proof { display: none; }
  .official-site .agency-home-section { padding-block: 40px; }
  .official-site .agency-section-heading h2, .official-site .agency-support-copy h2, .official-site .agency-faq h2 { font-size: 28px; }
  .official-site .agency-benefit-strip { margin: 0; padding: 0; }
  .official-site .agency-public-plan { padding: 24px; }
  .official-site .agency-public-plan.is-featured { padding-top: 21px; }
  .official-site .agency-home-cta { padding-block: 36px; }
  .official-site .agency-home-cta h2 { font-size: 26px; }
  .official-site .contact-directory { padding-block: 36px; }
  .official-site .contact-directory-heading h2 { font-size: 27px; }
  .official-site .contact-support { padding-block: 36px; }
  .official-site .contact-support h2 { font-size: 25px; }
  .official-site .contact-groups { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body.official-site { --web-gutter: 20px; }
  .official-site .site-header { padding-inline: 16px; height: 66px; gap: 10px; }
  .official-site .site-header .brand { flex-basis: 104px; }
  .official-site .site-header .brand-logo { width: 104px; height: 46px; max-width: 104px; }
  .official-site .header-cta { min-height: 36px; padding: 7px 11px; font-size: 11px; }
  .official-site .header-cta svg { display: none; }
  .official-site .site-header .site-nav-toggle { width: 36px; height: 36px; }
  .official-site .site-header.is-menu-open .main-nav { grid-template-columns: repeat(2,minmax(0,1fr)); padding: 12px 16px; }
  .web-hero-copy { padding: 30px 20px 0; }
  .web-hero-copy .web-eyebrow { gap: 7px; font-size: 11px; }
  .web-hero-copy .web-tag { font-size: 10px; padding: 3px 7px; }
  .web-hero h1 { font-size: 36px; line-height: 1.4; margin-bottom: 12px; }
  .web-hero h1 em { margin-left: 8px; }
  .web-hero-value { font-size: 16px; gap: 4px; margin-bottom: 10px; }
  .web-hero-summary { font-size: 13px; line-height: 1.9; }
  .web-hero .web-actions { gap: 10px; margin-top: 20px; }
  .web-button { gap: 12px; padding: 10px 14px; min-height: 44px; font-size: 13px; }
  .web-hero-stage { margin-top: 10px; height: 258px; }
  .web-stage-meta { gap: 10px; bottom: 5px; font-size: 10px; }
  .web-motion { font-size: 10px; padding: 8px 3px; }
  .web-benefit-band { grid-template-columns: repeat(2,minmax(0,1fr)); padding: 18px 20px; gap: 16px 10px; }
  .web-benefit-band span { justify-content: flex-start; font-size: 11px; gap: 8px; }
  .web-feature-grid { grid-template-columns: 1fr; }
  .web-feature { display: grid; grid-template-columns: 30px 1fr; column-gap: 18px; padding: 24px 0; }
  .web-feature > svg { margin: 3px 0 0; grid-row: span 3; }
  .web-feature-number { display: none; }
  .web-feature p { max-width: none; margin-bottom: 12px; }
  .web-feature h3, .web-feature p, .web-feature .web-link { grid-column: 2; }
  .web-tabs { gap: 0; justify-content: stretch; margin-bottom: 18px; }
  .web-tabs button { flex: 1; min-width: 0; padding: 9px 5px; gap: 5px; font-size: 11px; }
  .web-tabs button svg { width: 15px; height: 15px; }
  .web-screenshot > span { right: 8px; bottom: 8px; font-size: 10px; padding: 5px 8px; }
  .web-showcase-panel > p { font-size: 12px; }
  .web-product-capabilities { grid-template-columns: 1fr; }
  .web-product-capability h3 { font-size: 21px; }
  .web-subnav { gap: 6px 18px; padding-inline: 16px; font-size: 12px; }
  .web-fit-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .web-cta { flex-direction: column; gap: 24px; }
  .web-cta > div:last-child { flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .official-site .home-agency-plan { padding: 24px; }
  .official-site .home-agency-plans { grid-template-columns: 1fr; }
  .official-site :is(.version-hero,.pricing-hero,.edition-detail-hero,.contact-hero,.agency-home-hero) h1, .web-page-intro h1 { font-size: 30px; }
  .official-site :is(.version-hero,.pricing-hero-copy,.contact-hero-copy) > p:not(.web-eyebrow), .web-page-intro > p:not(.web-eyebrow) { font-size: 13px; }
  .official-site .agency-home-hero h1 em { margin-left: 0; display: block; }
  .official-site .agency-home-tagline { font-size: 17px; }
  .official-site .agency-home-actions { flex-direction: column; }
  .official-site .license-lookup { padding: 26px 16px; }
  .official-site .license-heading h1 { font-size: 28px; }
  .official-site .license-form { margin-top: 22px; }
  .official-site .query-control { gap: 10px; }
  .official-site .docs-toolbar { padding: 16px; }
  .official-site .docs-page-heading h1 { font-size: 25px; }
  .official-site .docs-start { padding: 18px; }
  .official-site .docs-section-heading h2 { font-size: 18px; }
  .official-site .docs-content { padding: 26px 20px 40px; }
  .web-contact-grid { grid-template-columns: 1fr; }
  .official-site .open-intro h1 { font-size: 30px; }
  .official-site .site-footer { padding-top: 36px; }
}
@media (max-width: 360px) {
  .web-hero h1 { font-size: 31px; }
  .web-hero .web-button { padding-inline: 10px; gap: 8px; font-size: 12px; }
  .web-hero-value { font-size: 14px; }
  .web-hero-stage { height: 236px; }
  .web-tag { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .official-site *, .official-site *::before, .official-site *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
