* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.secondary-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
summary,
select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button,
summary,
select {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

[hidden] {
  display: none !important;
}

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

:focus-visible {
  outline: 3px solid rgba(20, 121, 220, .42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-footer);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.secondary-shell {
  width: var(--shell);
  margin-inline: auto;
}

.secondary-section {
  padding: var(--section-space) 0;
  background: var(--color-surface);
}

.secondary-section.section-soft {
  background: var(--color-surface-soft);
}

.large-copy {
  color: var(--color-heading);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.75;
}

.large-copy p {
  margin: 0 0 18px;
}

.secondary-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  border-bottom: 1px solid rgba(207, 222, 236, .82);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 6px 24px rgba(7, 42, 78, .05);
}

.secondary-header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 188px 1fr auto;
  align-items: center;
  gap: 30px;
}

.secondary-brand {
  display: inline-flex;
  width: 162px;
  min-height: 44px;
  align-items: center;
}

.secondary-brand img {
  width: 162px;
  height: auto;
}

.secondary-desktop-nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.secondary-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.secondary-nav-item > a {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: #29445f;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color var(--motion-fast) ease;
}

.secondary-nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-base) var(--motion-ease);
}

.secondary-nav-item > a:hover,
.secondary-nav-item > a:focus-visible,
.secondary-nav-item.is-active > a {
  color: var(--color-primary);
}

.secondary-nav-item > a:hover::after,
.secondary-nav-item > a:focus-visible::after,
.secondary-nav-item.is-active > a::after {
  transform: scaleX(1);
}

.secondary-nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: calc(var(--z-header) + 1);
  width: min(380px, calc(100vw - 32px));
  padding: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  background: rgba(255, 255, 255, .99);
  box-shadow: 0 24px 52px rgba(7, 42, 78, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease), visibility var(--motion-fast) ease;
}

.secondary-nav-item:nth-last-child(-n + 2) .secondary-nav-dropdown {
  right: 0;
  left: auto;
  transform: translateY(10px);
}

.secondary-nav-item:hover .secondary-nav-dropdown,
.secondary-nav-item:focus-within .secondary-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.secondary-nav-item:nth-last-child(-n + 2):hover .secondary-nav-dropdown,
.secondary-nav-item:nth-last-child(-n + 2):focus-within .secondary-nav-dropdown {
  transform: translateY(0);
}

.secondary-nav-dropdown a {
  min-height: 62px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-heading);
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease;
}

.secondary-nav-dropdown a:hover,
.secondary-nav-dropdown a:focus-visible,
.secondary-nav-dropdown a[aria-current="page"] {
  background: var(--color-surface-soft);
  color: var(--color-primary);
}

.secondary-nav-dropdown strong {
  font-size: 14px;
  line-height: 1.35;
}

.secondary-nav-dropdown span {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.secondary-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta,
.hero-action,
.primary-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  transition: background var(--motion-fast) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.header-cta:hover,
.hero-action:hover,
.primary-link:hover {
  border-color: var(--color-accent-strong);
  background: var(--color-accent-strong);
  box-shadow: 0 12px 24px rgba(8, 105, 200, .2);
}

.secondary-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  color: var(--color-heading);
}

.secondary-mobile-nav,
.mobile-nav-scrim {
  display: none;
}

.page-breadcrumb {
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
}

.page-breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: .64;
}

.page-breadcrumb a {
  opacity: .78;
}

.page-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.visual-hero {
  position: relative;
  height: var(--hero-products);
  overflow: hidden;
  background: var(--brand-blue-950);
  color: #fff;
}

.visual-hero--cases {
  height: var(--hero-cases);
}

.visual-hero--partners {
  height: var(--hero-partners);
}

.visual-hero--about {
  height: var(--hero-about);
}

.visual-hero--detail {
  height: var(--hero-detail);
}

.visual-hero-media,
.visual-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-hero-media {
  object-fit: cover;
  object-position: center 46%;
}

.visual-hero-shade {
  background: rgba(4, 24, 48, .68);
}

.visual-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 24px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-hero-copy {
  max-width: 900px;
}

.hero-eyebrow,
.section-heading > p,
.consult-band > div > p,
.buy-contact-card > p,
.history-next > p,
.buy-channel-link p {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visual-hero .hero-eyebrow {
  color: #7fc1ff;
}

.visual-hero h1,
.split-hero h1,
.text-hero h1,
.buy-title h1,
.article-title h1 {
  margin: 0;
  color: inherit;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.split-hero h1,
.text-hero h1 {
  font-size: clamp(36px, 3.9vw, 50px);
}

.visual-hero-copy > p:last-of-type {
  max-width: 660px;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.65;
}

.visual-hero .hero-action {
  min-width: 132px;
}

.split-hero {
  height: var(--hero-solutions);
  min-height: 0;
  background: var(--color-surface);
  overflow: hidden;
}

.split-hero--products {
  height: var(--hero-products);
}

.split-hero--detail {
  height: var(--hero-detail);
}

.split-hero-grid {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 46%);
}

.split-hero-copy {
  height: 100%;
  padding: 18px 56px 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.split-hero-copy .page-breadcrumb {
  margin-bottom: auto;
  color: var(--color-muted);
}

.split-hero-copy .hero-eyebrow {
  margin-top: 10px;
}

.split-hero-copy h1 {
  color: var(--color-heading);
}

.split-hero-copy > p:last-of-type {
  max-width: 650px;
  margin: 12px 0 18px;
  color: var(--color-muted);
  font-size: 17px;
}

.split-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--color-surface-soft);
}

.split-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-hero-media .content-status {
  position: absolute;
  left: 16px;
  bottom: 16px;
}

.text-hero {
  height: var(--hero-services);
  min-height: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.text-hero--about {
  height: var(--hero-about);
}

.text-hero--news {
  height: var(--hero-news);
}

.text-hero .page-breadcrumb {
  margin-bottom: 24px;
  color: var(--color-muted);
}

.text-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .62fr);
  gap: 60px;
  align-items: end;
}

.text-hero h1 {
  color: var(--color-heading);
}

.text-hero-row > p {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 17px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.section-heading h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 740;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.section-heading > span:not(.content-status) {
  display: block;
  max-width: 700px;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 16px;
}

.category-strip,
.anchor-nav,
.service-tabs {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, .96);
}

.category-strip .secondary-shell,
.anchor-nav .secondary-shell,
.service-tabs .secondary-shell {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-strip .secondary-shell::-webkit-scrollbar,
.anchor-nav .secondary-shell::-webkit-scrollbar,
.service-tabs .secondary-shell::-webkit-scrollbar,
.filter-chips::-webkit-scrollbar {
  display: none;
}

.category-strip a,
.anchor-nav a,
.service-tabs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #38526c;
  font-size: 14px;
  font-weight: 700;
}

.category-strip a:hover,
.anchor-nav a:hover,
.service-tabs a:hover,
.service-tabs a.is-active {
  color: var(--color-primary);
}

.product-detail > .secondary-section {
  scroll-margin-top: calc(var(--header-height) + 66px);
}

.solution-detail > .secondary-section {
  scroll-margin-top: calc(var(--header-height) + 66px);
}

.solution-overview-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
}

.solution-overview-media img {
  width: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.solution-overview-media figcaption {
  padding: 13px 16px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.landing-entry {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-soft);
}

.landing-entry-layout {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.landing-entry-intro {
  padding-right: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-border);
}

.landing-entry-intro p {
  margin: 0 0 7px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.landing-entry-intro h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: 22px;
  line-height: 1.35;
}

.landing-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.landing-entry-grid > a {
  min-width: 0;
  min-height: 104px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-heading);
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.landing-entry-grid > a:hover,
.landing-entry-grid > a:focus-visible {
  border-color: var(--brand-blue-200);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.landing-entry-grid b {
  color: var(--color-primary);
  font-size: 11px;
  letter-spacing: .08em;
}

.landing-entry-grid span {
  min-width: 0;
}

.landing-entry-grid strong,
.landing-entry-grid small {
  display: block;
}

.landing-entry-grid strong {
  font-size: 15px;
  line-height: 1.4;
}

.landing-entry-grid small {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

.landing-entry-grid svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.product-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  transition: border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.product-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 56%) minmax(360px, 1fr);
}

.product-card:hover {
  border-color: var(--brand-blue-200);
  box-shadow: var(--shadow-card);
}

.product-card-media {
  min-height: 310px;
  overflow: hidden;
  background: var(--color-surface-soft);
}

.product-card:not(.product-card--featured) .product-card-media {
  min-height: 250px;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--motion-ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.025);
}

.product-card-copy {
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.product-card-copy > span:first-child,
.solution-row > div > span,
.case-card > div > span,
.news-row > div > span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.product-card h3,
.solution-row h2,
.case-card h2 {
  margin: 8px 0 12px;
  color: var(--color-heading);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.2;
}

.product-card p,
.solution-row p,
.case-card p {
  margin: 0;
  color: var(--color-muted);
}

.product-card-copy > a:last-child,
.solution-row > div > a,
.case-card > div > a,
.service-card-grid a,
.support-shortcuts a,
.service-feature a,
.news-feature a,
.news-row > div > a:last-child,
.faq-layout aside a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--color-primary);
  font-weight: 750;
}

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

.feature-grid article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.feature-grid article > b {
  color: var(--brand-blue-200);
  font-size: 36px;
  line-height: 1;
}

.feature-grid h3 {
  margin: 30px 0 8px;
  color: var(--color-heading);
  font-size: 21px;
}

.feature-grid p {
  margin: 0;
  color: var(--color-muted);
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.spec-table > div {
  min-height: 68px;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: minmax(150px, 22%) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
}

.spec-table > div:last-child {
  border-bottom: 0;
}

.spec-table strong {
  color: var(--color-heading);
}

.spec-table > div > span[role="cell"] {
  color: var(--color-muted);
}

.spec-table .content-status {
  margin: 0 !important;
}

.scenario-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(400px, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.scenario-layout > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.scenario-list {
  display: grid;
  gap: 12px;
}

.scenario-list > div {
  min-height: 58px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: #2d4864;
}

.scenario-list svg {
  color: var(--color-accent);
}

.resource-row {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(460px, 1fr);
  gap: 70px;
}

.resource-row .section-heading {
  margin-bottom: 0;
}

.resource-list {
  display: grid;
  gap: 10px;
}

.resource-list > div {
  min-height: 66px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.resource-list svg {
  color: var(--color-primary);
}

.resource-list button,
.download-row button {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: #edf3f8;
  color: #6a7c8e;
  font-size: 13px;
}

.product-category-nav {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-soft);
}

.product-category-nav .secondary-shell {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  padding-top: 16px;
  padding-bottom: 16px;
}

.product-category-nav a {
  min-height: 84px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 5px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.product-category-nav a:hover,
.product-category-nav a:focus-visible {
  border-color: var(--brand-blue-200);
  box-shadow: var(--shadow-card);
}

.product-category-nav span {
  grid-column: 1 / -1;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.product-category-nav strong {
  color: var(--color-heading);
  font-size: 18px;
}

.product-category-nav small {
  align-self: center;
  color: var(--color-muted);
}

.product-catalog-intro {
  padding-bottom: 24px;
}

.product-catalog-intro .section-heading {
  margin-bottom: 0;
}

.product-category-section {
  padding-top: 32px;
  scroll-margin-top: 88px;
}

.product-category-section + .product-category-section {
  border-top: 1px solid var(--color-border);
}

.product-category-heading {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
}

.product-category-heading p {
  margin: 0 0 7px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.product-category-heading h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(30px, 3vw, 42px);
}

.product-category-heading > span {
  max-width: 660px;
  color: var(--color-muted);
  line-height: 1.8;
}

.product-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-category-empty {
  min-height: 180px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-card);
  background: #f8fbff;
  color: var(--color-muted);
  text-align: center;
}

.product-category-empty svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.product-category-empty strong {
  color: var(--color-heading);
  font-size: 18px;
}

.product-model-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  transition: transform var(--motion-base) var(--motion-ease), border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.product-model-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue-200);
  box-shadow: var(--shadow-card);
}

.product-model-media {
  height: 226px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(145deg, #f8fbff, #eef5fb);
}

.product-model-media img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transition: transform 280ms var(--motion-ease);
}

.product-model-card:hover .product-model-media img {
  transform: scale(1.025);
}

.product-model-copy {
  min-height: 390px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.product-model-copy > span {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.product-model-copy h3 {
  margin: 16px 0 2px;
  color: var(--color-heading);
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.product-model-copy h3 a {
  color: inherit;
}

.product-model-copy > strong {
  color: #2f4c68;
  font-size: 15px;
}

.product-model-copy > p {
  min-height: 78px;
  margin: 15px 0 18px;
  color: var(--color-muted);
  line-height: 1.7;
}

.product-model-copy dl {
  margin: 0;
  display: grid;
  gap: 7px;
}

.product-model-copy dl > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  font-size: 13px;
}

.product-model-copy dt {
  color: #70869b;
}

.product-model-copy dd {
  min-width: 0;
  margin: 0;
  color: #26445f;
  font-weight: 650;
}

.product-model-link {
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 800;
}

.product-model-link svg {
  width: 18px;
  transition: transform var(--motion-base) ease;
}

.product-model-link:hover svg {
  transform: translateX(3px);
}

.product-detail-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(120deg, #fff 0 52%, #edf5fc 52% 100%);
}

.product-detail-hero .secondary-shell {
  padding-top: 14px;
  padding-bottom: 24px;
}

.product-detail-hero .page-breadcrumb {
  margin: 0 0 10px;
}

.product-detail-hero-grid {
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.product-detail-copy {
  padding: 18px 0 12px;
}

.product-detail-copy .hero-eyebrow {
  margin-bottom: 10px;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(44px, 5.4vw, 70px);
  line-height: 1;
  letter-spacing: -.035em;
}

.product-detail-copy > strong {
  margin-top: 12px;
  display: block;
  color: #2d4c69;
  font-size: clamp(18px, 2vw, 24px);
}

.product-detail-copy > p:not(.hero-eyebrow) {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.product-detail-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-actions a {
  min-height: 46px;
}

.product-detail-actions .hero-action {
  gap: 9px;
}

.product-detail-actions .hero-action svg {
  width: 18px;
}

.product-secondary-action {
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
}

.product-detail-media {
  min-width: 0;
  height: 290px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail-media img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  flex: 0 1 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 18px rgba(15, 43, 72, .12));
}

.product-quick-specs {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.product-quick-specs .secondary-shell {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-quick-specs .secondary-shell > div {
  min-width: 0;
  padding: 22px 20px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-right: 1px solid var(--color-border);
}

.product-quick-specs .secondary-shell > div:first-child {
  border-left: 1px solid var(--color-border);
}

.product-quick-specs span {
  color: #70869b;
  font-size: 12px;
}

.product-quick-specs strong {
  color: var(--color-heading);
  font-size: 15px;
  line-height: 1.45;
}

.product-highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-highlight-grid article {
  min-height: 250px;
}

.product-spec-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.product-spec-group {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.product-spec-group summary {
  min-height: 64px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.product-spec-group summary::-webkit-details-marker {
  display: none;
}

.product-spec-group summary small {
  color: #71879d;
  font-size: 12px;
  font-weight: 600;
}

.product-spec-group summary svg {
  width: 18px;
  color: var(--color-primary);
  transition: transform var(--motion-base) ease;
}

.product-spec-group[open] summary {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-soft);
}

.product-spec-group[open] summary svg {
  transform: rotate(180deg);
}

.product-spec-group dl {
  margin: 0;
}

.product-spec-group dl > div {
  min-width: 0;
  padding: 13px 18px;
  display: grid;
  grid-template-columns: minmax(112px, 28%) minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--color-border);
}

.product-spec-group dl > div:last-child {
  border-bottom: 0;
}

.product-spec-group dt {
  color: var(--color-heading);
  font-size: 13px;
  font-weight: 750;
}

.product-spec-group dd {
  min-width: 0;
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.product-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-scenario-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.product-scenario-grid article > svg {
  width: 30px;
  height: 30px;
  color: var(--color-accent);
}

.product-scenario-grid h3 {
  margin: 42px 0 8px;
  color: var(--color-heading);
  font-size: 20px;
}

.product-scenario-grid p {
  margin: 0;
  color: var(--color-muted);
}

.product-resource-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(440px, 1fr);
  gap: 70px;
  align-items: start;
}

.product-resource-layout .section-heading {
  margin-bottom: 0;
}

.product-resource-list {
  display: grid;
  gap: 12px;
}

.product-download-card {
  min-height: 84px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
}

.product-download-card > svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
}

.product-download-card strong,
.product-download-card small {
  display: block;
}

.product-download-card strong {
  color: var(--color-heading);
}

.product-download-card small {
  margin-top: 4px;
  color: var(--color-muted);
}

.product-download-card b {
  min-height: 42px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-xs);
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
}

.product-download-card b svg {
  width: 16px;
}

.product-disclaimer {
  margin: 12px 0 0;
  color: #71879d;
  font-size: 12px;
  line-height: 1.7;
}

.consult-section {
  padding: var(--section-space-compact) 0;
  background: var(--brand-blue-900);
}

.consult-band {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
}

.consult-band > div > p {
  color: #79bfff;
}

.consult-band h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

.consult-band span {
  color: rgba(255, 255, 255, .72);
}

.consult-band > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
}

.solution-rows {
  display: grid;
  gap: clamp(54px, 7vw, 90px);
}

.solution-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.solution-row--reverse .solution-row-media {
  order: 2;
}

.solution-row-media {
  height: clamp(260px, 24vw, 320px);
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
}

.solution-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--motion-ease);
}

.solution-row:hover img {
  transform: scale(1.02);
}

.solution-method .feature-grid article,
.value-cards article {
  background: #fff;
}

.solution-overview {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(400px, 1fr);
  gap: 80px;
}

.challenge-list {
  display: grid;
  gap: 12px;
}

.challenge-list article {
  min-height: 86px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface-soft);
}

.challenge-list b {
  color: var(--color-primary);
}

.challenge-list p {
  margin: 0;
  color: #38526c;
}

.path-timeline {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.path-timeline li {
  min-height: 230px;
  padding: 26px;
  border-top: 3px solid var(--color-accent);
  border-right: 1px solid var(--color-border);
  background: #fff;
}

.path-timeline li:first-child {
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.path-timeline li:last-child {
  border-right: 0;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.path-timeline b {
  color: var(--brand-blue-200);
  font-size: 30px;
}

.path-timeline h3 {
  margin: 28px 0 8px;
  color: var(--color-heading);
}

.path-timeline p {
  margin: 0;
  color: var(--color-muted);
}

.case-toolbar,
.download-toolbar,
.news-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
  margin-bottom: 26px;
}

.case-toolbar .section-heading,
.download-toolbar .section-heading,
.news-toolbar .section-heading {
  margin-bottom: 0;
}

.search-control,
.sort-control {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-muted);
}

.search-control:focus-within,
.sort-control:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(20, 121, 220, .12);
}

.search-control input,
.sort-control select {
  min-width: 220px;
  height: 46px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-heading);
}

.sort-control select {
  min-width: 110px;
  appearance: none;
}

.filter-chips {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-chips button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  color: #3b556d;
  font-weight: 700;
}

.filter-chips button:hover,
.filter-chips button.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

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

.case-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  transition: box-shadow var(--motion-base) ease, border-color var(--motion-base) ease;
}

.case-card:hover {
  border-color: var(--brand-blue-200);
  box-shadow: var(--shadow-card);
}

.case-card > a:first-child {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--motion-ease);
}

.case-card:hover img {
  transform: scale(1.025);
}

.case-card > div {
  padding: 24px;
}

.case-card h2 {
  font-size: 24px;
}

.filter-empty {
  margin-top: 24px;
  padding: 26px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
  color: var(--color-muted);
  text-align: center;
}

.disclosure-band {
  min-height: 116px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.disclosure-band > svg {
  width: 34px;
  height: 34px;
  color: var(--color-primary);
}

.disclosure-band strong {
  color: var(--color-heading);
  font-size: 20px;
}

.disclosure-band p {
  margin: 4px 0 0;
  color: var(--color-muted);
}

.case-summary-strip {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.case-summary-strip .secondary-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 20px;
}

.case-summary-strip div > div {
  display: grid;
}

.case-summary-strip span:not(.content-status) {
  color: var(--color-muted);
  font-size: 13px;
}

.case-summary-strip strong {
  color: var(--color-heading);
}

.case-summary-strip .content-status {
  margin: 0 !important;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 8vw, 110px);
}

.story-copy p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.8;
}

.story-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-steps li {
  min-height: 72px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--color-border);
}

.story-steps b {
  color: var(--color-primary);
}

.story-steps p {
  margin: 0;
  color: #38526c;
}

.case-products > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-products > div:last-child > span {
  min-height: 48px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface-soft);
  color: var(--color-heading);
  font-weight: 700;
}

.related-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.related-case-grid .case-card > a:first-child {
  aspect-ratio: 2 / 1;
}

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

.partner-logo {
  position: relative;
  min-height: 126px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.partner-logo img {
  width: 76%;
  max-height: 50px;
  object-fit: contain;
}

.partner-logo .content-status {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-height: 22px;
  padding: 2px 7px;
  font-size: 10px !important;
}

.partner-type-grid article {
  min-height: 250px;
}

.partner-process,
.buy-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.partner-process li,
.buy-steps li {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.partner-process b,
.buy-steps b {
  color: var(--brand-blue-200);
  font-size: 28px;
}

.partner-process p,
.buy-steps p {
  margin: 30px 0 0;
  color: var(--color-heading);
  font-weight: 700;
}

.center-action {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.inline-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  gap: 80px;
  align-items: start;
}

.inline-form-layout > div > p {
  color: var(--color-muted);
}

.inline-form,
.contact-dialog form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inline-form {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
}

.inline-form label,
.contact-dialog label {
  display: grid;
  gap: 6px;
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 700;
}

.inline-form label:last-of-type,
.contact-dialog label:last-of-type {
  grid-column: 1 / -1;
}

.inline-form input,
.inline-form textarea,
.contact-dialog input,
.contact-dialog textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: 0;
  background: #fff;
  color: var(--color-heading);
  resize: vertical;
}

.inline-form textarea,
.contact-dialog textarea {
  min-height: 110px;
}

.inline-form input:focus,
.inline-form textarea:focus,
.contact-dialog input:focus,
.contact-dialog textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(20, 121, 220, .12);
}

.inline-form > button,
.contact-dialog form > button,
.buy-contact-card button,
.channel-compare button,
.channel-compare a,
.job-list button {
  min-height: 48px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
}

.inline-form > button {
  grid-column: 1 / -1;
}

.inline-form output,
.contact-dialog output {
  grid-column: 1 / -1;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}

.service-tabs {
  position: relative;
  top: 0;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card-grid article {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.service-card-grid article > svg {
  width: 34px;
  height: 34px;
  color: var(--color-accent);
}

.service-card-grid h2 {
  margin: 44px 0 8px;
  color: var(--color-heading);
  font-size: 22px;
}

.service-card-grid p {
  margin: 0;
  color: var(--color-muted);
}

.service-card-grid a {
  margin-top: auto;
}

.support-shortcuts {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(460px, 1fr);
  gap: 70px;
}

.support-shortcuts .section-heading {
  margin: 0;
}

.support-shortcuts > div:last-child {
  display: grid;
  gap: 12px;
}

.support-shortcuts a {
  min-height: 82px;
  margin-top: 0;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.support-shortcuts a > svg:first-child {
  width: 28px;
  height: 28px;
}

.support-shortcuts span {
  display: grid;
}

.support-shortcuts small {
  color: var(--color-muted);
  font-weight: 500;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  align-items: center;
  gap: 70px;
}

.service-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.service-feature .section-heading {
  margin-bottom: 22px;
}

.service-feature p {
  color: var(--color-muted);
}

.download-table {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.download-row {
  min-height: 74px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: minmax(230px, 1.7fr) minmax(105px, .7fr) minmax(160px, 1fr) minmax(76px, .45fr) 90px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--color-border);
}

.download-row:last-child {
  border-bottom: 0;
}

.download-head {
  min-height: 50px;
  background: var(--brand-blue-900);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.download-row strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--color-heading);
}

.download-row strong > svg {
  color: var(--color-primary);
}

.download-row .content-status {
  margin: 0 !important;
}

.download-row > span {
  color: var(--color-muted);
}

.download-row.download-head > span {
  color: #fff;
}

.download-row > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.download-row > a > svg {
  flex: 0 0 auto;
}

.download-product-link {
  min-width: 0;
  color: var(--color-primary) !important;
}

.download-product-link > svg {
  width: 16px;
  height: 16px;
}

.download-product-empty {
  color: var(--color-muted);
}

.download-help {
  min-height: 112px;
  margin-top: 24px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
}

.download-help > svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.download-help strong {
  color: var(--color-heading);
}

.download-help p {
  margin: 3px 0 0;
  color: var(--color-muted);
}

.download-help a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(500px, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.faq-layout aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-layout aside > p {
  margin: 0;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.faq-layout aside h2 {
  margin: 8px 0 12px;
  color: var(--color-heading);
  font-size: clamp(28px, 3vw, 42px);
}

.faq-layout aside > span {
  color: var(--color-muted);
}

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

.faq-category-chips {
  margin-bottom: 18px;
}

.faq-list details {
  padding: 0 4px;
  border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--color-heading);
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary > .faq-number {
  color: var(--color-primary);
  font-size: 13px;
}

.faq-summary-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
  color: var(--color-heading);
}

.faq-summary-copy small {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.faq-summary-copy strong {
  font: inherit;
}

.faq-list details[open] summary > svg {
  transform: rotate(45deg);
}

.faq-list summary > svg {
  transition: transform var(--motion-base) ease;
}

.faq-list details > p {
  margin: -4px 0 22px 54px;
  color: var(--color-muted);
}

.faq-list .content-status {
  margin: 0 0 20px 54px !important;
}

.buy-page {
  background: var(--color-surface);
}

.buy-gateway {
  min-height: 420px;
  padding: 22px 0 52px;
  display: flex;
  align-items: stretch;
  background: var(--color-surface-soft);
}

.buy-gateway > .secondary-shell {
  display: flex;
  flex-direction: column;
}

.buy-gateway .page-breadcrumb {
  margin-bottom: auto;
  color: var(--color-muted);
}

.buy-gateway-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .7fr);
  align-items: end;
  gap: 80px;
}

.buy-title h1 {
  max-width: 760px;
  color: var(--color-heading);
  font-size: clamp(38px, 3.7vw, 46px);
}

.buy-title > p:last-of-type {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 18px;
}

.buy-points {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.buy-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f4a65;
  font-weight: 700;
}

.buy-points svg {
  color: var(--color-accent);
}

.buy-contact-card {
  padding: 30px;
  border-radius: var(--radius-card);
  background: var(--brand-blue-900);
  color: #fff;
  box-shadow: var(--shadow-float);
}

.buy-contact-card > p {
  color: #79bfff;
}

.buy-contact-card h2 {
  margin: 8px 0 10px;
  font-size: 28px;
}

.buy-contact-card > span {
  color: rgba(255, 255, 255, .7);
}

.buy-contact-card button {
  width: 100%;
  margin-top: 22px;
  border-color: #fff;
  background: #fff;
  color: var(--color-primary);
}

.buy-preparation {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(480px, 1fr);
  gap: 70px;
}

.buy-preparation .section-heading {
  margin: 0;
}

.buy-preparation > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.buy-preparation > div:last-child > span {
  min-height: 84px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-heading);
  font-weight: 700;
}

.buy-preparation svg {
  color: var(--color-primary);
}

.buy-channel-link {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 34px;
  border-radius: var(--radius-card);
  background: var(--brand-blue-900);
  color: #fff;
}

.buy-channel-link h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.buy-channel-link a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
}

.buy-gateway--channels {
  min-height: 320px;
}

.buy-gateway--channels .buy-title {
  margin-top: auto;
}

.channel-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.channel-compare article {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.channel-compare article > b {
  color: var(--brand-blue-200);
  font-size: 34px;
}

.channel-compare h2 {
  margin: 34px 0 8px;
  color: var(--color-heading);
}

.channel-compare p {
  margin: 0;
  color: var(--color-muted);
}

.channel-compare button,
.channel-compare a {
  width: 100%;
  margin-top: auto;
}

.channel-regions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.channel-regions article {
  min-height: 200px;
  padding: 26px;
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-card);
  background: #fff;
}

.channel-regions span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}

.channel-regions h3 {
  margin: 34px 0 8px;
  color: var(--color-heading);
  font-size: 21px;
}

.channel-regions p {
  margin: 0;
  color: var(--color-muted);
}

.about-story-grid,
.company-profile {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(440px, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.about-story-grid img,
.company-profile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.about-metric-band {
  background: var(--brand-blue-900);
  color: #fff;
}

.about-metric-band .secondary-shell {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 24px;
}

.about-metric-band .secondary-shell > div {
  display: grid;
  gap: 6px;
}

.about-metric-band strong {
  font-size: 28px;
}

.about-metric-band span:not(.content-status) {
  color: rgba(255, 255, 255, .68);
}

.about-metric-band .content-status {
  margin: 0 !important;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vision-grid article {
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.vision-grid article > span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.vision-grid h2 {
  max-width: 500px;
  margin: 70px 0 10px;
  color: var(--color-heading);
  font-size: clamp(24px, 3vw, 34px);
}

.vision-grid p {
  color: var(--color-muted);
}

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

.about-link-grid a {
  min-height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  transition: border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.about-link-grid a:hover {
  border-color: var(--brand-blue-200);
  box-shadow: var(--shadow-card);
}

.about-link-grid a > span {
  color: var(--brand-blue-200);
  font-size: 28px;
  font-weight: 750;
}

.about-link-grid h3 {
  margin: 46px 0 8px;
  color: var(--color-heading);
  font-size: 22px;
}

.about-link-grid p {
  margin: 0;
  color: var(--color-muted);
}

.about-link-grid svg {
  margin-top: auto;
  color: var(--color-primary);
}

.company-facts article {
  min-height: 220px;
}

.company-narrative {
  display: grid;
  gap: 16px;
}

.company-narrative p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.85;
}

.company-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.company-fact-grid article {
  min-width: 0;
  min-height: 236px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.company-fact-grid article > svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}

.company-fact-grid span {
  margin-top: auto;
  color: #71879d;
  font-size: 12px;
  font-weight: 750;
}

.company-fact-grid strong {
  margin-top: 8px;
  color: var(--color-heading);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.company-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.company-capability-grid article {
  min-width: 0;
  min-height: 250px;
  padding: 26px;
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 1px 0 rgba(10, 49, 86, .04);
}

.company-capability-grid article > svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}

.company-capability-grid h3 {
  margin: 54px 0 10px;
  color: var(--color-heading);
  font-size: 21px;
}

.company-capability-grid p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.company-service-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(440px, 1fr);
  align-items: start;
  gap: clamp(46px, 7vw, 92px);
}

.company-service-layout .section-heading {
  margin-bottom: 24px;
}

.company-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-industry-tags span {
  min-height: 38px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--brand-blue-100);
  border-radius: 999px;
  background: #fff;
  color: #315a7c;
  font-size: 13px;
  font-weight: 700;
}

.company-service-flow {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.company-service-flow li {
  min-height: 128px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--color-border);
}

.company-service-flow li:first-child {
  padding-top: 0;
}

.company-service-flow li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.company-service-flow b {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
}

.company-service-flow h3 {
  margin: 0 0 8px;
  color: var(--color-heading);
  font-size: 20px;
}

.company-service-flow p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.company-gallery-section {
  overflow: hidden;
}

.company-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.company-gallery figure {
  position: relative;
  min-width: 0;
  height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
}

.company-gallery figure.company-gallery-featured {
  height: 536px;
  grid-row: span 2;
  grid-column: span 2;
}

.company-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--motion-ease);
}

.company-gallery figure:hover img {
  transform: scale(1.02);
}

.company-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  min-height: 42px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius-xs);
  background: rgba(3, 24, 47, .78);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.company-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(440px, 1fr);
  align-items: start;
  gap: clamp(46px, 7vw, 92px);
}

.company-contact-layout .section-heading {
  margin-bottom: 22px;
}

.company-vision {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--color-accent);
  color: #315a7c;
  line-height: 1.8;
}

.company-address-list {
  display: grid;
  gap: 12px;
}

.company-address-list article {
  min-height: 104px;
  padding: 20px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.company-address-list article > svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
}

.company-address-list span,
.company-address-list strong {
  display: block;
}

.company-address-list span {
  color: #71879d;
  font-size: 12px;
  font-weight: 750;
}

.company-address-list strong {
  margin-top: 7px;
  color: var(--color-heading);
  line-height: 1.65;
}

.company-vision-band {
  min-height: 280px;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 88% 18%, rgba(20, 121, 220, .36), transparent 26%),
    linear-gradient(135deg, #071c32, #0b3157);
  color: #fff;
}

.company-vision-band p {
  margin: 0 0 20px;
  color: #79bfff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.company-vision-band h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.22;
}

.company-vision-band span {
  max-width: 720px;
  margin-top: 14px;
  display: block;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.company-vision-band a {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
}

.company-vision-band a svg {
  width: 18px;
}

.about-award {
  min-width: 0;
  padding-left: 22px;
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 11px !important;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.about-award svg {
  width: 26px;
  height: 26px;
  color: #79bfff;
}

.about-award span {
  line-height: 1.5;
}

.history-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27%;
  width: 1px;
  background: var(--color-border);
}

.history-timeline li {
  min-height: 190px;
  display: grid;
  grid-template-columns: 27% minmax(0, 1fr);
}

.history-timeline time {
  padding: 34px 56px 20px 0;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 800;
  text-align: right;
}

.history-timeline li > div {
  position: relative;
  padding: 32px 0 32px 62px;
}

.history-timeline li > div > span {
  position: absolute;
  top: 32px;
  left: -19px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.history-timeline h2 {
  margin: 0 0 8px;
  color: var(--color-heading);
  font-size: 26px;
}

.history-timeline p {
  margin: 0;
  color: var(--color-muted);
}

.history-next {
  max-width: 850px;
  text-align: center;
}

.history-next h2 {
  margin: 8px 0 10px;
  color: var(--color-heading);
  font-size: clamp(28px, 4vw, 46px);
}

.history-next > span {
  color: var(--color-muted);
}

.job-list {
  display: grid;
  gap: 12px;
}

.job-list article {
  min-height: 126px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.job-list span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}

.job-list h2 {
  margin: 2px 0;
  color: var(--color-heading);
  font-size: 22px;
}

.job-list p {
  margin: 0;
  color: var(--color-muted);
}

.job-list .content-status {
  margin: 0 !important;
}

.article-header {
  height: var(--hero-detail);
  padding: 20px 0 28px;
  background: var(--color-surface);
}

.article-header > .secondary-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-header .page-breadcrumb {
  margin-bottom: auto;
  color: var(--color-muted);
}

.article-mobile-back {
  display: none;
}

.article-title {
  width: 100%;
  min-width: 0;
  max-width: 950px;
}

.article-title > p:first-child {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
}

.article-title h1 {
  color: var(--color-heading);
  font-size: clamp(36px, 4.4vw, 54px);
  overflow-wrap: anywhere;
}

.article-title > p:nth-of-type(2) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 18px;
}

.article-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--color-muted);
  font-size: 14px;
}

.article-meta time,
.article-meta span {
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  overflow-wrap: anywhere;
}

.article-meta svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.article-tags,
.news-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags {
  margin-top: 14px;
}

.article-tags span,
.news-row-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--brand-blue-50);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.article-cover {
  height: auto;
  max-height: 620px;
  aspect-ratio: var(--article-cover-aspect-ratio, 16 / 9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
}

.article-cover img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.article-body {
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: 160px minmax(0, 760px);
  gap: 70px;
}

.article-body aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  display: grid;
  gap: 12px;
  color: var(--color-muted);
  font-size: 13px;
}

.article-body aside a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 750;
}

.article-body > div > p {
  margin: 0 0 24px;
  color: #354f68;
  font-size: 17px;
  line-height: 1.95;
}

.article-body .article-lead {
  color: var(--color-heading);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.75;
}

.article-body h2 {
  margin: 54px 0 16px;
  color: var(--color-heading);
  font-size: 28px;
}

.article-body li {
  margin-bottom: 10px;
  color: #354f68;
}

.article-note {
  margin: 40px 0;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border: 1px solid var(--color-demo-border);
  border-radius: var(--radius-card);
  background: var(--color-demo-bg);
}

.article-note > svg {
  color: var(--color-demo-text);
}

.article-note p {
  margin: 0;
  color: var(--color-demo-text);
}

.article-note .content-status {
  grid-column: 2;
  margin-top: 0 !important;
}

.news-feature {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--brand-blue-900);
  color: #fff;
}

.news-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature > div {
  padding: clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.news-feature time,
.news-feature > div > span {
  color: #89c7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.news-feature h2 {
  margin: 16px 0 12px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.22;
}

.news-feature p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.news-feature a {
  color: #fff;
}

.news-toolbar {
  margin-top: 80px;
}

.news-toolbar > div:last-child {
  display: flex;
  gap: 10px;
}

.news-list {
  border-top: 1px solid var(--color-border);
}

.news-row {
  min-height: 235px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 92px 260px minmax(0, 1fr);
  gap: 30px;
  border-bottom: 1px solid var(--color-border);
}

.news-row > time {
  display: grid;
  align-content: start;
  color: var(--color-primary);
}

.news-row > time strong {
  font-size: 28px;
  line-height: 1.2;
}

.news-row > time span {
  color: var(--color-muted);
  font-size: 12px;
}

.news-row-date-mobile {
  display: none;
}

.news-row-media {
  aspect-ratio: 16 / 9;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.news-row-media img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.news-row > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-row-tags {
  min-height: 24px;
}

.news-row h2 {
  margin: 8px 0;
  color: var(--color-heading);
  font-size: 25px;
  line-height: 1.3;
}

.news-row > div > a:last-child {
  margin-top: 14px;
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.related-news-grid .news-row {
  min-height: 360px;
  padding: 0;
  grid-template-columns: 64px 1fr;
  grid-template-rows: 180px 1fr;
  gap: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
}

.related-news-grid .news-row > time {
  padding: 18px 0 0 18px;
}

.related-news-grid .news-row-media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.related-news-grid .news-row > div {
  grid-column: 1 / -1;
  padding: 0 22px 22px;
}

.secondary-footer {
  padding: 68px 0 0;
  background: var(--color-footer);
  color: #fff;
}

.secondary-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(2, minmax(130px, .55fr)) minmax(220px, .8fr);
  gap: 48px;
}

.footer-brand img {
  width: 190px;
  height: auto;
}

.footer-brand p,
.footer-status p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.secondary-footer nav,
.footer-status {
  display: grid;
  align-content: start;
  gap: 10px;
}

.secondary-footer nav strong,
.footer-status strong {
  margin-bottom: 8px;
  color: #fff;
}

.secondary-footer nav a {
  min-height: 32px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.secondary-footer nav a:hover {
  color: #fff;
}

.secondary-footer-bottom {
  min-height: 72px;
  margin-top: 52px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.contact-dialog {
  width: min(100% - 32px, 620px);
  max-height: min(88dvh, 760px);
  padding: 34px;
  border: 0;
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-float);
}

.contact-dialog::backdrop {
  background: rgba(4, 20, 39, .6);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
  color: var(--color-heading);
}

.contact-dialog > p {
  margin: 0;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.contact-dialog > h2 {
  margin: 8px 0;
  color: var(--color-heading);
  font-size: 30px;
}

.contact-dialog > span {
  display: block;
  margin-bottom: 24px;
  color: var(--color-muted);
}

.contact-dialog form > button {
  grid-column: 1 / -1;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1180px) {
  .secondary-header-inner {
    grid-template-columns: 170px 1fr auto;
    gap: 18px;
  }

  .secondary-desktop-nav {
    gap: 16px;
  }

  .secondary-nav-item > a {
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 14px;
  }

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

  .service-card-grid article {
    min-height: 240px;
  }

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

@media (max-width: 1024px) {
  .secondary-pc-tool {
    display: none;
  }

  .secondary-desktop-nav,
  .header-cta {
    display: none;
  }

  .secondary-header-inner {
    grid-template-columns: 1fr auto;
  }

  .secondary-menu-button {
    display: inline-flex;
  }

  .secondary-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-drawer);
    width: min(88vw, 390px);
    padding: 18px 22px 30px;
    display: block;
    overflow-y: auto;
    background: #fff;
    box-shadow: -24px 0 70px rgba(4, 24, 48, .18);
    transform: translateX(105%);
    transition: transform var(--motion-base) var(--motion-ease);
  }

  .secondary-mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav-scrim {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-drawer) - 1);
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(4, 20, 39, .48);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--motion-base) ease;
  }

  body.secondary-menu-open .mobile-nav-scrim {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-top {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .mobile-nav-top strong {
    color: var(--color-heading);
    font-size: 20px;
  }

  .mobile-nav-top button {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--color-surface-soft);
    color: var(--color-heading);
  }

  .secondary-mobile-nav details {
    border-bottom: 1px solid var(--color-border);
  }

  .secondary-mobile-nav summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-heading);
    font-weight: 750;
    list-style: none;
  }

  .secondary-mobile-nav details.is-current > summary {
    color: var(--color-primary);
  }

  .secondary-mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .secondary-mobile-nav details[open] summary svg {
    transform: rotate(180deg);
  }

  .secondary-mobile-nav details > div {
    padding: 0 0 12px 12px;
    display: grid;
  }

  .secondary-mobile-nav details > div a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: var(--color-muted);
  }

  .secondary-mobile-nav details > div a[aria-current="page"] {
    color: var(--color-primary);
    font-weight: 750;
  }

  .mobile-contact-cta {
    min-height: 48px;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: #fff;
    font-weight: 800;
  }

  .split-hero-grid,
  .solution-row,
  .solution-overview,
  .scenario-layout,
  .resource-row,
  .inline-form-layout,
  .support-shortcuts,
  .service-feature,
  .buy-gateway-grid,
  .buy-preparation,
  .about-story-grid,
  .company-profile {
    gap: 40px;
  }

  .product-card,
  .product-card--featured {
    grid-template-columns: 1fr;
  }

  .product-card-media,
  .product-card:not(.product-card--featured) .product-card-media {
    min-height: 230px;
  }

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

  .product-detail-hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(300px, .8fr);
    gap: 28px;
  }

  .product-detail-media {
    height: 250px;
    padding: 20px;
  }

  .product-quick-specs .secondary-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-quick-specs .secondary-shell > div {
    border-bottom: 1px solid var(--color-border);
  }

  .product-spec-groups {
    grid-template-columns: 1fr;
  }

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

  .product-resource-layout {
    grid-template-columns: minmax(0, .72fr) minmax(340px, 1fr);
    gap: 40px;
  }

  .path-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .path-timeline li,
  .path-timeline li:first-child,
  .path-timeline li:last-child {
    min-height: 190px;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    border-radius: var(--radius-card);
  }

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

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

  .partner-process,
  .buy-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .channel-compare,
  .channel-regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .channel-compare article:last-child,
  .channel-regions article:last-child {
    grid-column: 1 / -1;
  }

  .news-row {
    grid-template-columns: 80px 220px minmax(0, 1fr);
    gap: 20px;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .landing-entry-layout {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 20px;
  }

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

  .split-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 44%);
    gap: 24px;
  }

  .split-hero-copy {
    padding: 18px 28px 22px 0;
  }

  .split-hero h1 {
    font-size: clamp(34px, 5vw, 44px);
  }

  .split-hero-copy > p:last-of-type {
    font-size: 16px;
    line-height: 1.55;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
    font-size: 16px;
  }

  .secondary-header {
    height: 64px;
  }

  .secondary-header-inner {
    width: min(100% - 28px, 1320px);
  }

  .secondary-brand,
  .secondary-brand img {
    width: 148px;
  }

  .visual-hero {
    height: var(--hero-products);
  }

  .visual-hero--cases {
    height: var(--hero-cases);
  }

  .visual-hero--partners {
    height: var(--hero-partners);
  }

  .visual-hero--about {
    height: var(--hero-about);
  }

  .visual-hero--detail {
    height: var(--hero-detail);
  }

  .visual-hero-media {
    object-position: 62% center;
  }

  .visual-hero-shade {
    background: rgba(4, 24, 48, .76);
  }

  .visual-hero-inner {
    padding: 14px 0 18px;
    justify-content: flex-end;
  }

  .page-breadcrumb {
    display: none;
  }

  .visual-hero-copy {
    max-width: 100%;
  }

  .visual-hero h1,
  .split-hero h1,
  .text-hero h1,
  .buy-title h1,
  .article-title h1 {
    font-size: clamp(30px, 9vw, 38px);
    letter-spacing: -.025em;
  }

  .visual-hero-copy > p:last-of-type {
    margin: 8px 0 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  .visual-hero .hero-action {
    min-height: 40px;
    padding: 8px 14px;
  }

  .split-hero,
  .split-hero--products {
    position: relative;
    min-height: var(--hero-solutions);
    background: #fff;
  }

  .split-hero--products {
    min-height: var(--hero-products);
  }

  .split-hero--detail {
    min-height: var(--hero-detail);
  }

  .split-hero-grid {
    position: relative;
    grid-template-columns: 1fr;
  }

  .split-hero-copy {
    position: relative;
    z-index: 2;
    width: 78%;
    min-height: inherit;
    padding: 12px 12px 16px 0;
    background: rgba(255, 255, 255, .92);
  }

  .split-hero-copy .page-breadcrumb {
    margin-bottom: auto;
  }

  .split-hero-copy .hero-eyebrow {
    margin-top: 4px;
  }

  .split-hero-copy > p:last-of-type {
    margin: 6px 0 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .split-hero-copy .hero-action {
    min-height: 40px;
    padding: 8px 12px;
  }

  .split-hero-media {
    position: absolute;
    inset: 0 0 0 auto;
    width: 45%;
    height: 100%;
  }

  .split-hero-media img {
    object-position: center;
  }

  .split-hero-media .content-status {
    display: none !important;
  }

  .text-hero {
    height: var(--hero-services);
  }

  .text-hero--about {
    height: var(--hero-about);
  }

  .text-hero--news {
    height: var(--hero-news);
  }

  .text-hero .page-breadcrumb {
    margin-bottom: 10px;
  }

  .text-hero-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .text-hero-row > p {
    font-size: 14px;
    line-height: 1.45;
  }

  .secondary-section {
    padding: var(--section-space) 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .section-heading > span:not(.content-status) {
    font-size: 15px;
  }

  .category-strip,
  .anchor-nav {
    top: 64px;
  }

  .category-strip .secondary-shell,
  .anchor-nav .secondary-shell,
  .service-tabs .secondary-shell {
    min-height: 52px;
    gap: 22px;
  }

  .landing-entry-layout {
    padding: 20px 0;
    display: block;
  }

  .landing-entry-intro {
    padding: 0;
    margin-bottom: 14px;
    border-right: 0;
  }

  .landing-entry-intro p {
    margin-bottom: 4px;
  }

  .landing-entry-intro h2 {
    font-size: 20px;
  }

  .landing-entry-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 3px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .landing-entry-grid::-webkit-scrollbar {
    display: none;
  }

  .landing-entry-grid > a {
    min-height: 96px;
    flex: 0 0 78%;
    padding: 14px;
    scroll-snap-align: start;
  }

  .landing-entry-grid small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-matrix,
  .feature-grid,
  .case-grid,
  .related-case-grid,
  .service-card-grid,
  .vision-grid,
  .about-link-grid,
  .related-news-grid {
    grid-template-columns: 1fr;
  }

  .product-card--featured {
    grid-column: auto;
  }

  .product-card,
  .product-card--featured {
    grid-template-columns: 1fr;
  }

  .product-card-media,
  .product-card:not(.product-card--featured) .product-card-media {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .product-card-copy {
    padding: 24px;
  }

  .product-category-nav .secondary-shell {
    min-height: auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .product-category-nav .secondary-shell::-webkit-scrollbar {
    display: none;
  }

  .product-category-nav a {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .product-catalog-intro {
    padding-bottom: 12px;
  }

  .product-category-section {
    padding-top: 20px;
    scroll-margin-top: 120px;
  }

  .product-category-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-category-heading > span {
    font-size: 15px;
  }

  .product-model-grid {
    grid-template-columns: 1fr;
  }

  .product-model-media {
    height: 210px;
    padding: 22px;
  }

  .product-model-copy {
    min-height: 0;
    padding: 22px;
  }

  .product-model-copy > p {
    min-height: 0;
  }

  .product-model-copy dl {
    margin-bottom: 24px;
  }

  .product-detail-hero {
    background: linear-gradient(180deg, #fff 0 60%, #edf5fc 60% 100%);
  }

  .product-detail-hero .secondary-shell {
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .product-detail-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-detail-copy {
    padding: 10px 0 0;
  }

  .product-detail-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .product-detail-copy > strong {
    font-size: 18px;
  }

  .product-detail-copy > p:not(.hero-eyebrow) {
    font-size: 15px;
  }

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

  .product-detail-actions a {
    justify-content: center;
  }

  .product-detail-media {
    height: 220px;
    padding: 20px 14px;
  }

  .product-quick-specs .secondary-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-quick-specs .secondary-shell > div,
  .product-quick-specs .secondary-shell > div:first-child {
    min-height: 92px;
    padding: 16px 14px;
    border-left: 0;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .product-quick-specs .secondary-shell > div:nth-child(even) {
    border-right: 0;
  }

  .product-highlight-grid article {
    min-height: auto;
  }

  .product-spec-groups,
  .product-scenario-grid,
  .product-resource-layout {
    grid-template-columns: 1fr;
  }

  .product-spec-group summary {
    min-height: 58px;
    padding: 13px 15px;
  }

  .product-spec-group dl > div {
    padding: 13px 15px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-scenario-grid article {
    min-height: auto;
    padding: 22px;
  }

  .product-scenario-grid h3 {
    margin-top: 24px;
  }

  .product-resource-layout {
    gap: 24px;
  }

  .product-download-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .product-download-card b {
    grid-column: 2;
    justify-self: start;
  }

  .feature-grid article {
    min-height: auto;
    padding: 22px;
  }

  .feature-grid h3 {
    margin-top: 20px;
  }

  .spec-table > div {
    padding: 15px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .spec-table .content-status {
    justify-self: start;
    margin-top: 8px !important;
  }

  .scenario-layout,
  .resource-row,
  .solution-row,
  .solution-overview,
  .case-story-grid,
  .inline-form-layout,
  .support-shortcuts,
  .service-feature,
  .buy-gateway-grid,
  .buy-preparation,
  .about-story-grid,
  .company-profile {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .scenario-layout > img,
  .about-story-grid img,
  .company-profile img {
    aspect-ratio: 16 / 10;
  }

  .resource-row .section-heading,
  .support-shortcuts .section-heading,
  .buy-preparation .section-heading {
    margin-bottom: 0;
  }

  .resource-list > div {
    grid-template-columns: auto 1fr;
  }

  .resource-list button {
    grid-column: 2;
    justify-self: start;
  }

  .consult-band {
    min-height: auto;
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .consult-band > a {
    width: 100%;
  }

  .solution-row--reverse .solution-row-media {
    order: 0;
  }

  .solution-row {
    gap: 22px;
  }

  .solution-row-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .solution-row h2,
  .product-card h3 {
    font-size: 28px;
  }

  .path-timeline,
  .partner-process,
  .buy-steps {
    grid-template-columns: 1fr;
  }

  .path-timeline li,
  .path-timeline li:first-child,
  .path-timeline li:last-child {
    min-height: auto;
  }

  .path-timeline h3 {
    margin-top: 18px;
  }

  .case-toolbar,
  .download-toolbar,
  .news-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .search-control,
  .search-control input {
    width: 100%;
    min-width: 0;
  }

  .filter-chips {
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
  }

  .case-card > div {
    padding: 22px;
  }

  .case-summary-strip .secondary-shell {
    min-height: auto;
    padding: 18px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-summary-strip .content-status {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .story-copy p {
    font-size: 16px;
  }

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

  .partner-logo {
    min-height: 98px;
    padding: 18px;
  }

  .inline-form,
  .contact-dialog form {
    grid-template-columns: 1fr;
  }

  .inline-form label:last-of-type,
  .contact-dialog label:last-of-type,
  .inline-form > button,
  .contact-dialog form > button,
  .inline-form output,
  .contact-dialog output {
    grid-column: 1;
  }

  .service-card-grid article {
    min-height: 230px;
  }

  .support-shortcuts a {
    min-height: 78px;
  }

  .download-head {
    display: none;
  }

  .download-table {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .download-row:not(.download-head) {
    margin-bottom: 12px;
    padding: 18px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: #fff;
  }

  .download-row:not(.download-head) strong {
    grid-column: 1 / -1;
  }

  .download-row:not(.download-head) .download-product-link {
    grid-column: 1 / -1;
  }

  .download-help {
    grid-template-columns: auto 1fr;
  }

  .download-help a {
    grid-column: 2;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-layout aside {
    position: static;
  }

  .faq-list summary {
    min-height: 68px;
    grid-template-columns: 34px 1fr auto;
    font-size: 16px;
  }

  .faq-list details > p,
  .faq-list .content-status {
    margin-left: 46px !important;
  }

  .buy-gateway {
    min-height: auto;
    padding: 14px 0 40px;
  }

  .buy-gateway .page-breadcrumb {
    margin-bottom: 24px;
  }

  .buy-title > p:last-of-type {
    font-size: 16px;
  }

  .buy-contact-card {
    padding: 18px;
  }

  .buy-contact-card h2 {
    margin: 4px 0;
    font-size: 22px;
  }

  .buy-contact-card > span {
    display: none;
  }

  .buy-contact-card button {
    min-height: 44px;
    margin-top: 10px;
  }

  .buy-gateway-grid {
    gap: 20px;
  }

  .buy-points {
    margin-top: 12px;
    gap: 4px 16px;
  }

  .buy-points span {
    min-height: 30px;
    font-size: 14px;
  }

  .buy-preparation > div:last-child {
    grid-template-columns: 1fr;
  }

  .buy-channel-link {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .buy-channel-link a {
    width: 100%;
    justify-content: center;
  }

  .buy-gateway--channels {
    min-height: 270px;
  }

  .channel-compare,
  .channel-regions {
    grid-template-columns: 1fr;
  }

  .channel-compare article,
  .channel-regions article {
    min-height: auto;
    grid-column: auto !important;
  }

  .channel-compare h2,
  .channel-regions h3 {
    margin-top: 20px;
  }

  .about-metric-band .secondary-shell {
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-metric-band .content-status {
    justify-self: start;
  }

  .vision-grid article,
  .about-link-grid a {
    min-height: 220px;
  }

  .vision-grid h2 {
    margin-top: 42px;
  }

  .history-timeline::before {
    left: 18px;
  }

  .history-timeline li {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-left: 44px;
  }

  .history-timeline time {
    padding: 26px 0 0 18px;
    text-align: left;
  }

  .history-timeline li > div {
    padding: 8px 0 28px 18px;
  }

  .history-timeline li > div > span {
    top: -22px;
    left: -44px;
  }

  .job-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .job-list .content-status {
    justify-self: start;
  }

  .job-list button {
    width: 100%;
  }

  .news-feature {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .news-feature > img {
    aspect-ratio: 16 / 10;
  }

  .news-feature > div {
    padding: 24px;
  }

  .news-toolbar {
    margin-top: 56px;
  }

  .news-index .news-toolbar {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .news-index .news-toolbar .section-heading {
    display: none;
  }

  .news-toolbar > div:last-child {
    flex-direction: column;
  }

  .sort-control,
  .sort-control select {
    width: 100%;
  }

  .news-row,
  .related-news-grid .news-row {
    min-height: auto;
    padding: 22px 0;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    background: transparent;
  }

  .news-row-media,
  .related-news-grid .news-row-media {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
  }

  .news-row > time,
  .related-news-grid .news-row > time {
    grid-row: 2;
    padding: 0;
  }

  .news-row > div,
  .related-news-grid .news-row > div {
    grid-column: 2;
    grid-row: 2;
    padding: 0;
  }

  .news-row h2 {
    font-size: 21px;
  }

  .news-row > div > a:last-child {
    margin-top: 14px;
  }

  .news-index .news-row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 12px;
  }

  .news-index .news-row > time {
    grid-column: 1;
    grid-row: 2;
    display: block;
    min-height: 24px;
    padding: 0;
  }

  .news-index .news-row > time strong,
  .news-index .news-row > time > span:not(.news-row-date-mobile) {
    display: none;
  }

  .news-index .news-row > time .news-row-date-mobile {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 24px;
    letter-spacing: 0;
  }

  .news-index .news-row > div {
    grid-column: 1;
    grid-row: 3;
    padding: 0;
  }

  .article-header {
    height: auto;
    min-height: 0;
    padding: 18px 0 24px;
  }

  .article-header > .secondary-shell {
    gap: 14px;
  }

  .article-mobile-back {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 750;
  }

  .article-header .page-breadcrumb {
    display: none;
  }

  .article-title > p:first-child {
    margin: 0;
    font-size: 12px;
    letter-spacing: .08em;
  }

  .article-title h1 {
    margin: 6px 0 0;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.28;
    letter-spacing: -.02em;
  }

  .article-title > p:nth-of-type(2) {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.65;
  }

  .article-meta {
    margin-top: 14px;
    gap: 8px 14px;
  }

  .article-tags {
    margin-top: 10px;
  }

  .article-cover {
    width: calc(100% - 32px);
    height: auto;
    max-height: min(70vh, 620px);
    aspect-ratio: var(--article-cover-aspect-ratio, 16 / 9);
  }

  .article-body {
    width: min(100% - 32px, 760px);
    padding: 32px 0 64px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article-body aside {
    display: none;
  }

  .article-body > div > p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.85;
  }

  .article-body .content-prose > :first-child {
    margin-top: 0;
  }

  .article-body h2 {
    margin: 30px 0 12px;
    font-size: 25px;
    line-height: 1.36;
  }

  .article-body h3 {
    margin: 26px 0 10px;
    font-size: 21px;
    line-height: 1.42;
  }

  .article-body ul,
  .article-body ol {
    padding-left: 1.25em;
  }

  .article-body .article-lead {
    font-size: 20px;
  }

  .secondary-footer {
    padding-top: 48px;
    padding-bottom: calc(62px + max(14px, env(safe-area-inset-bottom)));
  }

  .secondary-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand,
  .footer-status {
    grid-column: 1 / -1;
  }

  .secondary-footer-bottom {
    min-height: 68px;
    margin-top: 36px;
  }

  .contact-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    padding: 28px 20px 22px;
    overflow-y: auto;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 90;
    min-height: 50px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(8, 78, 145, .26);
  }
}

@media (max-width: 1024px) {
  .company-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .company-service-layout,
  .company-contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .company-gallery figure.company-gallery-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 390px;
  }

  .company-vision-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .page-breadcrumb a,
  .product-model-copy h3 a,
  .secondary-footer nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .page-breadcrumb a {
    min-width: 44px;
    justify-content: center;
  }

  .visual-hero .hero-action,
  .split-hero-copy .hero-action {
    min-height: 44px;
  }

  .company-profile img {
    aspect-ratio: 4 / 3;
  }

  .company-fact-grid,
  .company-capability-grid,
  .company-gallery {
    grid-template-columns: 1fr;
  }

  .company-fact-grid article,
  .company-capability-grid article {
    min-height: auto;
    padding: 22px;
  }

  .company-fact-grid span {
    margin-top: 44px;
  }

  .company-capability-grid h3 {
    margin-top: 34px;
  }

  .company-service-flow li {
    min-height: auto;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .company-service-flow b {
    width: 42px;
    height: 42px;
  }

  .company-gallery figure,
  .company-gallery figure.company-gallery-featured {
    height: auto;
    aspect-ratio: 4 / 3;
    grid-column: auto;
  }

  .company-address-list article {
    min-height: auto;
    padding: 18px;
  }

  .company-vision-band {
    min-height: auto;
    padding: 28px 22px;
  }

  .company-vision-band a {
    width: 100%;
    justify-content: center;
  }

  .about-award {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
  }
}

@media (max-width: 390px) {
  .secondary-footer-grid {
    grid-template-columns: 1fr;
  }

  .secondary-footer nav,
  .footer-brand,
  .footer-status {
    grid-column: 1;
  }

  .partner-logo-grid {
    gap: 10px;
  }

  .partner-logo {
    min-height: 88px;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
