:root {
  --ink: #172033;
  --ink-soft: #526177;
  --ink-muted: #7b889a;
  --blue: #155aa8;
  --blue-dark: #173a63;
  --blue-soft: #eef5fb;
  --cyan: #2aa7a2;
  --green: #168365;
  --orange: #c9782d;
  --amber: #d9a441;
  --warm-soft: #fff6ea;
  --graphite: #1d222b;
  --red: #d64545;
  --surface: #ffffff;
  --surface-soft: #f7f7f5;
  --border: #e3e1dc;
  --shadow: 0 18px 45px rgba(36, 37, 42, 0.08);
  --container: 1200px;
  --header-height: 82px;
  --app-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a:hover {
  color: var(--blue);
}

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

button {
  cursor: pointer;
}

svg {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(31, 183, 201, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(8, 27, 51, 0.04);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.home-page .site-header,
.overlay-header-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  color: #ffffff;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.home-page .site-header:hover,
.home-page .site-header:focus-within,
.home-page .site-header.is-hover,
.home-page .site-header.is-solid,
.home-page.menu-open .site-header,
.overlay-header-page .site-header:hover,
.overlay-header-page .site-header:focus-within,
.overlay-header-page .site-header.is-hover,
.overlay-header-page .site-header.is-solid,
.overlay-header-page.menu-open .site-header {
  color: var(--ink);
  background: #ffffff;
  border-bottom: 0;
  box-shadow: 0 10px 24px rgba(8, 27, 51, 0.08);
}

.home-page .site-header:hover .brand-logo-wrap,
.home-page .site-header:focus-within .brand-logo-wrap,
.home-page .site-header.is-hover .brand-logo-wrap,
.home-page .site-header.is-solid .brand-logo-wrap,
.home-page.menu-open .site-header .brand-logo-wrap,
.overlay-header-page .site-header:hover .brand-logo-wrap,
.overlay-header-page .site-header:focus-within .brand-logo-wrap,
.overlay-header-page .site-header.is-hover .brand-logo-wrap,
.overlay-header-page .site-header.is-solid .brand-logo-wrap,
.overlay-header-page.menu-open .site-header .brand-logo-wrap {
  background: rgba(255, 255, 255, 0.72);
}

.home-page .site-header:hover .nav-link,
.home-page .site-header:focus-within .nav-link,
.home-page .site-header.is-hover .nav-link,
.home-page .site-header.is-solid .nav-link,
.home-page.menu-open .site-header .nav-link,
.overlay-header-page .site-header:hover .nav-link,
.overlay-header-page .site-header:focus-within .nav-link,
.overlay-header-page .site-header.is-hover .nav-link,
.overlay-header-page .site-header.is-solid .nav-link,
.overlay-header-page.menu-open .site-header .nav-link {
  text-shadow: none;
}

.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) {
  color: #ffffff;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) .brand-logo-wrap {
  background: transparent;
  box-shadow: none;
}

.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) .brand-logo-dark {
  opacity: 0;
}

.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) .brand-logo-light {
  opacity: 1;
}

.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) .nav-link,
.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) .nav-link.is-current,
.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) .tool-button,
.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) .tool-link {
  color: currentColor;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.overlay-header-page:not(.menu-open) .site-header:not(.is-solid) .tool-button {
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.22));
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.main-nav {
  min-height: var(--header-height);
  background: transparent;
}

.nav-inner {
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  flex: 0 0 auto;
}

.brand-emblem {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  background: #b91927;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(120, 22, 29, 0.16);
}

.brand-emblem img {
  display: block;
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.brand-logo-wrap {
  position: relative;
  display: inline-flex;
  width: 148px;
  height: 38px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 4px;
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.home-page .brand-logo-wrap,
.overlay-header-page .brand-logo-wrap {
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.brand-logo-wrap .brand-logo + .brand-logo {
  position: absolute;
  left: 6px;
  top: 50%;
  width: calc(100% - 12px);
  transform: translateY(-50%);
}

.brand-logo-light {
  opacity: 0;
}

.home-page .brand-logo-dark,
.overlay-header-page .brand-logo-dark {
  opacity: 0;
}

.home-page .brand-logo-light,
.overlay-header-page .brand-logo-light {
  opacity: 1;
}

.home-page .site-header:hover .brand-logo-dark,
.home-page .site-header:focus-within .brand-logo-dark,
.home-page .site-header.is-hover .brand-logo-dark,
.home-page .site-header.is-solid .brand-logo-dark,
.home-page.menu-open .site-header .brand-logo-dark,
.overlay-header-page .site-header:hover .brand-logo-dark,
.overlay-header-page .site-header:focus-within .brand-logo-dark,
.overlay-header-page .site-header.is-hover .brand-logo-dark,
.overlay-header-page .site-header.is-solid .brand-logo-dark,
.overlay-header-page.menu-open .site-header .brand-logo-dark {
  opacity: 1;
}

.home-page .site-header:hover .brand-logo-light,
.home-page .site-header:focus-within .brand-logo-light,
.home-page .site-header.is-hover .brand-logo-light,
.home-page .site-header.is-solid .brand-logo-light,
.home-page.menu-open .site-header .brand-logo-light,
.overlay-header-page .site-header:hover .brand-logo-light,
.overlay-header-page .site-header:focus-within .brand-logo-light,
.overlay-header-page .site-header.is-hover .brand-logo-light,
.overlay-header-page .site-header.is-solid .brand-logo-light,
.overlay-header-page.menu-open .site-header .brand-logo-light {
  opacity: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  color: var(--ink);
  font-size: 18px;
}

.brand small {
  color: var(--ink-muted);
  font-size: 12px;
}

.primary-nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  margin-left: auto;
}

.nav-item {
  display: flex;
  align-items: stretch;
}

.nav-link {
  position: relative;
  min-height: var(--header-height);
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #0f315b;
  font-size: 16px;
  font-weight: 500;
}

.home-page .nav-link,
.overlay-header-page .nav-link {
  color: currentColor;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.overlay-header-page .nav-link.is-current {
  color: currentColor;
}

.overlay-header-page .site-header:hover .nav-link.is-current,
.overlay-header-page .site-header:focus-within .nav-link.is-current,
.overlay-header-page .site-header.is-hover .nav-link.is-current,
.overlay-header-page .site-header.is-solid .nav-link.is-current,
.overlay-header-page.menu-open .site-header .nav-link.is-current {
  color: var(--blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link,
.nav-item.is-open .nav-link,
.nav-link.is-current {
  color: var(--blue);
  text-shadow: none;
}

.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after,
.nav-item.is-open .nav-link::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: grid;
  justify-items: center;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 28px 48px rgba(17, 44, 79, 0.12);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, -18px, 0);
  transform-origin: top center;
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 320ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 320ms;
  will-change: opacity, transform, clip-path;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.mega-inner {
  width: min(100% - 40px, 1340px);
  min-height: 438px;
  display: grid;
  grid-template-columns: 320px 1fr 300px;
  gap: 48px;
  padding: 48px 0 36px;
  opacity: 0;
  transform: translate3d(0, -14px, 0);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.nav-item:hover .mega-inner,
.nav-item:focus-within .mega-inner,
.nav-item.is-open .mega-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mega-inner.compact {
  min-height: 330px;
  grid-template-columns: 320px 1fr 320px;
}

.mega-inner.no-rail {
  grid-template-columns: minmax(0, 1fr) 320px;
  padding-left: 52px;
  padding-right: 52px;
}

.mega-inner.no-rail::before {
  content: none;
  display: none;
}

.mega-inner.compact::before {
  content: "";
  background: #f6f9fd;
  border-right: 1px solid var(--border);
}

.mega-rail {
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 12px 0;
  background: #f6f9fd;
  border-right: 1px solid var(--border);
}

.mega-rail a,
.mega-columns a,
.mega-feature a {
  color: #54687f;
}

.mega-rail a {
  display: block;
  padding: 0 34px;
  font-size: 21px;
  font-weight: 500;
}

.mega-rail a:hover,
.mega-columns a:hover,
.mega-feature a:hover {
  color: var(--blue);
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-content: start;
}

.mega-columns-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.mega-columns h3 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  color: #5d7085;
  border-bottom: 1px solid #dfe6ee;
  font-size: 22px;
  font-weight: 500;
}

.mega-columns h3 a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.mega-columns a {
  display: block;
  min-height: 34px;
  font-size: 16px;
}

.mega-feature {
  align-self: start;
  min-height: 260px;
  padding: 34px 0 0 46px;
  border-left: 1px solid var(--border);
}

.mega-feature span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
}

.mega-feature strong {
  display: block;
  color: #4a5d73;
  font-size: 17px;
  font-weight: 500;
}

.mega-feature p {
  max-width: 230px;
  margin: 18px 0 22px;
  color: var(--ink-soft);
}

.mega-feature a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.mega-feature a::after {
  content: ">";
  margin-left: 10px;
}



.hot-products-feature {
  min-height: 300px;
}

.hot-product-card {
  display: grid;
  gap: 12px;
  min-height: 214px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hot-product-card.is-changing {
  opacity: 0.18;
  transform: translateY(4px);
}

.hot-product-visual {
  width: 104px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  overflow: visible;
}

.hot-product-visual img {
  max-width: 104px;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(15, 31, 53, 0.22));
}

.hot-products-feature [data-hot-title] {
  color: #101c2f;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 800;
}

.hot-products-feature [data-hot-desc] {
  min-height: 78px;
  max-width: 248px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.hot-product-dots {
  display: flex;
  gap: 7px;
  margin-top: 4px;
}

.hot-product-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #cbd8e7;
  transition: width 180ms ease, background 180ms ease;
}

.hot-product-dots span.is-active {
  width: 18px;
  background: var(--blue);
}
.nav-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 96px;
  justify-content: flex-end;
}

[data-open-search],
[data-open-auth] {
  display: none !important;
  pointer-events: none;
}

.tool-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue);
  background: transparent;
  border: 0;
}

.home-page .tool-button,
.overlay-header-page .tool-button {
  color: currentColor;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.22));
}

.tool-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font-size: 15px;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.home-page .tool-link,
.overlay-header-page .tool-link {
  color: currentColor;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.home-page .site-header:hover .tool-button,
.home-page .site-header:hover .tool-link,
.home-page .site-header:focus-within .tool-button,
.home-page .site-header:focus-within .tool-link,
.home-page .site-header.is-hover .tool-button,
.home-page .site-header.is-hover .tool-link,
.home-page .site-header.is-solid .tool-button,
.home-page .site-header.is-solid .tool-link,
.home-page.menu-open .site-header .tool-button,
.home-page.menu-open .site-header .tool-link,
.overlay-header-page .site-header:hover .tool-button,
.overlay-header-page .site-header:hover .tool-link,
.overlay-header-page .site-header:focus-within .tool-button,
.overlay-header-page .site-header:focus-within .tool-link,
.overlay-header-page .site-header.is-hover .tool-button,
.overlay-header-page .site-header.is-hover .tool-link,
.overlay-header-page .site-header.is-solid .tool-button,
.overlay-header-page .site-header.is-solid .tool-link,
.overlay-header-page.menu-open .site-header .tool-button,
.overlay-header-page.menu-open .site-header .tool-link {
  color: var(--blue);
  text-shadow: none;
  filter: none;
}

.site-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(8, 18, 32, 0.46);
  backdrop-filter: blur(3px);
}

.site-panel {
  position: fixed;
  top: calc(var(--header-height) + 18px);
  right: max(24px, calc((100vw - var(--container)) / 2));
  z-index: 190;
  width: min(440px, calc(100vw - 32px));
  color: var(--ink);
}

.site-panel[hidden],
.site-panel-overlay[hidden] {
  display: none;
}

.site-panel-inner {
  position: relative;
  display: grid;
  gap: 18px;
  max-height: calc(100vh - var(--header-height) - 42px);
  overflow-y: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(196, 209, 224, 0.9);
  box-shadow: 0 22px 60px rgba(8, 27, 51, 0.22);
}

.site-panel-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--ink-muted);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  cursor: pointer;
}

.site-panel-close span {
  font-size: 28px;
  line-height: 1;
}

.site-panel h2 {
  margin: 0;
  padding-right: 48px;
}

.site-search-form,
.auth-form {
  display: grid;
  gap: 10px;
}

.site-search-form label,
.auth-form label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

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

.site-search-control input,
.auth-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--border);
  font: inherit;
}

.site-search-control input:focus,
.auth-form input:focus {
  outline: 2px solid rgba(0, 95, 184, 0.22);
  border-color: var(--blue);
}

.site-search-results {
  display: grid;
  gap: 10px;
  max-height: min(42vh, 360px);
  overflow-y: auto;
}

.site-search-result {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface-soft);
  border-left: 4px solid var(--blue);
}

.site-search-result strong {
  font-size: 16px;
}

.site-search-result span,
.site-search-empty,
.account-status {
  color: var(--ink-soft);
  font-size: 14px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 4px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.auth-tabs button {
  min-height: 42px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-tabs button.is-active {
  color: #ffffff;
  background: var(--blue);
}

.auth-form[hidden],
.account-summary[hidden] {
  display: none;
}

.account-summary {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--surface-soft);
  border-left: 4px solid var(--blue);
}

.account-summary strong {
  font-size: 20px;
}

.account-summary span {
  color: var(--ink-soft);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.overlay-header-page:not(.menu-open) .site-header.is-at-hero,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover {
  color: #ffffff;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.overlay-header-page:not(.menu-open) .site-header.is-at-hero .brand-logo-wrap,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .brand-logo-wrap,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .brand-logo-wrap,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .brand-logo-wrap {
  background: transparent;
  box-shadow: none;
}

.overlay-header-page:not(.menu-open) .site-header.is-at-hero .brand-logo-dark,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .brand-logo-dark,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .brand-logo-dark,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .brand-logo-dark {
  opacity: 0;
}

.overlay-header-page:not(.menu-open) .site-header.is-at-hero .brand-logo-light,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .brand-logo-light,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .brand-logo-light,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .brand-logo-light {
  opacity: 1;
}

.overlay-header-page:not(.menu-open) .site-header.is-at-hero .nav-link,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero .nav-link.is-current,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero .tool-button,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero .tool-link,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .nav-link,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .nav-link.is-current,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .tool-button,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .tool-link,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .nav-link,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .nav-link.is-current,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .tool-button,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .tool-link,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .nav-link,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .nav-link.is-current,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .tool-button,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .tool-link {
  color: currentColor;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.overlay-header-page:not(.menu-open) .site-header.is-at-hero .tool-button,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .tool-button,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .tool-button,
.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .tool-button {
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.22));
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.25;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta,
.button.primary {
  color: #ffffff;
  background: var(--blue);
}

.nav-cta:hover,
.button.primary:hover {
  color: #ffffff;
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button.ghost {
  color: var(--blue-dark);
  background: #ffffff;
  border-color: #bad4ee;
}

.button.ghost:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(clamp(700px, 58vw, 820px), calc(100svh - 56px));
  overflow: hidden;
  color: #ffffff;
  background: #171b22;
}

.hero-slides {
  position: relative;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 20, 25, 0.88) 0%, rgba(32, 34, 39, 0.66) 44%, rgba(91, 69, 44, 0.2) 76%, rgba(30, 35, 43, 0.06) 100%),
    linear-gradient(180deg, rgba(23, 27, 34, 0.04), rgba(80, 50, 31, 0.32));
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center);
  filter: saturate(0.96) sepia(0.05);
}

.hero-slide[data-slide="0"] {
  --hero-image: url("assets/hero-10micro-lab.png");
  --hero-focus: center top;
}

.hero-slide[data-slide="1"] {
  --hero-image: url("assets/hero-10micro-auto.png");
  --hero-focus: center top;
}

.hero-slide[data-slide="2"] {
  --hero-image: url("assets/hero-10micro-rd.png");
  --hero-focus: center top;
}

.hero-slide[data-slide="5"] {
  --hero-image: url("assets/hero-10micro-blue-robot.png");
  --hero-focus: center top;
}

.hero-slide[data-slide="3"] {
  --hero-image: url("assets/hero-10micro-option11.png");
  --hero-focus: center top;
}

.hero-slide[data-slide="4"] {
  --hero-image: url("assets/hero-10micro-blue-auto.png");
  --hero-focus: center top;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(clamp(700px, 58vw, 820px), calc(100svh - 56px));
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
  padding: calc(var(--header-height) + 72px) 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: #10233f;
  font-size: 50px;
  line-height: 1.14;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: #10233f;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  color: #10233f;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1,
.hero h2 {
  max-width: 700px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.26;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section-link,
.product-card a,
.application-card a,
.news-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
}

.section-link::after,
.product-card a::after,
.application-card a::after,
.news-grid a::after {
  content: ">";
  margin-left: 8px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  position: relative;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-dots button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.hero-dots button.active::before {
  background: var(--blue);
}

.quick-links {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quick-grid a {
  min-height: 124px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  align-content: center;
  padding: 22px;
  border-right: 1px solid var(--border);
}

.quick-grid a:last-child {
  border-right: 0;
}

.quick-icon {
  grid-row: 1 / 3;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
}

.quick-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-grid strong {
  align-self: end;
  color: #10233f;
}

.quick-grid small {
  color: var(--ink-muted);
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
}

.section-head.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.products,
.news,
.quick-links + .products {
  background: #ffffff;
}

.hot-products-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.55fr;
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}

.hot-products-intro {
  max-width: 360px;
}

.hot-products-intro h2 {
  margin-bottom: 22px;
  color: var(--graphite);
  font-size: 46px;
  line-height: 1.1;
}

.hot-products-intro p {
  color: var(--ink-soft);
}

.hot-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 72px;
  padding-top: 6px;
}

.hot-product {
  min-height: 104px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  color: var(--graphite);
}

.hot-product:hover {
  color: var(--graphite);
}

.hot-product > span:last-child {
  display: grid;
  gap: 12px;
}

.hot-product > span:last-child > strong {
  color: var(--graphite);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
  transition: color 180ms ease;
}

.hot-product small {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.hot-product:hover > span:last-child > strong {
  color: var(--red);
}

.chip-thumb {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 58px;
  min-height: 54px;
  padding: 8px 7px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #2a2e35, #0f1217 76%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 13px 18px rgba(30, 28, 24, 0.2);
  transform: rotate(-12deg);
}

.chip-thumb::before,
.chip-thumb::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 6px;
  background: repeating-linear-gradient(to bottom, #9da2a7 0 4px, transparent 4px 8px);
}

.chip-thumb::before {
  left: -6px;
}

.chip-thumb::after {
  right: -6px;
}

.chip-thumb span {
  font-size: 7px;
  line-height: 1;
  opacity: 0.82;
}

.chip-thumb strong {
  margin-top: 5px;
  color: #ffffff;
  font-size: 8px;
  line-height: 1;
  font-family: Consolas, "Liberation Mono", monospace;
}

.chip-square {
  width: 54px;
  min-height: 54px;
  transform: rotate(0deg);
}

.chip-tall {
  width: 50px;
  min-height: 62px;
  transform: rotate(0deg);
}

.chip-wide {
  width: 66px;
  min-height: 46px;
}

.chip-warm {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #3b3128, #14110e 78%);
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab-button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink-soft);
  background: #ffffff;
  border: 1px solid var(--border);
  font-weight: 700;
}

.tab-button.active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

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

.product-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.05);
}

.product-card.feature {
  grid-row: span 2;
  color: #ffffff;
  background: linear-gradient(160deg, var(--blue-dark), var(--blue) 62%, #0fa8bd);
  border: 0;
}

.product-card.is-hidden {
  display: none;
}

.product-category {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
}

.product-card.feature .product-category {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.product-card.feature h3,
.product-card.feature p,
.product-card.feature a,
.product-card.feature dt,
.product-card.feature dd {
  color: #ffffff;
}

.product-card p {
  color: var(--ink-soft);
}

.product-card a {
  margin-top: auto;
}

.product-card dl {
  display: grid;
  gap: 1px;
  margin: 18px 0 24px;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
}

.product-card dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  min-height: 42px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
}

.product-card dt,
.product-card dd {
  margin: 0;
}

.product-card dt {
  opacity: 0.82;
}

.product-card dd {
  font-weight: 800;
}

.applications,
.resources,
.about {
  background: var(--surface-soft);
}

.application-accordion {
  --app-motion: 1050ms var(--app-ease);
  --app-cols: 4.5fr 0.92fr 0.92fr 0.92fr;
  display: grid;
  grid-template-columns: var(--app-cols);
  width: 100%;
  height: 560px;
  margin-top: 14px;
  overflow: hidden;
  background: #171b22;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  contain: layout paint;
  transform: translateZ(0);
  transition: grid-template-columns var(--app-motion);
  will-change: grid-template-columns;
}

.application-accordion[data-active="industrial"] {
  --app-cols: 4.5fr 0.92fr 0.92fr 0.92fr;
}

.application-accordion[data-active="automotive"] {
  --app-cols: 0.92fr 4.5fr 0.92fr 0.92fr;
}

.application-accordion[data-active="consumer"] {
  --app-cols: 0.92fr 0.92fr 4.5fr 0.92fr;
}

.application-accordion[data-active="wireless"] {
  --app-cols: 0.92fr 0.92fr 0.92fr 4.5fr;
}

.app-panel {
  position: relative;
  min-width: 0;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #171b22;
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  cursor: pointer;
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.app-panel:last-child {
  border-right: 0;
}

.app-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--panel-image);
  background-size: cover;
  background-position: center;
  transform: translateZ(0) scale(1.025);
  transition: transform 1120ms var(--app-ease);
  will-change: transform;
}

.app-panel:focus-visible::before,
.app-panel.is-active::before {
  transform: translateZ(0) scale(1.075);
}

.app-panel-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 20, 25, 0.5);
}

.app-panel-shade::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 27, 0.88), rgba(38, 34, 29, 0.52)),
    linear-gradient(180deg, rgba(37, 31, 26, 0.1), rgba(19, 20, 25, 0.72));
  opacity: 0;
  transition: opacity 760ms var(--app-ease);
  will-change: opacity;
}

.app-panel.is-active .app-panel-shade::before {
  opacity: 1;
}

.app-panel-icon {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #ffffff;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition:
    opacity 520ms ease,
    transform 720ms var(--app-ease);
  will-change: opacity, transform;
}

.app-panel-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
}

.app-panel.is-active .app-panel-icon {
  opacity: 0;
  transform: translate3d(-50%, calc(-50% - 24px), 0) scale(0.86);
}

.app-panel-content {
  position: relative;
  z-index: 3;
  width: min(720px, calc(100% - 96px));
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 560ms ease,
    transform 820ms var(--app-ease);
  will-change: opacity, transform;
}

.app-panel:not(.is-active) .app-panel-content {
  width: 100%;
  transform: translate3d(0, 68px, 0);
}

.app-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.2;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
}

.app-panel.is-active h3 {
  margin-bottom: 18px;
}

.app-panel p {
  overflow: hidden;
  max-width: 760px;
  max-height: 160px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.85;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
  transition:
    opacity 520ms ease 90ms,
    max-height 680ms var(--app-ease),
    transform 720ms var(--app-ease);
}

.app-panel a {
  display: inline-flex;
  min-width: 144px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.86);
  font-weight: 800;
  transition:
    opacity 500ms ease 130ms,
    transform 720ms var(--app-ease),
    background-color 220ms ease,
    border-color 220ms ease;
}

.app-panel a::after {
  content: ">";
  margin-left: 10px;
}

.app-panel:not(.is-active) p,
.app-panel:not(.is-active) a {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
}

.resource-layout,
.technology-grid,
.about-grid,
.contact-strip-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.resource-layout p,
.technology-grid p,
.about-grid p,
.contact-strip p {
  color: var(--ink-soft);
}

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

.resource-list a {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.resource-list strong {
  color: #10233f;
}

.resource-list span {
  margin-top: 4px;
  color: var(--ink-muted);
}

.technology {
  color: #ffffff;
  background: linear-gradient(115deg, #10233f, #0d63b7 64%, #0f9f9a);
}

.technology h2,
.technology .eyebrow {
  color: #ffffff;
}

.technology-grid p {
  color: rgba(255, 255, 255, 0.86);
}

.tech-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-matrix span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: Consolas, "Liberation Mono", monospace;
  font-weight: 700;
}

.quality {
  background: #ffffff;
}

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

.assurance-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.assurance-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 28px;
  font-weight: 800;
}

.assurance-grid p {
  color: var(--ink-soft);
}

.sustainability {
  background: linear-gradient(115deg, #edf8f5, #ffffff 48%, #eef6ff);
}

.sustainability-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.sustainability-layout p {
  color: var(--ink-soft);
}

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

.sustainability-list a {
  display: grid;
  gap: 4px;
  min-height: 88px;
  align-content: center;
  padding: 22px 26px;
  background: #ffffff;
  border-left: 4px solid var(--green);
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.06);
}

.sustainability-list a:nth-child(2) {
  border-left-color: var(--blue);
}

.sustainability-list a:nth-child(3) {
  border-left-color: var(--cyan);
}

.sustainability-list strong {
  color: #10233f;
}

.sustainability-list span {
  color: var(--ink-soft);
}

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

.news-grid article {
  min-height: 260px;
  padding: 26px;
  background: #ffffff;
  border-top: 4px solid var(--blue);
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.05);
}

.news-grid article:nth-child(2) {
  border-color: var(--green);
}

.news-grid article:nth-child(3) {
  border-color: var(--orange);
}

.news-grid time {
  color: var(--ink-muted);
  font-family: Consolas, "Liberation Mono", monospace;
  font-weight: 800;
}

.news-list {
  gap: 22px;
}

.news-detail {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.news-meta time,
.news-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.news-meta time {
  color: var(--ink-muted);
  font-family: Consolas, "Liberation Mono", monospace;
}

.news-meta span {
  padding: 0 10px;
  color: var(--blue);
  background: var(--blue-soft);
}

.news-detail ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.news-card-list {
  gap: 20px;
}

.news-card-list .section-head {
  margin-bottom: 4px;
}

.news-card-list .section-head.compact {
  margin-top: 24px;
}

.news-card-list .section-head h2 {
  margin-bottom: 0;
  font-size: 26px;
}

.news-index-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.05);
  transition: transform 220ms var(--app-ease), box-shadow 220ms var(--app-ease), border-color 220ms var(--app-ease);
}

.news-index-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 90, 168, 0.28);
  box-shadow: 0 16px 34px rgba(22, 48, 85, 0.1);
}

.news-index-card a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  min-height: 184px;
  color: inherit;
}

.news-index-card.is-featured a {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  min-height: 300px;
}

.news-index-media {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--surface-soft);
}

.news-index-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 360ms var(--app-ease);
}

.news-index-card:hover .news-index-media img {
  transform: scale(1.035);
}

.news-index-body {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px 26px 24px 0;
}

.news-index-body strong {
  color: #10233f;
  font-size: 22px;
  line-height: 1.35;
}

.news-index-card.is-featured .news-index-body strong {
  font-size: 30px;
}

.news-index-body small {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.read-more {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
}

.read-more::after {
  content: ">";
  margin-left: 8px;
}

.article-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f5 100%);
}

.article-hero {
  padding: calc(var(--header-height) + 70px) 0 74px;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(17, 24, 38, 0.96) 0%, rgba(31, 39, 52, 0.9) 45%, rgba(119, 73, 44, 0.72) 100%),
    url("assets/hero-10micro-rd.png") center / cover;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.article-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.article-back::before {
  content: "<";
  margin-right: 8px;
}

.article-back:hover {
  color: #ffffff;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.article-meta time,
.article-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.article-meta time {
  font-family: Consolas, "Liberation Mono", monospace;
  opacity: 0.82;
}

.article-meta span {
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.article-hero h1 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.18;
}

.article-subtitle {
  margin: -6px 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 700;
}

.article-hero p:not(.article-subtitle) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.article-hero-media {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.article-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}


.article-hero-media-contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.5vw, 18px);
  background: rgba(255, 255, 255, 0.94);
}

.article-hero-media-contain img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
}
.application-detail-page .article-hero-media {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 248, 0.9)),
    #ffffff;
}

.application-detail-page .article-hero-media img {
  padding: 18px;
  object-fit: contain;
}

.article-body {
  padding: 70px 0 96px;
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.05);
}

.article-toc a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.article-toc a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.article-content {
  display: grid;
  gap: 26px;
}

.article-section {
  padding: clamp(28px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.05);
}

.article-section h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.article-section p {
  max-width: 820px;
  color: var(--ink-soft);
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.article-spec-grid,
.article-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

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

.article-spec-grid div,
.article-highlight-grid div {
  min-height: 118px;
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 20px;
  background: var(--surface-soft);
  border-top: 4px solid var(--blue);
}

.article-spec-grid div:nth-child(2),
.article-highlight-grid div:nth-child(2) {
  border-top-color: var(--green);
}

.article-spec-grid div:nth-child(3),
.article-highlight-grid div:nth-child(3) {
  border-top-color: var(--orange);
}

.article-spec-grid div:nth-child(4) {
  border-top-color: var(--cyan);
}

.article-spec-grid strong,
.article-highlight-grid strong {
  color: #10233f;
  font-size: 22px;
  line-height: 1.25;
}

.article-spec-grid span,
.article-highlight-grid span {
  color: var(--ink-soft);
  font-size: 14px;
}

.article-figure-grid,
.article-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.article-figure-grid.two-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-figure-grid figure,
.article-photo-grid figure {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
}

.article-figure-grid img,
.article-photo-grid img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.article-photo-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-figure-grid figcaption {
  padding: 12px 14px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid var(--border);
}

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

.article-nav a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: #10233f;
  background: #ffffff;
  border: 1px solid var(--border);
  font-weight: 800;
}

.article-nav a:hover {
  color: var(--blue);
  border-color: rgba(21, 90, 168, 0.28);
}

.milestone-list {
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--border);
}

.milestone-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
}

.milestone-list div:last-child {
  border-bottom: 0;
}

.milestone-list dt,
.milestone-list dd {
  margin: 0;
}

.milestone-list dt {
  color: var(--blue);
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 22px;
  font-weight: 800;
}

.milestone-list dd {
  color: var(--ink-soft);
}

.about-timeline-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #141821;
  background:
    radial-gradient(circle at 50% 22%, rgba(13, 92, 182, 0.1), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(201, 48, 44, 0.06), transparent 28%),
    linear-gradient(180deg, #f3f7fc 0%, #ffffff 46%, #f6f8fb 100%);
}

.milestone-particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(243, 247, 252, 0.96), rgba(255, 255, 255, 0.62) 50%, rgba(243, 247, 252, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent 34%, rgba(246, 248, 251, 0.9));
}

.about-timeline-section .container {
  position: relative;
  z-index: 2;
}

.about-timeline-section .eyebrow {
  color: #8a3130;
}

.about-timeline-section h2 {
  color: #141821;
}

.about-timeline-section .section-head p:last-child {
  max-width: 720px;
  color: #5f6876;
  text-align: center;
}

.about-timeline-section .section-head.split {
  justify-items: center;
  text-align: center;
}

.about-history-timeline {
  width: min(100%, 880px);
  display: grid;
  gap: 0;
  margin: 46px auto 0;
  padding: 18px 0 8px;
  transform: none;
}

.history-era {
  position: relative;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 64px;
  min-height: 128px;
  margin: 0;
}

.history-era::before {
  content: "";
  position: absolute;
  left: 160px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d8dde5;
}

.history-era:last-child::before {
  bottom: 34px;
}

.history-era h3 {
  margin: 0;
  padding-top: 4px;
  text-align: right;
}

.history-era h3 span {
  display: block;
  color: #0d5cb6;
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.history-era h3 small {
  display: block;
  margin-top: 4px;
  color: #8b95a4;
  font-size: 12px;
  font-weight: 800;
}

.history-era ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0 0 44px;
  list-style: none;
}

.history-era li {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  min-height: 24px;
  color: rgba(226, 232, 240, 0.9);
}

.history-era li::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border: 2px solid #0d5cb6;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(13, 92, 182, 0.08);
}

.history-era time {
  color: #0d5cb6;
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.history-era p {
  margin: 0;
  color: #3e4654;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.about-profile-page .about-hero {
  color: #10233f;
  background:
    linear-gradient(180deg, rgba(12, 34, 60, 0.2) 0%, rgba(12, 34, 60, 0.08) 24%, rgba(12, 34, 60, 0) 46%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(245, 249, 253, 0.42) 66%, rgba(245, 249, 253, 0.08) 100%),
    url("assets/about-hero-light-tech.png") center / cover no-repeat,
    #f5f8fc;
  border-bottom: 1px solid #e1e4e8;
}

.about-profile-page .about-hero .eyebrow {
  color: #8a3130;
}

.about-profile-page .about-hero h1 {
  color: #10233f;
}

.about-profile-page .about-hero p:not(.eyebrow) {
  color: #40516a;
}

.about-overview {
  position: relative;
  min-height: clamp(420px, 42vw, 540px);
  padding: 0;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 252, 0.82) 48%, rgba(238, 245, 251, 0.72)),
    #f7fafc;
}

.about-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.18) 70%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 38%, rgba(247, 250, 252, 0.18));
}

.about-overview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 1px;
  pointer-events: none;
  background: rgba(23, 32, 51, 0.12);
}

.about-ballpit-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about-overview .container {
  position: relative;
  z-index: 2;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: start;
  padding-top: clamp(36px, 4.5vw, 58px);
  padding-bottom: clamp(150px, 17vw, 230px);
}

.about-profile-copy {
  align-self: start;
  max-width: 820px;
}

.about-overview .eyebrow {
  color: #8a3130;
}

.about-overview h2 {
  color: #10233f;
  text-shadow: none;
}

.about-profile-copy p {
  max-width: 760px;
  color: var(--ink-soft);
  text-shadow: none;
}

.about-profile-copy .about-lead {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.78;
}

.about-stats-band {
  padding: clamp(64px, 7vw, 104px) 0;
  color: #141821;
  background: #f3f5f8;
  border-top: 1px solid #e1e4e8;
  border-bottom: 1px solid #e1e4e8;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: #dfe5ec;
  box-shadow: none;
}

.about-stat {
  min-height: clamp(160px, 13vw, 204px);
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 2.6vw, 34px) clamp(16px, 2vw, 26px);
  background: #f3f5f8;
  min-width: 0;
  overflow: hidden;
}

.about-stat strong {
  color: #c9302c;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.about-stat span {
  color: #5f6876;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.about-stat strong .count-up,
.about-stat strong .count-prefix,
.about-stat strong .count-suffix {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.about-capability-section {
  color: #141821;
  background: #f7f8fb;
  border-bottom: 1px solid #e1e4e8;
}

.about-capability-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(34px, 6vw, 68px);
  align-items: start;
}

.about-capability-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.about-capability-layout p {
  color: #5f6876;
}

.about-capability-section .eyebrow,
.about-team-section .eyebrow {
  color: #8a3130;
}

.about-capability-section h2,
.about-team-section h2 {
  color: #141821;
}

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

.about-capability-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-left: 4px solid #c9302c;
  border-radius: 4px;
}

.about-capability-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-family: Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.about-capability-grid h3 {
  margin: 0;
  color: #141821;
}

.about-capability-grid p {
  margin-bottom: 0;
}

.about-team-section {
  color: #141821;
  background: #ffffff;
  border-bottom: 1px solid #e1e4e8;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.about-team-grid p {
  max-width: 780px;
  color: #3e4654;
  font-size: 18px;
}

.about-value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-value-row span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 14px;
  color: #141821;
  background: #f7f8fb;
  border: 1px solid #dfe4ea;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.careers-page {
  background: #fffaf4;
}

.careers-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #201a16;
}

.careers-hero-media {
  position: absolute;
  inset: 0;
}

.careers-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.96);
}

.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 20, 16, 0.9) 0%, rgba(44, 33, 24, 0.72) 42%, rgba(91, 50, 30, 0.24) 72%, rgba(255, 198, 112, 0.08) 100%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.08), rgba(104, 52, 28, 0.25));
}

.careers-hero-inner {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-height) + 64px) 0 84px;
}

.careers-hero h1,
.careers-hero .eyebrow {
  color: #ffffff;
}

.careers-hero h1 {
  max-width: 760px;
}

.careers-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.careers-hero .button.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
}

.careers-intro {
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(255, 255, 255, 0.96) 48%, rgba(239, 247, 246, 0.86)),
    #ffffff;
}

.careers-intro-grid,
.careers-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: stretch;
}

.careers-intro-grid p,
.careers-process-grid p {
  color: var(--ink-soft);
}

.careers-intro-grid {
  padding: clamp(8px, 1vw, 16px) 0;
}

.careers-intro-copy {
  max-width: 760px;
  align-self: center;
}

.careers-keypoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.careers-keypoints span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  color: #8f3232;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 69, 69, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.careers-workflow-panel {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #eadfd2;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(54, 38, 24, 0.08);
}

.workflow-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid #eee4d8;
}

.workflow-item:last-child {
  border-bottom: 0;
}

.workflow-item > span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: #bf3d3d;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.workflow-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 17px;
}

.workflow-item p {
  margin: 0;
  color: var(--ink-soft);
}

.careers-benefits {
  position: relative;
  min-height: clamp(520px, 56vw, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background: url("assets/careers-benefits-bg.png") center / cover no-repeat;
  transition:
    color 240ms ease;
}

.careers-benefits::before,
.careers-benefits::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.careers-benefits::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38) 48%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08));
  opacity: 1;
}

.careers-benefits::after {
  background:
    linear-gradient(90deg, rgba(10, 20, 34, 0.78), rgba(10, 20, 34, 0.62) 46%, rgba(10, 20, 34, 0.42)),
    linear-gradient(180deg, rgba(10, 20, 34, 0.26), rgba(10, 20, 34, 0.74));
  opacity: 0;
}

.careers-benefits:hover,
.careers-benefits:focus-within,
.careers-benefits:active {
  color: #ffffff;
}

.careers-benefits:hover::before,
.careers-benefits:focus-within::before,
.careers-benefits:active::before {
  opacity: 0;
}

.careers-benefits:hover::after,
.careers-benefits:focus-within::after,
.careers-benefits:active::after {
  opacity: 1;
}

.careers-benefits .section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.careers-benefits .section-head > p {
  max-width: 500px;
  color: rgba(23, 32, 51, 0.76);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    color 240ms ease,
    opacity 240ms ease,
    transform 240ms ease;
}

.careers-benefits .eyebrow,
.careers-benefits h2 {
  color: var(--ink);
  transition: color 240ms ease;
}

.careers-benefits:hover .section-head > p,
.careers-benefits:focus-within .section-head > p,
.careers-benefits:active .section-head > p {
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.careers-benefits:hover .eyebrow,
.careers-benefits:hover h2,
.careers-benefits:focus-within .eyebrow,
.careers-benefits:focus-within h2,
.careers-benefits:active .eyebrow,
.careers-benefits:active h2 {
  color: #ffffff;
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px) clamp(24px, 3vw, 44px);
  background: transparent;
  border: 0;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.careers-benefits:hover .benefit-grid,
.careers-benefits:focus-within .benefit-grid,
.careers-benefits:active .benefit-grid {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.benefit-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition:
    color 240ms ease,
    transform 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
}

.benefit-icon {
  width: fit-content;
  height: auto;
  display: inline-flex;
  align-items: center;
  color: rgba(23, 32, 51, 0.74);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.benefit-card p {
  margin: 16px 0 0;
  color: #b93434;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 240ms ease;
}

.benefit-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.42);
  transition:
    color 240ms ease,
    text-shadow 240ms ease;
}

.benefit-card > span:not(.benefit-icon) {
  color: rgba(23, 32, 51, 0.76);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.42);
  transition:
    color 240ms ease,
    text-shadow 240ms ease;
}

.careers-benefits:hover .benefit-icon,
.careers-benefits:focus-within .benefit-icon,
.careers-benefits:active .benefit-icon {
  color: rgba(255, 255, 255, 0.88);
}

.careers-benefits:hover .benefit-card p,
.careers-benefits:focus-within .benefit-card p,
.careers-benefits:active .benefit-card p {
  color: #ffb0a8;
}

.careers-benefits:hover .benefit-card h3,
.careers-benefits:focus-within .benefit-card h3,
.careers-benefits:active .benefit-card h3 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.careers-benefits:hover .benefit-card > span:not(.benefit-icon),
.careers-benefits:focus-within .benefit-card > span:not(.benefit-icon),
.careers-benefits:active .benefit-card > span:not(.benefit-icon) {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.careers-openings {
  background: #ffffff;
}

.careers-openings.product-selection-section {
  padding: 76px 0 92px;
}

.careers-openings-head {
  max-width: 840px;
}

.careers-openings-head p:last-child {
  max-width: 720px;
}

.careers-selector-shell {
  grid-template-columns: 306px minmax(0, 1fr);
}

.careers-selector-sidebar {
  border-left-color: #d9dee7;
}

.career-family-toggle.is-active {
  color: #c9302c;
  background: #fff7f6;
}

.career-job-list {
  padding-bottom: 12px;
}

.career-job-link {
  font-size: 14px;
}

.career-job-panel {
  --job-line: rgba(201, 48, 44, 0.16);
  display: grid;
  gap: 26px;
  min-height: 520px;
  padding: clamp(28px, 3.4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.96)),
    #ffffff;
  border: 1px solid #dfe5ee;
  border-left: 4px solid #c9302c;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(19, 32, 51, 0.06);
}

.career-job-panel[hidden] {
  display: none;
}

.career-job-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.career-job-head p {
  margin: 0;
  color: #8a3130;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.career-job-head h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.12;
}

.career-job-panel .job-card-body {
  max-width: 860px;
}

.career-job-panel .button {
  width: fit-content;
  min-height: 44px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.job-card {
  --job-accent: #d64545;
  --job-bg: #fffaf4;
  --job-line: rgba(214, 69, 69, 0.18);
  position: relative;
  min-height: 0;
  grid-column: span 6;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 2.8vw, 34px) clamp(24px, 3.2vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28)),
    var(--job-bg);
  border: 1px solid transparent;
  border-left: 5px solid var(--job-accent);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(28, 35, 48, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.job-card:nth-child(1),
.job-card:nth-child(4),
.job-card:nth-child(7) {
  grid-column: span 7;
}

.job-card:nth-child(2),
.job-card:nth-child(3),
.job-card:nth-child(8) {
  grid-column: span 5;
}

.job-card:nth-child(2n) {
  --job-accent: #155aa8;
  --job-bg: #f3f8fb;
  --job-line: rgba(21, 90, 168, 0.18);
}

.job-card:nth-child(3n) {
  --job-accent: #168365;
  --job-bg: #f4fbf8;
  --job-line: rgba(22, 131, 101, 0.18);
}

.job-card:nth-child(4n) {
  --job-accent: #c9782d;
  --job-bg: #fff8ef;
  --job-line: rgba(201, 120, 45, 0.2);
}

.job-card:hover,
.job-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--job-line);
  box-shadow: 0 20px 44px rgba(28, 35, 48, 0.09);
}

.job-card > p {
  margin: 0;
  color: var(--job-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.job-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 29px);
  line-height: 1.3;
}

.job-card-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  padding-top: 8px;
  border-top: 1px solid var(--job-line);
}

.job-section {
  display: grid;
  gap: 9px;
}

.job-section h4 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.job-section ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.job-card a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--job-accent);
  font-weight: 800;
}

.job-card a::after {
  content: ">";
  margin-left: 8px;
}

.careers-process {
  background:
    linear-gradient(135deg, rgba(255, 246, 234, 0.86), rgba(255, 255, 255, 0.96) 52%),
    #fffaf4;
}

.careers-contact-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 250px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #eadfd2;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(54, 38, 24, 0.06);
}

.careers-contact-panel .contact-item {
  min-height: 44px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--graphite);
  font-weight: 800;
}

.careers-contact-panel a:hover {
  color: var(--blue);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--red);
  background: #fff6f0;
  border: 1px solid #efd7cd;
  border-radius: 8px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-strip {
  padding: 76px 0;
  color: #ffffff;
  background: #0d2c52;
}

.contact-strip h2,
.contact-strip .eyebrow {
  color: #ffffff;
}

.contact-strip p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card a,
.contact-card > span {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.contact-card svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: rgba(218, 230, 245, 0.94);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card a span,
.contact-card > span span {
  display: inline;
  min-height: 0;
  color: inherit;
  line-height: 1.5;
}

.contact-card a:hover {
  color: #ffffff;
}

.contact-card a:hover svg {
  stroke: #ffffff;
  min-height: 44px;
}

.subpage-hero {
  padding: calc(var(--header-height) + 58px) 0 72px;
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(18, 20, 25, 0.94), rgba(69, 47, 32, 0.68)),
    url("assets/hero-warm-lab.png") center / cover;
}

.subpage-hero .eyebrow,
.subpage-hero h1,
.subpage-hero p {
  color: #ffffff;
}

.subpage-hero h1 {
  max-width: 760px;
  overflow-wrap: anywhere;
}

.subpage-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.subpage-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}

.subpage-side {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.05);
}

.subpage-side a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.subpage-side a:hover,
.subpage-side a.is-current {
  color: var(--blue);
  background: var(--blue-soft);
}

.product-side {
  gap: 14px;
  align-content: start;
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.side-group {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.side-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-overview-group {
  gap: 8px;
  padding-bottom: 14px;
}

.product-overview-group > a {
  background: rgba(238, 245, 251, 0.72);
  border-left-color: rgba(21, 90, 168, 0.28);
}

.product-overview-group > a:hover,
.product-overview-group > a.is-current {
  background: #eef5fb;
  border-left-color: var(--blue);
}

.side-section-title {
  min-height: 32px;
  display: flex;
  align-items: center;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.side-group > strong {
  display: flex;
  min-height: 30px;
  align-items: center;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
}

.side-group > a {
  min-height: 42px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 8px 12px 8px 16px;
  border-left: 3px solid transparent;
  font-size: 15px;
}

.side-group > a:hover,
.side-group > a.is-current {
  border-left-color: var(--red);
}

.side-group small {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.subpage-content {
  display: grid;
  gap: 18px;
}

.subpage-panel {
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.05);
}

.subpage-panel h2 {
  margin-bottom: 12px;
}

.subpage-panel p {
  color: var(--ink-soft);
}

.contact-only-layout {
  max-width: 920px;
}

.contact-panel {
  position: relative;
}

.contact-method-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-method-list p {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 46px;
  margin: 0;
  color: var(--ink-soft);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(21, 90, 168, 0.18);
}

.contact-method-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-support-list span {
  cursor: default;
}

.subpage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.subpage-list a,
.subpage-list span {
  min-height: 64px;
  display: grid;
  align-content: center;
  padding: 16px 18px;
  color: #10233f;
  background: var(--surface-soft);
  border-left: 4px solid var(--red);
  font-weight: 800;
}

.subpage-list small {
  margin-top: 4px;
  color: var(--ink-muted);
  font-weight: 500;
}

.product-page .product-hero {
  background:
    linear-gradient(105deg, rgba(16, 20, 27, 0.95), rgba(86, 62, 39, 0.62)),
    url("assets/hero-10micro-rd.png") center / cover;
}

.product-architecture {
  background:
    linear-gradient(135deg, rgba(255, 246, 234, 0.62), rgba(255, 255, 255, 0.96) 44%),
    #ffffff;
}

.product-architecture-grid,
.family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.architecture-card,
.family-panel {
  min-height: 190px;
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.architecture-card {
  position: relative;
  overflow: hidden;
}

.architecture-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--cyan));
}

.architecture-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  color: #ffffff;
  background: var(--graphite);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.architecture-card h3,
.family-panel h3 {
  margin-bottom: 10px;
}

.architecture-card p,
.family-panel p {
  margin-bottom: 0;
}

.capability-strip {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  padding: 1px;
  background: var(--border);
}

.capability-strip div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
}

.capability-strip strong {
  color: var(--graphite);
}

.capability-strip span {
  color: var(--ink-soft);
}

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

.product-matrix-card {
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 48, 85, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-matrix-card:hover,
.product-matrix-card:focus-visible {
  color: var(--ink);
  transform: translateY(-2px);
  border-color: rgba(214, 69, 69, 0.38);
  box-shadow: 0 16px 34px rgba(36, 37, 42, 0.1);
}

.product-matrix-card.highlight {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #2b3038, #8d262f);
  border-color: transparent;
}

.product-matrix-card.highlight h3 {
  color: #ffffff;
}

.product-matrix-card.highlight p,
.product-matrix-card.highlight .product-category {
  color: rgba(255, 255, 255, 0.82);
}

.product-matrix-card.highlight .product-category {
  color: #10233f;
  background: rgba(255, 255, 255, 0.92);
}

.product-matrix-card.highlight .product-meta-row span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.product-matrix-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.product-matrix-card p {
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.product-meta-row,
.product-tag-row,
.product-combo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta-row {
  margin-top: auto;
}

.product-meta-row span,
.product-tag-row a,
.product-combo-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  color: var(--graphite);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.product-tag-row {
  margin-top: 18px;
}

.product-selector-page .product-hero {
  background:
    linear-gradient(105deg, rgba(16, 20, 27, 0.95), rgba(28, 60, 85, 0.6)),
    url("assets/hero-10micro-rd.png") center / cover;
}

.product-selection-section {
  padding: 88px 0 104px;
  background: #ffffff;
}

.product-catalog-head {
  max-width: 760px;
  padding-bottom: 34px;
  border-bottom: 1px solid #dedede;
}

.product-catalog-head h2 {
  margin: 0 0 10px;
  color: #141821;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.product-catalog-head p:last-child {
  max-width: 640px;
  margin: 0;
  color: #5f6876;
  font-size: 17px;
}

.product-selector-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-top: 34px;
}

.product-selector-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 2px;
  padding: 8px 0;
  background: #ffffff;
  border-left: 2px solid #e2e5ea;
}

.product-family-group {
  display: grid;
}

.product-family-toggle,
.product-model-link {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #242936;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.product-family-toggle {
  position: relative;
  padding: 14px 16px 14px 22px;
}

.product-family-toggle::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: transparent;
}

.product-family-toggle::after {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.45;
  transform: rotate(45deg);
  transition: transform 160ms ease, opacity 160ms ease;
}

.product-family-toggle span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.product-family-toggle small {
  color: #8b95a4;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-family-toggle strong {
  color: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.product-family-toggle:hover,
.product-family-toggle:focus-visible,
.product-model-link:hover,
.product-model-link:focus-visible {
  color: #0e1726;
  background: #f4f7fb;
}

.product-family-toggle.is-active {
  color: #c9302c;
  background: #fff7f6;
}

.product-family-toggle.is-active::before {
  background: #c9302c;
}

.product-family-group.is-expanded .product-family-toggle::after {
  opacity: 0.8;
  transform: rotate(-135deg);
}

.product-model-list {
  display: none;
  padding: 0 0 8px 22px;
}

.product-family-group.is-expanded .product-model-list {
  display: grid;
}

.product-model-subgroup {
  display: grid;
  gap: 2px;
  padding: 6px 0 4px;
}

.product-model-subgroup + .product-model-subgroup {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid #eef1f5;
}

.product-model-subtitle {
  margin: 0 16px 2px 12px;
  color: #8a3130;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.product-model-link {
  position: relative;
  min-height: 38px;
  padding: 0 16px 0 28px;
  color: #5f6876;
  font-size: 14px;
  font-weight: 850;
}

.product-model-link::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #c2c8d0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.product-model-link.is-active {
  color: #0d5cb6;
  background: #eef6ff;
}

.product-model-link.is-active::before {
  background: #0d5cb6;
}

.product-selector-panel {
  min-width: 0;
}

.chip-family-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 0;
  border-bottom: 0;
}

.product-selector-panel .chip-family-section[hidden] {
  display: none;
}

.chip-family-head {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-bottom: 24px;
}

.chip-family-head p,
.chip-family-head h3,
.chip-family-head span {
  margin: 0;
}

.chip-family-head p {
  color: #8a3130;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.chip-family-head h3 {
  color: #171b23;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.chip-family-head span {
  color: #5f6876;
  font-size: 16px;
}

.chip-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 384px));
  gap: 22px;
  justify-content: start;
  align-items: stretch;
}

.product-selector-panel.is-model-focused .chip-card-grid {
  grid-template-columns: minmax(320px, 424px);
}

.product-selector-panel.is-model-focused .chip-product-card:not(.is-selected-model) {
  display: none;
}

.chip-product-card {
  min-width: 0;
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: #1a202c;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.chip-product-card:hover,
.chip-product-card:focus-visible {
  color: #1a202c;
  border-color: #b8b8b8;
  box-shadow: 0 12px 28px rgba(18, 24, 33, 0.1);
  transform: translateY(-2px);
}

.chip-product-image {
  height: 340px;
  display: grid;
  place-items: center;
  padding: 8px;
  background: #ffffff;
  border-bottom: 1px solid #e3e3e3;
}

.chip-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chip-product-body {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: center;
  padding: 24px 24px 0;
  text-align: center;
}

.chip-product-body small {
  min-height: 20px;
  color: #6d7582;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.chip-product-body strong {
  color: #111827;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
}

.chip-product-body span {
  max-width: 30em;
  color: #586273;
  font-size: 15px;
  line-height: 1.68;
}

.chip-product-cta {
  justify-self: center;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 22px 24px 26px;
  padding: 0 18px;
  color: #ffffff;
  background: #c9302c;
  border: 1px solid #c9302c;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.chip-product-card:hover .chip-product-cta,
.chip-product-card:focus-visible .chip-product-cta {
  background: #a92421;
  border-color: #a92421;
}

.product-tag-row a:hover,
.product-tag-row a:focus-visible {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.family-panel {
  display: grid;
  align-content: start;
}

.family-panel:nth-child(1) {
  border-top: 4px solid var(--red);
}

.family-panel:nth-child(2) {
  border-top: 4px solid var(--cyan);
}

.family-panel:nth-child(3) {
  border-top: 4px solid var(--orange);
}

.family-panel:nth-child(4) {
  border-top: 4px solid var(--green);
}

.product-detail {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 246, 234, 0.72), rgba(255, 255, 255, 0.94) 42%),
    #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(36, 37, 42, 0.06);
}

.product-detail-head {
  display: grid;
  grid-template-columns: minmax(112px, 132px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.product-detail-head .chip-thumb {
  margin: 12px auto 0;
  transform: none;
}

.product-detail-head .chip-dark,
.product-detail-head .chip-asic {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(145deg, #161b22, #303844 72%);
}

.product-detail-head .chip-asic {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(145deg, #4a2f21, #17130f 72%);
}

.product-detail-media {
  width: 132px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #f7f7f6;
  border: 1px solid var(--border);
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.solution-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.solution-mark img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.product-detail-head h2 {
  margin-bottom: 14px;
}

.product-detail-head p:last-child {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 17px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  padding: 1px;
  background: var(--border);
}

.spec-grid div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.spec-grid dt,
.spec-grid dd {
  margin: 0;
}

.spec-grid dt {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 800;
}

.spec-grid dd {
  color: var(--graphite);
  font-size: 16px;
  font-weight: 800;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 34px;
  margin-top: 8px;
}

.detail-columns h3 {
  margin-bottom: 12px;
}

.detail-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.detail-columns p {
  color: var(--ink-soft);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.resources-page {
  background: #ffffff;
}

.resources-page .resource-hero {
  min-height: 340px;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 72px) 0 76px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 16, 29, 0.92) 0%, rgba(8, 16, 29, 0.82) 34%, rgba(8, 16, 29, 0.34) 64%, rgba(8, 16, 29, 0.04) 100%),
    url("assets/resource-hero-technical.png") center / cover no-repeat,
    #0c1523;
  border-bottom: 1px solid #e1e4e8;
}

.resources-page .resource-hero h1 {
  color: #ffffff;
}

.resources-page .resource-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.resources-catalog-section {
  background: #ffffff;
}

.resource-selector-shell {
  align-items: start;
}

.resource-selector-sidebar .product-family-group {
  border-bottom: 0;
}

.resource-selector-sidebar .product-family-toggle::after {
  display: none;
}

.resource-panel {
  gap: 26px;
}

.resource-panel-head {
  padding-bottom: 24px;
  border-bottom: 1px solid #e1e4e8;
}

.resource-download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 760px;
}

.resource-download-card,
.resource-placeholder-card,
.resource-note-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
}

.resource-download-card > div {
  display: grid;
  gap: 8px;
}

.resource-download-card .resource-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.resource-download-card-primary {
  border-left: 4px solid #c9302c;
}

.resource-download-card small,
.resource-placeholder-card small {
  color: #8a3130;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.resource-download-card h4,
.resource-placeholder-card h4,
.resource-note-panel h4 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.18;
}

.resource-download-card p,
.resource-placeholder-card p,
.resource-note-panel p {
  margin: 0;
  color: #586273;
  font-size: 15px;
  line-height: 1.72;
}

.resource-meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid #e2e5ea;
  border-right: 0;
}

.resource-download-card:not(.resource-download-card-primary) .resource-meta-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-meta-list div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-right: 1px solid #e2e5ea;
}

.resource-meta-list dt,
.resource-meta-list dd {
  margin: 0;
}

.resource-meta-list dt {
  color: #6d7582;
  font-size: 12px;
  font-weight: 800;
}

.resource-meta-list dd {
  color: #111827;
  font-size: 15px;
  font-weight: 900;
}

.resource-download-card .button,
.resource-placeholder-card .button {
  width: fit-content;
  min-height: 44px;
}

.resource-note-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: #f7f8fa;
}

.resource-note-panel h4 {
  font-size: 18px;
}

.resource-note-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #c9302c;
  background: #ffffff;
  border: 1px solid #e1c5c3;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 900;
}

.resource-note-panel a:hover,
.resource-note-panel a:focus-visible {
  color: #ffffff;
  background: #c9302c;
  border-color: #c9302c;
}

.resource-placeholder-card {
  max-width: 780px;
  border-left: 4px solid #155aa8;
}

.hardware-resource-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 3vw, 30px);
  background: #f7f8fb;
  border: 1px solid #dfe4ea;
  border-left: 4px solid #c9302c;
  border-radius: 4px;
}

.hardware-resource-summary > div {
  display: grid;
  gap: 8px;
}

.hardware-resource-summary small,
.hardware-resource-card small {
  color: #8a3130;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hardware-resource-summary h4,
.hardware-resource-card h4 {
  margin: 0;
  color: #111827;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}

.hardware-resource-summary p,
.hardware-resource-card p {
  margin: 0;
  color: #586273;
  font-size: 15px;
  line-height: 1.72;
}

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

.hardware-resource-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
}

.hardware-resource-card-wide {
  grid-column: 1 / -1;
}

.hardware-resource-card img {
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 3px;
  object-fit: contain;
}

.hardware-resource-card-wide img {
  aspect-ratio: 21 / 8.3;
}

.hardware-resource-card:not(.hardware-resource-card-wide) img {
  aspect-ratio: 1 / 1;
}

.ip-resource-card small {
  color: #8a3130;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.ip-resource-card h4 {
  margin: 0;
  color: #111827;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}

.ip-resource-card > div {
  display: grid;
  gap: 8px;
}

.ip-resource-card p {
  margin: 0;
  color: #586273;
  font-size: 15px;
  line-height: 1.72;
}

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

.ip-resource-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(22px, 2.8vw, 30px);
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  overflow: hidden;
}

.ip-resource-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #c9302c;
}

.ip-resource-card-wide {
  grid-column: 1 / -1;
}

.ip-resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ip-resource-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  color: #22304a;
  background: #f4f7fb;
  border: 1px solid #dfe5ee;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.application-page {
  background: #ffffff;
}

.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero {
  color: #0f315b;
}

.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .brand-logo-dark,
.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .brand-logo-dark,
.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .brand-logo-dark,
.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .brand-logo-dark {
  opacity: 1;
}

.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .brand-logo-light,
.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .brand-logo-light,
.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .brand-logo-light,
.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .brand-logo-light {
  opacity: 0;
}

.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .nav-link,
.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .nav-link.is-current,
.application-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .tool-link {
  color: #0f315b;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.45);
}

.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero {
  color: #0f315b;
}

.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .brand-logo-dark,
.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .brand-logo-dark,
.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .brand-logo-dark,
.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .brand-logo-dark {
  opacity: 1;
}

.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .brand-logo-light,
.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero:hover .brand-logo-light,
.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero:focus-within .brand-logo-light,
.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero.is-hover .brand-logo-light {
  opacity: 0;
}

.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .nav-link,
.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .nav-link.is-current,
.about-profile-page.overlay-header-page:not(.menu-open) .site-header.is-at-hero .tool-link {
  color: #0f315b;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.45);
}

.application-hero {
  min-height: 340px;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 72px) 0 76px;
  background:
    linear-gradient(180deg, rgba(11, 32, 58, 0.44) 0%, rgba(11, 32, 58, 0.18) 21%, rgba(11, 32, 58, 0) 42%),
    linear-gradient(90deg, rgba(238, 247, 255, 0.98) 0%, rgba(228, 241, 253, 0.9) 34%, rgba(207, 227, 244, 0.42) 66%, rgba(207, 227, 244, 0.06) 100%),
    url("assets/application-hero-solutions-v2.png") center / cover no-repeat,
    #eaf4ff;
  border-bottom: 1px solid #e1e4e8;
}

.application-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #141821;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
}

.application-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #40516a;
  font-size: 18px;
  line-height: 1.72;
}

.application-catalog-section {
  padding: 72px 0 104px;
  background: #ffffff;
}

.application-catalog-head {
  max-width: 760px;
  padding-bottom: 34px;
  border-bottom: 1px solid #dedede;
}

.application-catalog-head h1 {
  margin: 0 0 12px;
  color: #141821;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
}

.application-catalog-head p:last-child {
  max-width: 680px;
  margin: 0;
  color: #5f6876;
  font-size: 17px;
  line-height: 1.72;
}

.application-selector-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-top: 34px;
}

.application-selector-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 2px;
  padding: 8px 0;
  background: #ffffff;
  border-left: 2px solid #e2e5ea;
}

.application-selector-link {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.application-selector-sidebar a,
.application-selector-link {
  position: relative;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px 16px 12px 22px;
  color: #242936;
}

.application-selector-sidebar a::before,
.application-selector-link::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: transparent;
}

.application-selector-sidebar a:hover,
.application-selector-sidebar a:focus-visible,
.application-selector-link:hover,
.application-selector-link:focus-visible,
.application-selector-link.is-active {
  color: #c9302c;
  background: #fff7f6;
  outline: 0;
}

.application-selector-sidebar a:hover::before,
.application-selector-sidebar a:focus-visible::before,
.application-selector-link:hover::before,
.application-selector-link:focus-visible::before,
.application-selector-link.is-active::before {
  background: #c9302c;
}

.application-selector-sidebar small,
.application-selector-link small {
  color: #8b95a4;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.application-selector-link.is-active small {
  color: #a84643;
}

.application-selector-sidebar strong,
.application-selector-link strong {
  color: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.application-catalog-grid {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.application-catalog-card {
  scroll-margin-top: calc(var(--header-height) + 24px);
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  min-height: 560px;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  overflow: hidden;
}

.application-catalog-card[hidden] {
  display: none;
}

.application-card-media {
  min-height: 100%;
  background: #f3f6f8;
  border-right: 1px solid #e3e3e3;
  overflow: hidden;
}

.application-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.application-card-body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px;
}

.application-card-body .eyebrow {
  margin: 0;
  color: #8a3130;
}

.application-card-body h2 {
  margin: 0;
  color: #141821;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.18;
}

.application-card-body > p:not(.eyebrow) {
  margin: 0;
  color: #5f6876;
  font-size: 16px;
  line-height: 1.7;
}

.application-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border: 1px solid #e2e5ea;
  border-bottom: 0;
}

.application-spec-list div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e5ea;
}

.application-spec-list div:nth-child(odd) {
  border-right: 1px solid #e2e5ea;
}

.application-spec-list dt,
.application-spec-list dd {
  margin: 0;
}

.application-spec-list dt {
  color: #6d7582;
  font-size: 12px;
  font-weight: 800;
}

.application-spec-list dd {
  color: #111827;
  font-size: 15px;
  font-weight: 900;
}

.application-detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
}

.application-detail-columns h3 {
  margin: 0 0 8px;
  color: #141821;
  font-size: 17px;
}

.application-detail-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-detail-columns li,
.application-detail-columns p {
  margin: 0;
  color: #586273;
  font-size: 14px;
  line-height: 1.68;
}

.application-detail-columns li {
  position: relative;
  padding-left: 14px;
}

.application-detail-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  background: #c9302c;
  border-radius: 50%;
}

.application-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.application-card-actions .button {
  min-height: 44px;
}

.application-showcase {
  background: #07101f;
}

.application-solutions {
  display: grid;
  gap: 0;
}

.application-solution-card {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: stretch;
  scroll-margin-top: calc(var(--header-height) + 24px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.94) 0%, rgba(7, 16, 31, 0.78) 41%, rgba(7, 16, 31, 0.2) 74%, rgba(7, 16, 31, 0.12) 100%),
    var(--solution-image) center / cover no-repeat,
    #07101f;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.application-solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.26), transparent 44%);
  pointer-events: none;
}

.application-solution-card::after {
  content: "";
  position: absolute;
  left: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(42, 167, 162, 0.92), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.application-solution-panel {
  width: min(100% - 48px, 720px);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: clamp(48px, 6vw, 78px) 0;
}

.application-solution-panel .eyebrow {
  color: #9ed6e3;
}

.application-solution-panel h2 {
  max-width: 600px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
}

.solution-lead {
  max-width: 620px;
  margin: 0;
  color: #d8e3ef;
  font-size: 17px;
  line-height: 1.78;
}

.solution-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-specs div {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 15px 14px;
  background: rgba(8, 18, 34, 0.72);
  backdrop-filter: blur(10px);
}

.solution-specs dt,
.solution-specs dd {
  margin: 0;
}

.solution-specs dt {
  color: #9fb0c3;
  font-size: 12px;
  font-weight: 800;
}

.solution-specs dd {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(210px, 0.75fr);
  gap: 24px;
  margin-top: 28px;
}

.solution-detail-grid h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 17px;
}

.solution-detail-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-detail-grid li {
  position: relative;
  padding-left: 18px;
  color: #d3deea;
}

.solution-detail-grid li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #d64545;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

.solution-detail-grid p {
  margin: 0;
  color: #d3deea;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.application-solution-panel .button.primary {
  color: #ffffff;
  background: var(--red);
}

.application-solution-panel .button.primary:hover {
  background: #bd3636;
}

.application-solution-panel .button.ghost {
  color: #f3f7fb;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.application-solution-panel .button.ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.58);
}

.combination-panel {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.combination-panel h3 {
  margin-bottom: 14px;
}

.product-combo-grid {
  gap: 10px;
}

.product-combo-grid span {
  min-height: 38px;
  background: #ffffff;
  border-left: 3px solid var(--red);
  border-radius: 6px;
}

.asic-detail {
  background:
    linear-gradient(135deg, rgba(238, 245, 251, 0.58), rgba(255, 255, 255, 0.96) 46%),
    #ffffff;
}

.wireless-detail {
  background:
    linear-gradient(135deg, rgba(245, 248, 244, 0.86), rgba(255, 255, 255, 0.96) 46%),
    #ffffff;
}

.site-footer {
  color: #c9d6e5;
  background: #081b33;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
  padding: 54px 0 34px;
}

.footer-brand,
.footer-brand:hover {
  color: #ffffff;
  gap: 10px;
}

.footer-brand .brand-emblem {
  box-shadow: 0 12px 24px rgba(5, 10, 20, 0.2);
}

.footer-brand .brand-logo-wrap {
  width: 148px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-brand .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
}

.site-footer p {
  max-width: 360px;
  margin: 18px 0 0;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer a {
  display: block;
  min-height: 44px;
  color: #c9d6e5;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero-inner,
  .resource-layout,
  .technology-grid,
  .sustainability-layout,
  .about-grid,
  .about-profile-grid,
  .about-capability-layout,
  .about-team-grid,
  .careers-intro-grid,
  .careers-process-grid,
  .contact-strip-inner,
  .subpage-layout,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .subpage-side,
  .article-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-selector-shell {
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 28px;
  }

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

  .primary-nav {
    gap: 8px;
  }

  
.nav-tools {
    gap: 8px;
  }

  .tool-link {
    display: none;
  }

  .quick-grid,
  .product-grid,
  .product-matrix-grid,
  .news-grid,
  .benefit-grid,
  .assurance-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: #dfe5ec;
  box-shadow: none;
}

@media (min-width: 861px) and (max-width: 1080px) {
  .careers-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
    gap: 30px;
  }

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

  .benefit-card {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
  }

  .utility-bar {
    display: none;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .about-history-timeline {
    width: 100%;
    margin-top: 34px;
    transform: none;
  }

  .history-era {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 24px;
  }

  .history-era::before {
    left: 108px;
  }

  .history-era h3 span {
    font-size: 18px;
  }

  .history-era h3 small {
    font-size: 11px;
  }

  .history-era li {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .history-era li::before {
    left: -28px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 14px;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-header:not(:has(.menu-toggle)) .nav-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 10px;
  }

  .site-header:not(:has(.menu-toggle)) .primary-nav {
    position: static;
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-header:not(:has(.menu-toggle)) .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header:not(:has(.menu-toggle)) .nav-item {
    flex: 0 0 auto;
  }

  .site-header:not(:has(.menu-toggle)) .nav-link {
    white-space: nowrap;
  }

  body.menu-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    padding: 0 12px;
    border-bottom: 0;
  }

  .nav-item {
    display: block;
  }

  .nav-link {
    min-height: 48px;
    width: 100%;
  }

  .nav-link::after,
  .mega-menu {
    display: none;
  }

  
.nav-tools {
    display: none;
  }

  .brand {
    gap: 9px;
  }

  .brand-emblem {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 10px;
  }

  .hero {
    min-height: 620px;
    background: #071d36;
  }

  .hero-media {
    inset: 0;
    height: auto;
    opacity: 0.55;
  }

  .hero-inner {
    min-height: 620px;
    display: flex;
  }

  .hero-copy {
    padding: calc(var(--header-height) + 56px) 0 86px;
  }

  h1,
  .hero h1,
  .hero h2 {
    font-size: 30px;
  }

  h2 {
    font-size: 27px;
  }

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

  .hero-dots {
    bottom: 22px;
  }

  .quick-links {
    margin-top: 0;
  }

  .quick-grid,
  .product-grid,
  .product-architecture-grid,
  .product-matrix-grid,
  .family-grid,
  .chip-card-grid,
  .news-grid,
  .benefit-grid,
  .assurance-grid,
  .resource-list,
  .subpage-list,
  .hot-product-grid,
  .about-stat-grid,
  .about-capability-grid,
  .job-grid,
  .spec-grid,
  .detail-columns,
  .article-spec-grid,
  .article-highlight-grid {
    grid-template-columns: 1fr;
  }

  .product-selection-section {
    padding: 56px 0 72px;
  }

  .product-selector-page .product-hero {
    padding-top: calc(var(--header-height) + 88px);
  }

  .product-catalog-head {
    padding-bottom: 26px;
  }

  .product-selector-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .product-selector-sidebar {
    position: static;
    border-left: 0;
    border-top: 2px solid #e2e5ea;
    border-bottom: 1px solid #e2e5ea;
  }

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

  .chip-family-section {
    padding-top: 0;
  }

  .chip-family-head {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .chip-product-card {
    border-radius: 3px;
  }

  .chip-product-image {
    height: 280px;
  }

  .chip-product-body {
    padding: 22px 20px 0;
  }

  .chip-product-cta {
    width: auto;
    justify-self: stretch;
    margin: 22px 20px 24px;
  }

  .job-card,
  .job-card:nth-child(1),
  .job-card:nth-child(2),
  .job-card:nth-child(3),
  .job-card:nth-child(4),
  .job-card:nth-child(7),
  .job-card:nth-child(8) {
    grid-column: 1 / -1;
  }

  .job-card-body {
    grid-template-columns: 1fr;
  }

  .hot-product-grid {
    gap: 30px;
  }

  .product-detail-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-detail-head .chip-thumb {
    margin: 0;
  }

  .product-detail-media {
    width: min(220px, 100%);
  }

  .application-catalog-section {
    padding: calc(var(--header-height) + 56px) 0 72px;
  }

  .application-catalog-head {
    padding-bottom: 26px;
  }

  .application-selector-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .application-selector-sidebar {
    position: static;
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 2px solid #e2e5ea;
    border-bottom: 1px solid #e2e5ea;
  }

  .application-catalog-card {
    border-radius: 3px;
  }

  .application-card-body {
    padding: 24px 20px;
  }

  .application-card-media img {
    min-height: 240px;
    max-height: 280px;
  }

  .application-spec-list,
  .application-detail-columns {
    grid-template-columns: 1fr;
  }

  .application-spec-list div:nth-child(odd) {
    border-right: 0;
  }

  .application-card-actions .button {
    width: 100%;
  }

  .resource-download-card .button,
  .resource-placeholder-card .button,
  .hardware-resource-summary .button,
  .resource-note-panel a {
    width: 100%;
  }

  .hardware-resource-grid {
    grid-template-columns: 1fr;
  }

  .hardware-resource-card-wide {
    grid-column: auto;
  }

  .hardware-resource-card-wide img {
    aspect-ratio: 16 / 9;
  }

  .ip-resource-grid {
    grid-template-columns: 1fr;
  }

  .ip-resource-card-wide {
    grid-column: auto;
  }

  .resource-meta-list,
  .resource-download-card:not(.resource-download-card-primary) .resource-meta-list {
    grid-template-columns: 1fr;
    border-right: 1px solid #e2e5ea;
    border-bottom: 0;
  }

  .resource-meta-list div {
    border-right: 0;
    border-bottom: 1px solid #e2e5ea;
  }

  .resource-meta-list div:last-child {
    border-bottom: 0;
  }

  .application-solutions {
    gap: 0;
  }

  .application-solution-card {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(7, 16, 31, 0.22) 0%, rgba(7, 16, 31, 0.64) 38%, rgba(7, 16, 31, 0.96) 66%),
      var(--solution-image) center top / cover no-repeat,
      #07101f;
  }

  .application-solution-card::after {
    left: 22px;
    right: 22px;
  }

  .application-solution-panel {
    min-height: 620px;
    justify-content: flex-end;
    width: min(100% - 44px, 720px);
    margin-left: 22px;
    padding: 260px 0 28px;
  }

  .application-solution-panel h2 {
    font-size: 27px;
  }

  .solution-lead {
    font-size: 15px;
  }

  .solution-specs,
  .solution-detail-grid {
    grid-template-columns: 1fr;
  }

  .solution-specs {
    margin-top: 22px;
  }

  .solution-specs div {
    min-height: 70px;
  }

  .solution-detail-grid {
    gap: 18px;
    margin-top: 22px;
  }

  .solution-actions {
    gap: 10px;
  }

  .solution-actions .button {
    width: 100%;
  }

  .capability-strip div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .architecture-card,
  .family-panel,
  .product-matrix-card {
    min-height: 0;
  }

  .solution-mark {
    width: 72px;
    height: 72px;
    font-size: 18px;
  }

  .solution-mark img {
    width: 64px;
    height: 64px;
  }

  .careers-hero {
    min-height: 560px;
  }

  .careers-hero-inner {
    padding: calc(var(--header-height) + 58px) 0 72px;
  }

  .careers-intro-grid {
    padding: 0;
  }

  .careers-workflow-panel {
    padding: 22px;
  }

  .workflow-item {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .subpage-hero {
    padding: calc(var(--header-height) + 42px) 0 58px;
  }

  .subpage-hero h1 {
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.18;
  }

  .article-hero {
    padding: calc(var(--header-height) + 38px) 0 58px;
  }

  .article-body {
    padding: 56px 0 72px;
  }

  .news-index-card a,
  .news-index-card.is-featured a {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-index-media {
    min-height: 220px;
  }

  .news-index-body {
    padding: 22px;
  }

  .article-figure-grid,
  .article-figure-grid.two-up,
  .article-photo-grid,
  .article-nav {
    grid-template-columns: 1fr;
  }

  .application-accordion {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100% - 28px, var(--container));
    margin: 0 auto;
    background: transparent;
    border: 0;
    transition: none;
    will-change: auto;
  }

  .app-panel,
  .app-panel.is-active {
    min-height: 142px;
    border: 0;
    background-position: center;
  }

  .app-panel.is-active {
    min-height: 360px;
  }

  .app-panel-icon {
    top: 34px;
    left: 28px;
    width: 52px;
    height: 52px;
    transform: none;
  }

  .app-panel-icon svg {
    width: 42px;
    height: 42px;
  }

  .app-panel.is-active .app-panel-icon {
    top: 30px;
    opacity: 1;
    transform: none;
  }

  .app-panel-content,
  .app-panel:not(.is-active) .app-panel-content {
    width: calc(100% - 40px);
    min-height: 142px;
    justify-items: start;
    align-content: center;
    margin: 0 auto;
    padding: 20px 0 20px 72px;
    text-align: left;
    transform: none;
  }

  .app-panel.is-active .app-panel-content {
    min-height: 360px;
    padding: 92px 20px 32px;
    justify-items: center;
    text-align: center;
  }

  .app-panel h3 {
    font-size: 28px;
  }

  .app-panel p {
    font-size: 15px;
    line-height: 1.72;
  }

  .quick-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .quick-grid a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .article-section {
    padding: 24px 20px;
  }

  .article-section h2 {
    font-size: 25px;
  }

  .article-hero h1 {
    font-size: 31px;
  }

  .article-subtitle {
    font-size: 18px;
  }

  .article-toc,
  .subpage-side {
    grid-template-columns: 1fr;
  }

  .section-head.split {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-logo-wrap {
    width: 112px;
    height: 31px;
    padding: 3px 5px;
  }

  .footer-brand .brand-logo-wrap {
    width: 122px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .brand-emblem {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 9px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-actions,
  .product-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .tab-button {
    width: 100%;
  }

  .hot-product {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
  }

  .hot-product > span:last-child > strong {
    font-size: 22px;
  }

  .hot-product small {
    font-size: 15px;
  }

  .milestone-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
