:root {
  --surface: #f6f7f5;
  --surface-2: #eef2f1;
  --white: #fff;
  --ink: #111820;
  --graphite: #2a3038;
  --muted: #69737f;
  --line: #dde2e5;
  --cyan: #37c7e6;
  --coral: #f58a2a;
  --pcb: #15191d;
  --shadow: 0 24px 60px rgba(17, 24, 32, .08);
  --shell: min(1240px, calc(100% - 40px));
  font-family: Inter, "PingFang SC", "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--surface); color: var(--graphite); }
/* WordPress adds a `page` class to body; keep section spacing off the document root. */
body.page { padding: 0; }
img, svg { max-width: 100%; display: block; }
img { height: auto; }
img[src*="/generated/yuli-"] {
  object-fit: contain !important;
  object-position: center;
  background: transparent;
}

img[src*="cold-press-card-exploded-website-v1"] {
  object-fit: contain !important;
  object-position: center;
  background: #f7f8f7;
}

img[src*="standard-tracker-card-pcba-to-product"] {
  object-fit: contain !important;
  object-position: center;
  background: #f7f8f7;
}

img[src*="/generated-reference/"] {
  object-fit: cover !important;
  object-position: center;
  background: transparent !important;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.shell { width: var(--shell); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 245, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 226, 229, .78);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand img { width: 104px; height: auto; }

.brand-name {
  padding-left: 12px;
  border-left: 1px solid rgba(17, 24, 32, .16);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 24px;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--graphite);
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}

.nav-item.has-mega > .nav-link::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .58;
  transition: transform .18s ease, opacity .18s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-item:focus-within > .nav-link,
.nav-item:hover > .nav-link {
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.mega {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  width: min(760px, calc(100vw - 40px));
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: minmax(190px, .78fr) minmax(0, 1.22fr);
  gap: 1px;
  padding: 10px;
  border: 1px solid rgba(221, 226, 229, .92);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 70px rgba(17, 24, 32, .13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

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

.nav-item.has-mega:hover > .nav-link::after,
.nav-item.has-mega:focus-within > .nav-link::after {
  transform: rotate(225deg) translate(-1px, -1px);
  opacity: .9;
}

.mega-intro {
  padding: 18px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 10%, rgba(55, 199, 230, .18), transparent 32%),
    linear-gradient(145deg, #f8faf9, #eef2f1);
}

.mega-intro strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.mega-intro span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.mega-link {
  min-height: 82px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--graphite);
}

.mega-link:hover,
.mega-link:focus-visible {
  background: #f3f6f5;
  outline: none;
}

.mega-icon {
  width: 58px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  overflow: hidden;
}

.mega-icon img {
  width: 56px;
  height: 39px;
  object-fit: contain;
}

.mega-link strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.mega-link span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.mega-wide {
  width: min(880px, calc(100vw - 40px));
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-selector {
  position: relative;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
}
.language-selector summary {
  min-width: 76px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  color: var(--graphite);
  font-size: 13px;
  cursor: pointer;
  list-style: none;
}
.language-selector summary::-webkit-details-marker { display: none; }
.language-selector summary:hover,
.language-selector summary:focus-visible { border-color: #aeb8bd; background: var(--white); outline: none; }
.language-globe {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  overflow: hidden;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  color: var(--ink);
  font-size: 0;
}
.language-globe::before {
  content: "";
  position: absolute;
  inset: 1px 4px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
}
.language-globe::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 5px;
  border-top: 1px solid currentColor;
}
.language-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}
.language-selector[open] .language-chevron { transform: rotate(225deg) translate(-1px, -1px); }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 130;
  width: 176px;
  padding: 6px;
  border: 1px solid rgba(221, 226, 229, .95);
  border-radius: 10px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 48px rgba(17, 24, 32, .14);
}
.language-menu button,
.language-menu a {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu a:hover,
.language-menu a:focus-visible { background: #f1f4f3; outline: none; }
.language-menu [aria-current] { background: #f1f4f3; }
.language-menu small { color: var(--muted); font-size: 11px; }

.lang-switch,
.nav-action,
.menu-toggle {
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.lang-switch,
.menu-toggle {
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  color: var(--graphite);
  cursor: pointer;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.menu-toggle { display: none; width: 44px; padding: 0; }

.menu-toggle-lines {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

main .page { padding: clamp(72px, 8vw, 116px) 0; border-bottom: 1px solid rgba(221, 226, 229, .72); }
.hero { padding-top: clamp(80px, 9vw, 128px); }
.hero-grid,
.split,
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.kicker {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

h1, h2, h3 { margin: 0; color: var(--ink); letter-spacing: 0; }
h1 { max-width: 820px; font-size: clamp(42px, 6vw, 74px); line-height: .98; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.06; }
h3 { font-size: 20px; line-height: 1.25; }
.compact-card-heading { font-size: 20px; line-height: 1.25; }
p { line-height: 1.72; }
.lede { max-width: 780px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(18, 24, 28, .14); }
.btn:active { transform: translateY(0) scale(.99); }
.btn:focus-visible { outline: 3px solid rgba(55, 199, 230, .28); outline-offset: 3px; }

a.card,
a.article-blueprint,
a.format-card,
a.rfq-step,
a.resource-cluster-card {
  color: inherit;
  text-decoration: none;
}

a.card,
a.article-blueprint,
a.format-card,
a.rfq-step,
a.resource-cluster-card,
a.cold-product-card,
a.ecosystem-path-card,
a.assessment-tile,
a.scenario-card,
a.product-family-card,
a.industry-card,
a.contact-info-card {
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

a.card:hover,
a.card:focus-visible,
a.article-blueprint:hover,
a.article-blueprint:focus-visible,
a.format-card:hover,
a.format-card:focus-visible,
a.rfq-step:hover,
a.rfq-step:focus-visible,
a.resource-cluster-card:hover,
a.resource-cluster-card:focus-visible,
a.cold-product-card:hover,
a.cold-product-card:focus-visible,
a.ecosystem-path-card:hover,
a.ecosystem-path-card:focus-visible,
a.assessment-tile:hover,
a.assessment-tile:focus-visible,
a.scenario-card:hover,
a.scenario-card:focus-visible,
a.product-family-card:hover,
a.product-family-card:focus-visible,
a.industry-card:hover,
a.industry-card:focus-visible,
a.contact-info-card:hover,
a.contact-info-card:focus-visible {
  border-color: rgba(55, 199, 230, .46);
  outline: none;
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(18, 24, 28, .12);
}

.card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}
.card p { margin-bottom: 0; color: var(--muted); }

.icon-card { position: relative; overflow: hidden; }
.content-icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	margin-bottom: 24px;
	border: 1px solid rgba(18, 24, 28, .1);
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(238, 242, 241, .9));
	box-shadow: 0 10px 26px rgba(18, 24, 28, .07);
}
.content-icon svg { width: 34px; height: 34px; fill: none; stroke: #20272c; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.content-icon svg circle:last-child { stroke: var(--yuli-coral, #f58a2a); }

.image-panel {
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #eef2f1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.image-panel img { width: 100%; min-height: 320px; object-fit: cover; }

.answer {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid rgba(55, 199, 230, .38);
  border-radius: 8px;
  background: rgba(217, 247, 250, .34);
  color: var(--ink);
  line-height: 1.7;
}

.table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.shell > .table,
.card > .table,
section .table {
  display: table;
}
.table th,
.table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table th { width: 28%; color: var(--ink); }
.table td { color: var(--muted); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head p:last-child { margin: 0; color: var(--muted); }

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

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

.step-card {
  position: relative;
  min-height: 150px;
}

.step-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(245, 138, 42, .12);
  color: var(--coral);
  font-weight: 800;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.spec-item {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-item strong {
  color: var(--ink);
  min-width: 148px;
}

.spec-item span {
  color: var(--muted);
  line-height: 1.65;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge-row img {
  height: 42px;
  width: auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.find-page .page {
  overflow: hidden;
}

.find-hero {
  padding-top: clamp(62px, 7vw, 104px);
  background:
    radial-gradient(circle at 88% 18%, rgba(55, 199, 230, .16), transparent 28%),
    linear-gradient(180deg, #f8faf8, var(--surface));
}

.find-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.find-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.06;
}

.find-hero .lede {
  max-width: 620px;
  font-size: clamp(16px, 1.55vw, 19px);
}

.find-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.find-proof div,
.find-visual-note,
.route-note {
  border: 1px solid rgba(221, 226, 229, .88);
  border-radius: 10px;
  background: rgba(255, 255, 255, .76);
}

.find-proof div {
  padding: 14px;
}

.find-proof strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.find-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.find-hero-visual {
  margin: 0;
}

.find-hero-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(221, 226, 229, .9);
  box-shadow: 0 32px 78px rgba(17, 24, 32, .11);
}

.find-hero-visual > img[src*="/processed/"],
.image-panel > img[src*="/processed/"] {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .62), transparent 48%),
    linear-gradient(145deg, #eef1f0 0%, #e3e8e6 54%, #d5dcda 100%);
}

.find-visual-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 16px;
}

.find-visual-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.signal-mark {
  width: 58px;
  height: 38px;
  position: relative;
  border-radius: 999px;
  background: rgba(217, 247, 250, .72);
}

.signal-mark::before,
.signal-mark::after {
  content: "";
  position: absolute;
  inset: 9px 16px;
  border: 1.5px solid var(--cyan);
  border-radius: 999px;
  opacity: .9;
}

.signal-mark::after {
  inset: 4px 9px;
  opacity: .42;
}

.ecosystem-proof {
  padding: 28px 0;
  border-bottom: 1px solid rgba(221, 226, 229, .72);
}

.ecosystem-proof .shell {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
}

.ecosystem-proof p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.ecosystem-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.ecosystem-badges img {
  height: 44px;
  width: auto;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.find-section-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.find-section-copy h2 {
  max-width: 720px;
}

.find-section-copy p {
  max-width: 680px;
  color: var(--muted);
}

.find-stat-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 14px;
}

.find-stat-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.find-stat-card.featured {
  grid-row: span 2;
  min-height: 434px;
  background:
    radial-gradient(circle at 88% 10%, rgba(55, 199, 230, .22), transparent 32%),
    linear-gradient(145deg, #ffffff, #eef2f1);
}

.find-stat-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 84px);
  line-height: .9;
}

.find-stat-card.featured strong {
  font-size: clamp(72px, 10vw, 124px);
}

.find-stat-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

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

.ecosystem-path-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.ecosystem-path-card img {
  width: fit-content;
  height: 46px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.ecosystem-path-card h3,
.ecosystem-path-card .compact-card-heading {
  font-size: clamp(22px, 2.5vw, 30px);
}

.ecosystem-path-card p {
  color: var(--muted);
}

.route-note {
  margin-top: 20px;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.power-route {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

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

.route-item {
  padding: 20px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
}

.route-item h3 {
  font-size: 19px;
}

.route-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.format-bento {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 14px;
}

.format-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.format-card.media {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.format-card.media img {
  width: 100%;
  height: 100%;
  min-height: 434px;
  object-fit: cover;
}

.format-card h3 {
  font-size: 21px;
}

.format-card p {
  color: var(--muted);
}

.engineering-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
}

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

.module-tile,
.assessment-tile,
.power-state {
  padding: 20px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
}

.module-tile strong,
.assessment-tile strong,
.power-state strong {
  display: block;
  color: var(--ink);
}

.module-tile strong span,
.assessment-tile strong span,
.power-state strong span {
  display: inline;
  margin-top: 0;
  color: inherit;
  line-height: inherit;
}

.module-tile span,
.assessment-tile span,
.power-state span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

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

.power-state em {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-style: normal;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.assessment-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(55, 199, 230, .14), transparent 28%),
    linear-gradient(145deg, #ffffff, #eef2f1);
  box-shadow: var(--shadow);
}

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

.find-page .faq details {
  background: rgba(255, 255, 255, .78);
}

.cold-page .page {
  overflow: hidden;
}

.cold-hero {
  padding-top: clamp(62px, 7vw, 104px);
  background:
    radial-gradient(circle at 86% 16%, rgba(245, 138, 42, .12), transparent 30%),
    radial-gradient(circle at 72% 62%, rgba(55, 199, 230, .14), transparent 34%),
    linear-gradient(180deg, #f8faf8, var(--surface));
}

.cold-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.cold-hero h1 {
  max-width: 790px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.06;
}

.cold-hero .lede {
  max-width: 650px;
  font-size: clamp(16px, 1.55vw, 19px);
}

.cold-hero-visual {
  margin: 0;
  position: relative;
}

.cold-hero-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(221, 226, 229, .9);
  box-shadow: 0 32px 78px rgba(17, 24, 32, .11);
}

.cold-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.cold-proof div,
.cold-chip {
  border: 1px solid rgba(221, 226, 229, .88);
  border-radius: 10px;
  background: rgba(255, 255, 255, .76);
}

.cold-proof div {
  padding: 14px;
}

.cold-proof strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.cold-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cold-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.cold-section-copy {
  max-width: 780px;
  margin-bottom: 34px;
}

.cold-section-copy h2 {
  max-width: 760px;
}

.cold-section-copy p {
  max-width: 700px;
  color: var(--muted);
}

.cold-process-layout,
.cold-compare-layout,
.cold-quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.cold-process-steps {
  display: grid;
  gap: 12px;
}

.cold-process-step,
.cold-advantage-card,
.cold-compare-card,
.cold-product-card,
.cold-quality-card,
.cold-rfq-tile {
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.cold-process-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
}

.cold-process-step em {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: rgba(245, 138, 42, .12);
  color: var(--coral);
  font-style: normal;
  font-weight: 850;
}

.cold-process-step h3,
.cold-advantage-card h3,
.cold-compare-card h3,
.cold-product-card h3,
.cold-quality-card h3 {
  font-size: 20px;
}

.cold-process-step p,
.cold-advantage-card p,
.cold-compare-card p,
.cold-product-card p,
.cold-quality-card p,
.cold-rfq-tile span {
  color: var(--muted);
}

.cold-advantage-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 14px;
}

.cold-advantage-card {
  min-height: 220px;
  padding: clamp(22px, 3vw, 32px);
}

.cold-advantage-card.visual {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.cold-advantage-card.visual img {
  width: 100%;
  height: 100%;
  min-height: 454px;
  object-fit: cover;
}

.cold-advantage-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: clamp(28px, 4vw, 52px);
  line-height: .98;
}

.cold-compare-grid {
  display: grid;
  gap: 14px;
}

.cold-compare-card {
  padding: 24px;
}

.cold-compare-card.cold {
  background:
    radial-gradient(circle at 94% 8%, rgba(55, 199, 230, .16), transparent 30%),
    linear-gradient(145deg, #ffffff, #eef2f1);
}

.cold-compare-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.6;
}

.cold-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.cold-flow-item {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.cold-flow-item strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.cold-flow-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.cold-product-card {
  min-height: 220px;
  padding: 22px;
}

.cold-products.product-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.cold-product-card.product-link {
	display: grid;
	grid-template-columns: minmax(140px, .72fr) minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	min-height: 270px;
	padding: 18px;
	border: 1px solid rgba(221, 226, 229, .9);
	border-radius: 10px;
	background: rgba(255, 255, 255, .82);
	box-shadow: var(--shadow);
	color: inherit;
	text-decoration: none;
}
.cold-product-card.product-link img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	border-radius: 7px;
	background: linear-gradient(145deg, #f7f8f8, #e9edec);
}
.cold-product-card.product-link p { margin: 10px 0 0; color: var(--muted); line-height: 1.7; }

.cold-product-card.media {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
}

.cold-product-card.media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

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

.cold-quality-card {
  padding: 20px;
}

.cold-rfq-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 138, 42, .12), transparent 28%),
    linear-gradient(145deg, #ffffff, #eef2f1);
  box-shadow: var(--shadow);
}

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

.cold-rfq-tile {
  padding: 20px;
}

.cold-rfq-tile strong {
  display: block;
  color: var(--ink);
}

.cold-rfq-tile span {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

.cold-flow-item strong span,
.cold-rfq-tile strong span {
  display: inline;
  margin-top: 0;
  color: inherit;
  line-height: inherit;
}

.products-page .page {
  overflow: hidden;
}

.products-hero {
  padding-top: clamp(62px, 7vw, 104px);
  background:
    radial-gradient(circle at 86% 16%, rgba(55, 199, 230, .14), transparent 30%),
    radial-gradient(circle at 74% 68%, rgba(245, 138, 42, .10), transparent 34%),
    linear-gradient(180deg, #f8faf8, var(--surface));
}

.products-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.products-hero h1 {
  max-width: 790px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.06;
}

.products-hero .lede {
  max-width: 650px;
  font-size: clamp(16px, 1.55vw, 19px);
}

.products-visual {
  margin: 0;
}

.products-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(221, 226, 229, .9);
  box-shadow: 0 32px 78px rgba(17, 24, 32, .11);
}

.products-visual img[src*="/processed/"],
.product-detail figure img[src*="/processed/"] {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .62), transparent 48%),
    linear-gradient(145deg, #eef1f0 0%, #e3e8e6 54%, #d5dcda 100%);
}

.product-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.product-proof div,
.product-family-card,
.product-detail,
.selection-tile {
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.product-proof div {
  padding: 14px;
}

.product-proof strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.product-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-section-copy {
  max-width: 780px;
  margin-bottom: 34px;
}

.product-section-copy h2 {
  max-width: 760px;
}

.product-section-copy p {
  max-width: 700px;
  color: var(--muted);
}

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

.product-family-card {
  min-height: 245px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, background .18s ease;
}

.product-family-card:hover,
.product-family-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .92);
  outline: none;
}

.product-family-card img {
  width: 76px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.product-family-card h3 {
  font-size: 22px;
}

.product-family-card p {
  color: var(--muted);
}

.product-family-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-family-card li,
.product-detail-tags li {
  padding: 6px 9px;
  border: 1px solid rgba(221, 226, 229, .92);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-size: 12px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
}

.product-detail + .product-detail {
  margin-top: 18px;
}

.product-detail.reverse {
  grid-template-columns: minmax(380px, 1.05fr) minmax(0, .95fr);
}

.product-detail figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff, #eef2f1);
}

.product-detail figure img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

.smart-healthcare-scene .scene-stage {
  position: relative;
  min-height: clamp(500px, 50vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(177, 188, 190, .62);
  border-radius: 8px;
  background: #e1e6e4;
  box-shadow: 0 34px 88px rgba(17, 24, 32, .12);
}

.smart-healthcare-scene .scene-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(238, 242, 241, .98) 0%, rgba(238, 242, 241, .92) 28%, rgba(238, 242, 241, .62) 44%, rgba(238, 242, 241, 0) 64%);
  pointer-events: none;
}

.smart-healthcare-scene .scene-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.smart-healthcare-scene .scene-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(49%, 560px);
  min-height: clamp(500px, 50vw, 620px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.smart-healthcare-scene .scene-copy h2 {
  max-width: 520px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
}

.smart-healthcare-scene .scene-copy p {
  max-width: 510px;
  color: #4f5a62;
  font-size: 16px;
  line-height: 1.82;
}

.smart-healthcare-scene .scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.smart-healthcare-scene .scene-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(78, 101, 108, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  color: #2f3940;
  font-size: 12px;
  font-weight: 720;
}

.product-detail h3 {
  font-size: clamp(26px, 3.4vw, 42px);
}

.product-detail p {
  color: var(--muted);
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

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

.product-detail-points div {
  padding: 14px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 10px;
  background: rgba(255, 255, 255, .62);
}

.product-detail-points strong {
  display: block;
  color: var(--ink);
}

.product-detail-points span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.selection-tile {
  min-height: 180px;
  padding: 20px;
}

.selection-tile strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.selection-tile span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.products-cta-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(55, 199, 230, .13), transparent 28%),
    linear-gradient(145deg, #ffffff, #eef2f1);
  box-shadow: var(--shadow);
}

.industries-page .page {
  overflow: hidden;
}

.industries-hero {
  padding-top: clamp(62px, 7vw, 104px);
  background:
    radial-gradient(circle at 82% 12%, rgba(55, 199, 230, .12), transparent 32%),
    linear-gradient(180deg, #f8faf8, var(--surface));
}

.industries-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.industries-hero h1 {
  max-width: 780px;
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.06;
}

.industries-hero .lede {
  max-width: 630px;
  font-size: clamp(16px, 1.55vw, 19px);
}

.industries-visual {
  margin: 0;
  display: grid;
  gap: 14px;
}

.industries-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 18px;
  box-shadow: 0 32px 78px rgba(17, 24, 32, .11);
}

.industry-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.industry-proof div,
.industry-card,
.industry-route-card,
.rfq-matrix-card {
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.industry-proof div {
  padding: 14px;
}

.industry-proof strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.industry-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.industry-map {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(22px, 4vw, 50px);
  align-items: start;
}

.industry-map-copy {
  position: sticky;
  top: 100px;
}

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

.industry-card {
  min-height: 260px;
  padding: 22px;
}

.industry-card img {
  width: 70px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.industry-card h3 {
  font-size: 21px;
}

.industry-card p {
  color: var(--muted);
}

.industry-card ul,
.industry-route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.industry-card li,
.industry-route-tags li {
  padding: 6px 9px;
  border: 1px solid rgba(221, 226, 229, .92);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-size: 12px;
}

.industry-route {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.industry-route.reverse {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, .92fr);
}

.industry-route figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #eef2f1);
  box-shadow: var(--shadow);
}

.industry-route figure img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

.industries-visual img[src*="/processed/"]:not([src*="healthcare-smart-badge-application-scene"]),
.industry-route figure img[src*="/processed/"]:not([src*="healthcare-smart-badge-application-scene"]) {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .62), transparent 48%),
    linear-gradient(145deg, #eef1f0 0%, #e3e8e6 54%, #d5dcda 100%);
}

.industry-route-card {
  padding: clamp(22px, 3vw, 34px);
}

.industry-route-card h2 {
  font-size: clamp(28px, 3.6vw, 46px);
}

.industry-route-card p {
  color: var(--muted);
}

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

.industry-checks div {
  padding: 14px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 10px;
  background: rgba(255, 255, 255, .62);
}

.industry-checks strong {
  display: block;
  color: var(--ink);
}

.industry-checks span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.rfq-matrix-card {
  min-height: 190px;
  padding: 20px;
}

.rfq-matrix-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.rfq-matrix-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.industries-cta-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 138, 42, .12), transparent 28%),
    linear-gradient(145deg, #ffffff, #eef2f1);
  box-shadow: var(--shadow);
}

.resources-page .page {
  overflow: hidden;
}

.resources-hero {
  padding-top: clamp(62px, 7vw, 104px);
  background:
    radial-gradient(circle at 82% 12%, rgba(55, 199, 230, .13), transparent 32%),
    radial-gradient(circle at 68% 72%, rgba(245, 138, 42, .09), transparent 34%),
    linear-gradient(180deg, #f8faf8, var(--surface));
}

.resources-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.resources-hero h1 {
  max-width: 790px;
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.06;
}

.resources-hero .lede {
  max-width: 650px;
  font-size: clamp(16px, 1.55vw, 19px);
}

.legal-page .page { padding: clamp(42px, 5vw, 70px) 0; }
.legal-hero {
  padding-top: clamp(52px, 6vw, 82px) !important;
  background: linear-gradient(180deg, #f8faf9, var(--surface));
}
.legal-shell { width: min(calc(100% - 40px), 880px); margin-inline: auto; }
.legal-hero h1 { font-size: clamp(30px, 3vw, 40px); line-height: 1.15; }
.legal-hero p { max-width: 760px; margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.legal-content h2 { margin-top: 34px; font-size: 21px; line-height: 1.35; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 10px 0 0; color: var(--graphite); font-size: 15px; line-height: 1.9; }
.legal-content a { color: var(--ink); text-underline-offset: 3px; }

.resources-visual {
  margin: 0;
}

.resources-visual img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 18px;
  box-shadow: 0 32px 78px rgba(17, 24, 32, .11);
}

.resource-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.resource-proof div,
.resource-feature,
.resource-cluster-card,
.article-blueprint,
.term-card,
.geo-card {
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.resource-proof div {
  padding: 14px;
}

.resource-proof strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.resource-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.resource-answer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.resource-feature {
  padding: clamp(24px, 4vw, 42px);
}

.resource-feature h2 {
  font-size: clamp(30px, 3.6vw, 44px);
}

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

.resource-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.resource-feature-list div {
  padding: 14px 0;
  border-top: 1px solid rgba(221, 226, 229, .86);
}

.resource-feature-list strong {
  display: block;
  color: var(--ink);
}

.resource-feature-list span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.resource-answer-layout figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #eef2f1);
  box-shadow: var(--shadow);
}

.resource-answer-layout figure img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.resource-cluster-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 14px;
}

.resource-cluster-card {
  min-height: 270px;
  padding: 22px;
}

.resource-cluster-card.featured {
  grid-row: span 2;
  min-height: 554px;
  background:
    radial-gradient(circle at 88% 6%, rgba(55, 199, 230, .13), transparent 30%),
    rgba(255, 255, 255, .78);
}

.resource-cluster-card img {
  width: 76px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.resource-cluster-card h3 {
  font-size: 22px;
}

.resource-cluster-card p {
  color: var(--muted);
}

.resource-cluster-card ul,
.article-blueprint ul,
.geo-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.resource-cluster-card li,
.article-blueprint li,
.geo-card li {
  padding: 6px 9px;
  border: 1px solid rgba(221, 226, 229, .92);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-size: 12px;
}

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

.article-blueprint {
  min-height: 300px;
  padding: 22px;
}

.article-blueprint strong {
  display: block;
  color: var(--coral);
  font-size: 13px;
  margin-bottom: 12px;
}

.article-blueprint h3 {
  font-size: 22px;
}

.article-blueprint p {
  color: var(--muted);
}

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

.term-card,
.geo-card {
  min-height: 170px;
  padding: 20px;
}

.term-card strong,
.geo-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.term-card span,
.geo-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.resources-cta-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(55, 199, 230, .12), transparent 28%),
    linear-gradient(145deg, #ffffff, #eef2f1);
  box-shadow: var(--shadow);
}

.contact-page .page {
  overflow: hidden;
}

.contact-hero {
  padding-top: clamp(62px, 7vw, 104px);
  background:
    radial-gradient(circle at 84% 12%, rgba(55, 199, 230, .12), transparent 32%),
    radial-gradient(circle at 66% 72%, rgba(245, 138, 42, .09), transparent 34%),
    linear-gradient(180deg, #f8faf8, var(--surface));
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(390px, .86fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.contact-hero h1 {
  max-width: 780px;
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.06;
}

.contact-hero .lede {
  max-width: 660px;
  font-size: clamp(16px, 1.55vw, 19px);
}

.contact-panel,
.contact-form,
.rfq-panel,
.contact-info-card,
.contact-step {
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: clamp(22px, 3vw, 32px);
}

.contact-panel strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.contact-panel a,
.contact-panel span {
  color: var(--muted);
}

.contact-panel .contact-line {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(221, 226, 229, .86);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.contact-form,
.rfq-panel {
  padding: clamp(22px, 3vw, 34px);
}

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

.contact-form label {
	display: grid;
	gap: 8px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 700;
}

.contact-form label.full { grid-column: 1 / -1; }
.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid rgba(196, 205, 209, .95);
	border-radius: 8px;
	background: rgba(255, 255, 255, .96);
	color: var(--ink);
	font: inherit;
}
.contact-form textarea { min-height: 148px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--yuli-cyan, #37c7e6);
	outline: 3px solid rgba(55, 199, 230, .16);
}
.field-hint { color: var(--muted); font-size: 12px; font-weight: 500; line-height: 1.55; }

.contact-form h2,
.rfq-panel h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.contact-form p,
.rfq-panel p {
  color: var(--muted);
}

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

.contact-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.contact-field.full {
  grid-column: 1 / -1;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(196, 205, 209, .95);
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 11px 12px;
}

.contact-field textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-field small {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: 2px solid rgba(55, 199, 230, .42);
  outline-offset: 2px;
  border-color: rgba(55, 199, 230, .9);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.contact-option {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 10px;
  background: rgba(255, 255, 255, .62);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-option input {
  margin-top: 3px;
  accent-color: var(--coral);
}

.rfq-checklist {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.rfq-checklist div {
  padding: 15px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 10px;
  background: rgba(255, 255, 255, .62);
}

.rfq-checklist strong {
  display: block;
  color: var(--ink);
}

.rfq-checklist span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

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

.contact-info-card,
.contact-step {
  min-height: 170px;
  padding: 20px;
}

.contact-info-card strong,
.contact-step strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.contact-info-card a,
.contact-info-card span,
.contact-step span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  text-decoration: none;
}

.contact-cta-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 138, 42, .12), transparent 28%),
    linear-gradient(145deg, #ffffff, #eef2f1);
  box-shadow: var(--shadow);
}

.en-copy { display: none; }
body[data-lang="en"] .zh-copy { display: none; }
body[data-lang="en"] .en-copy { display: block; }
body[data-lang="en"] .en-inline { display: inline; }

body:not([data-lang="en"]) .product-proof span .zh-copy,
body:not([data-lang="en"]) .product-family-card h3 .zh-copy,
body:not([data-lang="en"]) .product-family-card p .zh-copy,
body:not([data-lang="en"]) .product-detail-points strong .zh-copy,
body:not([data-lang="en"]) .product-detail-points span .zh-copy,
body:not([data-lang="en"]) .selection-tile strong .zh-copy,
body:not([data-lang="en"]) .selection-tile span .zh-copy,
body:not([data-lang="en"]) .industry-proof span .zh-copy,
body:not([data-lang="en"]) .industry-card h3 .zh-copy,
body:not([data-lang="en"]) .industry-card p .zh-copy,
body:not([data-lang="en"]) .industry-checks strong .zh-copy,
body:not([data-lang="en"]) .industry-checks span .zh-copy,
body:not([data-lang="en"]) .rfq-matrix-card strong .zh-copy,
body:not([data-lang="en"]) .rfq-matrix-card span .zh-copy,
body:not([data-lang="en"]) .resource-proof span .zh-copy,
body:not([data-lang="en"]) .resource-feature-list strong .zh-copy,
body:not([data-lang="en"]) .resource-feature-list span .zh-copy,
body:not([data-lang="en"]) .term-card strong .zh-copy,
body:not([data-lang="en"]) .term-card span .zh-copy,
body:not([data-lang="en"]) .geo-card strong .zh-copy,
body:not([data-lang="en"]) .geo-card span .zh-copy,
body:not([data-lang="en"]) .faq summary .zh-copy,
body:not([data-lang="en"]) .faq p .zh-copy,
body[data-lang="en"] .product-proof span .en-copy,
body[data-lang="en"] .product-family-card h3 .en-copy,
body[data-lang="en"] .product-family-card p .en-copy,
body[data-lang="en"] .product-detail-points strong .en-copy,
body[data-lang="en"] .product-detail-points span .en-copy,
body[data-lang="en"] .selection-tile strong .en-copy,
body[data-lang="en"] .selection-tile span .en-copy,
body[data-lang="en"] .industry-proof span .en-copy,
body[data-lang="en"] .industry-card h3 .en-copy,
body[data-lang="en"] .industry-card p .en-copy,
body[data-lang="en"] .industry-checks strong .en-copy,
body[data-lang="en"] .industry-checks span .en-copy,
body[data-lang="en"] .rfq-matrix-card strong .en-copy,
body[data-lang="en"] .rfq-matrix-card span .en-copy,
body[data-lang="en"] .resource-proof span .en-copy,
body[data-lang="en"] .resource-feature-list strong .en-copy,
body[data-lang="en"] .resource-feature-list span .en-copy,
body[data-lang="en"] .term-card strong .en-copy,
body[data-lang="en"] .term-card span .en-copy,
body[data-lang="en"] .geo-card strong .en-copy,
body[data-lang="en"] .geo-card span .en-copy,
body[data-lang="en"] .faq summary .en-copy,
body[data-lang="en"] .faq p .en-copy {
  display: inline;
  margin-top: 0;
  color: inherit;
  line-height: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  .signal-mark::before {
    animation: signalPulse 2.8s ease-in-out infinite;
  }

  .signal-mark::after {
    animation: signalPulse 2.8s ease-in-out infinite .45s;
  }
}

@keyframes signalPulse {
  0%, 100% { transform: scale(.88); opacity: .34; }
  48% { transform: scale(1.08); opacity: .82; }
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
}

.faq p { margin: 12px 0 0; color: var(--muted); }

.callout-strip {
  padding: 28px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 0%, rgba(55, 199, 230, .16), transparent 30%),
    linear-gradient(145deg, #ffffff, #eef2f1);
  border: 1px solid var(--line);
}

.product-module {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .64);
  box-shadow: var(--shadow);
}

.product-module + .product-module {
  margin-top: 18px;
}

.product-module .image-panel {
  box-shadow: none;
}

.product-module h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.product-module .metric-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

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

.product-tags li {
  padding: 7px 10px;
  border: 1px solid rgba(221, 226, 229, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-size: 13px;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-tile {
  padding: 22px;
  border: 1px solid rgba(221, 226, 229, .86);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
}

.metric-tile strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.metric-tile span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.dark .metric-tile {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.dark .metric-tile strong { color: var(--white); }
.dark .metric-tile span { color: rgba(255, 255, 255, .68); }

.dark {
  background: radial-gradient(circle at 80% 12%, rgba(55, 199, 230, .16), transparent 30%), var(--pcb);
  color: rgba(255, 255, 255, .72);
}
.dark h2,
.dark h3 { color: var(--white); }
.dark .card { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); box-shadow: none; }
.dark .card p { color: rgba(255, 255, 255, .66); }

.footer {
  padding: 58px 0 30px;
  background: #0b1118;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}
.footer h2,
.footer h3,
.footer strong { color: var(--white); }
.footer p,
.footer a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.footer a { display: block; margin-top: 10px; }
.footer-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.footer-trust-links a { margin-top: 0; font-size: 13px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.privacy-consent input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; }
.privacy-consent a { color: var(--ink); }
.form-trust-note { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status {
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.6;
}
.form-status.is-success { border-color: rgba(37, 137, 87, .28); background: #eef8f2; color: #14613a; }
.form-status.is-error { border-color: rgba(184, 72, 46, .28); background: #fff3ef; color: #923c26; }

.en-copy { display: none; }
body[data-lang="en"] .zh-copy { display: none; }
body[data-lang="en"] .en-copy { display: block; }
body[data-lang="en"] .en-inline { display: inline; }
body:not([data-lang="en"]) .en-copy { display: none; }
body[data-lang="en"] .zh-copy { display: none; }

.content-credibility {
  padding: 22px 0;
  border-top: 1px solid rgba(221, 226, 229, .9);
  background: #eef1f0;
  color: var(--graphite);
}
.credibility-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.credibility-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  line-height: 1.55;
}
.credibility-label { color: var(--muted); }
.credibility-item strong,
.credibility-item time,
.credibility-item a { color: var(--ink); font-weight: 650; }
.credibility-item a { text-decoration-color: rgba(17, 24, 32, .28); text-underline-offset: 3px; }
.credibility-source { margin-left: auto; }

@media (max-width: 1120px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 96px);
    overflow: auto;
  }
  .nav-links.open { display: flex; }
  .nav-item {
    min-height: auto;
    display: block;
  }
  .nav-item::after { display: none; }
  .nav-link { width: 100%; justify-content: flex-start; border-radius: 8px; }
  .nav-item.has-mega {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(221, 226, 229, .7);
  }
  .nav-item.has-mega > .nav-link::after {
    margin-left: auto;
    transform: rotate(45deg);
  }
  .mega,
  .nav-item:hover .mega,
  .nav-item:focus-within .mega {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
    margin: 4px 0 10px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .mega-intro { display: none; }
  .mega-list {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 10px;
    border-left: 1px solid var(--line);
  }
  .mega-link {
    min-height: 58px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 8px 10px;
  }
  .mega-icon {
    width: 48px;
    height: 34px;
    border-radius: 8px;
  }
  .mega-icon img {
    width: 46px;
    height: 31px;
  }
  .nav-action { display: none; }
  .brand-name { display: none; }
  .language-selector summary { min-width: 70px; padding: 0 9px; }
  .credibility-row { align-items: flex-start; flex-direction: column; gap: 8px; }
  .credibility-source { margin-left: 0; }
  .hero-grid,
  .split,
  .grid-2,
  .product-module,
  .section-head,
  .products-hero-grid,
  .industries-hero-grid,
  .resources-hero-grid,
  .resource-answer-layout,
  .contact-hero-grid,
  .contact-layout,
  .industry-map,
  .industry-route,
  .industry-route.reverse,
  .find-hero-grid,
  .ecosystem-proof .shell,
  .power-route,
  .engineering-grid,
  .cold-hero-grid,
  .cold-process-layout,
  .cold-compare-layout,
  .cold-quality-layout { grid-template-columns: minmax(0, 1fr); }
  .resources-hero-grid > *,
  .cold-hero-grid > *,
  .products-hero-grid > *,
  .industries-hero-grid > *,
  .find-hero-grid > * { min-width: 0; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .find-hero-visual img { min-height: 300px; }
  .cold-hero-visual img { min-height: 300px; }
  .products-visual img { min-height: 240px; }
  .industries-visual img { min-height: 300px; }
  .resources-visual img { min-height: 0; }
  .resource-answer-layout figure img { min-height: 300px; }
  .industry-map-copy { position: static; }
  .ecosystem-badges { justify-content: flex-start; }
  .find-stat-grid,
  .ecosystem-paths,
  .format-bento,
  .power-states,
  .assessment-grid,
  .cold-advantage-grid,
  .cold-flow,
  .cold-products,
  .cold-rfq-grid,
  .product-family-grid,
  .selection-grid,
  .industry-grid,
  .rfq-matrix,
  .resource-cluster-grid,
  .article-blueprint-grid,
  .term-grid,
  .geo-grid,
  .contact-info-grid,
  .contact-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .find-stat-card.featured,
  .format-card.media,
  .cold-advantage-card.visual,
  .cold-product-card.media,
  .resource-cluster-card.featured { grid-row: auto; grid-column: 1 / -1; min-height: auto; }
  .format-card.media img { min-height: 320px; }
  .cold-advantage-card.visual img,
  .cold-product-card.media img { min-height: 300px; }
  .product-detail,
  .product-detail.reverse { grid-template-columns: 1fr; }
  .product-detail figure img { min-height: 300px; }
  .smart-healthcare-scene .scene-copy { width: min(58%, 560px); }
  .industry-route figure img { min-height: 300px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --shell: min(calc(100% - 28px), 1180px); }
  body { overflow-x: hidden; }
  .page { padding: 62px 0; }
  h1,
  h2,
  .find-hero h1,
  .cold-hero h1,
  .products-hero h1,
  .industries-hero h1,
  .resources-hero h1,
  .contact-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  h1 { font-size: clamp(32px, 9vw, 36px); }
  .grid-3,
  .grid-4,
  .metric-band,
  .find-proof,
  .find-stat-grid,
  .ecosystem-paths,
  .format-bento,
  .module-map,
  .power-states,
  .assessment-grid,
  .cold-proof,
  .cold-advantage-grid,
  .cold-flow,
  .cold-products,
  .cold-rfq-grid,
  .product-proof,
  .product-family-grid,
  .product-detail-points,
  .selection-grid,
  .industry-proof,
  .industry-grid,
  .industry-checks,
  .rfq-matrix,
  .resource-proof,
  .resource-cluster-grid,
  .article-blueprint-grid,
  .term-grid,
  .geo-grid,
  .contact-fields,
  .contact-options,
  .contact-info-grid,
  .contact-step-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .find-hero h1 { font-size: clamp(32px, 9vw, 36px); }
  .cold-hero h1 { font-size: clamp(32px, 9vw, 36px); }
  .products-hero h1 { font-size: clamp(32px, 9vw, 36px); }
  .industries-hero h1 { font-size: clamp(32px, 9vw, 36px); }
  .resources-hero h1 { font-size: clamp(30px, 8.4vw, 34px); }
  .contact-hero h1 { font-size: clamp(32px, 9vw, 36px); }
  .find-hero .lede { font-size: 16px; }
  .cold-hero .lede { font-size: 16px; }
  .products-hero .lede { font-size: 16px; }
  .industries-hero .lede { font-size: 16px; }
  .resources-hero .lede { font-size: 16px; }
  .contact-hero .lede { font-size: 16px; }
  .find-proof div,
  .find-stat-card,
  .ecosystem-path-card,
  .format-card,
  .module-tile,
  .assessment-tile,
  .power-state,
  .cold-proof div,
  .cold-process-step,
  .cold-advantage-card,
  .cold-compare-card,
  .cold-product-card,
  .cold-quality-card,
  .cold-rfq-tile,
  .product-family-card,
  .product-detail,
  .selection-tile,
  .industry-card,
  .industry-route-card,
  .rfq-matrix-card,
  .resource-feature,
  .resource-cluster-card,
  .article-blueprint,
  .term-card,
  .geo-card,
  .contact-panel,
  .contact-form,
  .rfq-panel,
  .contact-info-card,
  .contact-step { padding: 18px; }
  .find-visual-note { grid-template-columns: 1fr; }
  .ecosystem-badges img { height: 40px; }
  .find-stat-card.featured strong { font-size: 68px; }
  .find-stat-card strong { font-size: 46px; }
  .cold-process-step { grid-template-columns: 38px minmax(0, 1fr); }
  .cold-process-step em { width: 38px; height: 38px; }
  .spec-item { display: block; }
  .spec-item strong { display: block; margin-bottom: 6px; }
  .smart-healthcare-scene .scene-stage { min-height: 0; }
  .smart-healthcare-scene .scene-stage::after { display: none; }
  .smart-healthcare-scene .scene-stage > img {
    position: static;
    height: 320px;
    object-position: 68% center;
  }
  .smart-healthcare-scene .scene-copy {
    width: 100%;
    min-height: 0;
    padding: 26px 22px 30px;
    background: #eef2f1;
  }
  .smart-healthcare-scene .scene-copy h2 { font-size: 30px; }
  .smart-healthcare-scene .scene-copy p { font-size: 15px; }
  .shell:has(> .table),
  .card:has(> .table) {
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--yuli-coral) rgba(17, 24, 32, .1);
  }
  .footer-bottom { flex-direction: column; }
}
/* Evidence-led battery-life resource */
.battery-model-hero { padding-top: clamp(72px, 9vw, 128px); background: linear-gradient(180deg, #f3f5f6 0%, #fafbfb 72%, #fff 100%); }
.battery-model-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); align-items: center; gap: clamp(42px, 7vw, 104px); }
.battery-model-hero h1 { max-width: 780px; font-size: clamp(42px, 5vw, 68px); }
.battery-model-visual { min-height: 440px; display: grid; place-items: center; }
.battery-model-visual img { width: 100%; height: auto; object-fit: contain; }
.model-summary { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(36px, 7vw, 96px); align-items: center; }
.formula-card { padding: clamp(28px, 4vw, 46px); border: 1px solid #d7dbde; border-left: 3px solid var(--yuli-coral, #f58a2a); background: #f7f8f8; }
.formula-card span, .formula-card small { display: block; }
.formula-label { margin-bottom: 20px; color: #657077; font-size: 13px; font-weight: 700; }
.formula-card strong { display: block; color: #15191c; font-size: clamp(23px, 2.5vw, 34px); line-height: 1.35; }
.formula-card small { margin-top: 18px; color: #5d676d; line-height: 1.7; }
.model-state-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.model-state-grid article { min-height: 230px; padding: 26px; border: 1px solid #dde1e3; background: #fff; }
.model-state-grid article.featured { grid-column: span 2; min-height: 210px; background: #15191c; border-color: #15191c; color: #fff; }
.model-state-grid strong { color: var(--yuli-coral, #f58a2a); font-size: clamp(26px, 3vw, 38px); }
.model-state-grid h3 { margin: 30px 0 10px; font-size: 18px; }
.model-state-grid p { margin: 0; color: #657077; font-size: 14px; line-height: 1.75; }
.model-state-grid .featured p { color: #c7ced1; }
.calculator-band { background: #edf0f1; }
.calculator-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr); gap: clamp(42px, 8vw, 112px); align-items: center; }
.calculator-note { margin-top: 24px; padding-left: 18px; border-left: 2px solid var(--yuli-coral, #f58a2a); color: #59646a; font-size: 14px; line-height: 1.75; }
.battery-calculator { padding: clamp(26px, 4vw, 44px); background: #fff; border: 1px solid #d8dddf; box-shadow: 0 24px 60px rgba(25, 32, 36, .08); }
.calculator-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.calculator-fields label { display: grid; gap: 8px; color: #394247; font-size: 13px; font-weight: 700; }
.input-unit { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid #bfc7cb; }
.input-unit input { min-width: 0; padding: 12px 0; border: 0; outline: 0; background: transparent; color: #14191c; font: 600 22px/1.2 inherit; }
.input-unit:focus-within { border-color: var(--yuli-cyan, #37c7e6); }
.input-unit b { color: #7b858a; font-size: 12px; }
.calculator-result { margin-top: 30px; padding-top: 26px; border-top: 1px solid #e0e3e5; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.calculator-result > span { flex: 1 0 100%; color: #657077; font-size: 13px; font-weight: 700; }
.calculator-result strong { color: #15191c; font-size: clamp(56px, 7vw, 86px); line-height: .9; }
.calculator-result > b { color: var(--yuli-coral, #f58a2a); font-size: 18px; }
.calculator-result small { margin-left: auto; color: #657077; }
@media (max-width: 900px) {
  .battery-model-hero-grid, .model-summary, .calculator-layout { grid-template-columns: 1fr; }
  .battery-model-visual { min-height: 280px; }
  .model-state-grid { grid-template-columns: 1fr 1fr; }
  .calculator-layout { gap: 34px; }
}
@media (max-width: 560px) {
  .battery-model-hero h1 { font-size: 38px; }
  .model-state-grid, .calculator-fields { grid-template-columns: 1fr; }
  .model-state-grid article.featured { grid-column: auto; }
  .calculator-result small { flex-basis: 100%; margin-left: 0; }
}
/* Cold-press finished-product validation resource */
.validation-hero { padding-top: clamp(72px, 9vw, 128px); background: linear-gradient(180deg, #f3f5f6 0%, #fafbfb 72%, #fff 100%); }
.validation-hero-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr); gap: clamp(42px, 7vw, 100px); align-items: center; }
.validation-hero h1 { max-width: 820px; font-size: clamp(42px, 5vw, 68px); }
.validation-visual { min-height: 430px; display: grid; place-items: center; }
.validation-visual img { width: 100%; height: auto; object-fit: contain; }
.validation-steps { list-style: none; margin: 42px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d9dfe1; }
.validation-steps li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 28px 28px 10px 0; }
.validation-steps strong { color: var(--yuli-coral, #f58a2a); font-size: 15px; }
.validation-steps h3 { margin: 0 0 10px; font-size: 20px; }
.validation-steps p { margin: 0; color: #657077; font-size: 14px; line-height: 1.75; }
.validation-matrix { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.validation-matrix article { min-height: 300px; padding: 28px; border: 1px solid #dbe0e2; background: #fff; }
.validation-matrix article > span { display: inline-block; color: var(--yuli-coral, #f58a2a); font-size: 30px; font-weight: 800; }
.validation-matrix h3 { margin: 42px 0 12px; font-size: 20px; }
.validation-matrix p { color: #5f6a70; font-size: 14px; line-height: 1.75; }
.validation-matrix small { display: block; margin-top: 20px; color: #8a9296; font-size: 11px; text-transform: uppercase; }
.validation-record-band { background: #edf0f1; }
.table-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--yuli-coral) rgba(17, 24, 32, .1);
}
.table-scroll::-webkit-scrollbar,
.shell:has(> .table)::-webkit-scrollbar,
.card:has(> .table)::-webkit-scrollbar { height: 6px; }
.table-scroll::-webkit-scrollbar-track,
.shell:has(> .table)::-webkit-scrollbar-track,
.card:has(> .table)::-webkit-scrollbar-track { background: rgba(17, 24, 32, .08); }
.table-scroll::-webkit-scrollbar-thumb,
.shell:has(> .table)::-webkit-scrollbar-thumb,
.card:has(> .table)::-webkit-scrollbar-thumb { background: var(--yuli-coral); border-radius: 999px; }
.validation-table { min-width: 780px; background: #fff; }
.validation-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px, 7vw, 96px); align-items: center; }
.validation-detail figure { min-height: 390px; display: grid; place-items: center; }
.validation-detail img { width: 100%; height: auto; object-fit: contain; }
@media (max-width: 900px) {
  .validation-hero-grid, .validation-detail { grid-template-columns: 1fr; }
  .validation-steps, .validation-matrix { grid-template-columns: 1fr 1fr; }
  .validation-visual { min-height: 280px; }
}
@media (max-width: 560px) {
  .validation-hero h1 { font-size: 38px; }
  .validation-steps, .validation-matrix { grid-template-columns: 1fr; }
  .validation-matrix article { min-height: 0; }
}
/* Cold-vs-hot process-window evidence */
.process-window-table { min-width: 980px; }
.process-window-table th:first-child { width: 14%; }
.process-window-table td { min-width: 220px; vertical-align: top; }
.process-evidence-band { background: #edf0f1; }
.process-evidence-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(42px, 7vw, 96px); align-items: center; }
.process-evidence-grid figure { min-height: 380px; display: grid; place-items: center; }
.process-evidence-grid img { width: 100%; height: auto; object-fit: contain; }
.process-range { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.process-range div { padding: 22px; border: 1px solid #d3dadd; background: #fff; }
.process-range strong { display: block; color: var(--yuli-coral, #f58a2a); font-size: 25px; }
.process-range span { display: block; margin-top: 8px; color: #647078; font-size: 12px; line-height: 1.55; }
.process-decision { list-style: none; padding: 0; margin: 36px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-decision li { min-height: 220px; padding: 26px; border-top: 2px solid var(--yuli-coral, #f58a2a); background: #f5f7f7; }
.process-decision strong { color: #8a9499; font-size: 13px; }
.process-decision h3 { margin: 38px 0 10px; font-size: 19px; }
.process-decision p { color: #657078; font-size: 14px; line-height: 1.75; }
.process-faq-band { background: #f6f7f7; }
.process-faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-faq-grid article { padding: 28px; border: 1px solid #dde1e3; background: #fff; }
.process-faq-grid h3 { margin: 0 0 16px; font-size: 20px; }
.process-faq-grid p { margin: 0; color: #606b71; font-size: 14px; line-height: 1.8; }
@media (max-width: 900px) { .process-evidence-grid { grid-template-columns: 1fr; } .process-decision { grid-template-columns: 1fr 1fr; } .process-faq-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .process-range, .process-decision { grid-template-columns: 1fr; } }
/* Light-energy tracker budget */
.energy-scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.energy-scene-grid article { min-height: 300px; padding: 28px; border: 1px solid #dce1e3; background: #fff; }
.energy-scene-grid article > span { color: var(--yuli-coral, #f58a2a); font-size: 13px; font-weight: 800; }
.energy-scene-grid h3 { margin: 42px 0 12px; font-size: 22px; }
.energy-scene-grid p { color: #606b71; font-size: 14px; line-height: 1.8; }
.energy-scene-grid dl { margin: 26px 0 0; border-top: 1px solid #e1e4e6; }
.energy-scene-grid dl div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid #e1e4e6; font-size: 12px; }
.energy-scene-grid dt { color: #7c868b; } .energy-scene-grid dd { margin: 0; color: #252b2e; font-weight: 700; }
.energy-calculator-band { background: #edf0f1; }
.energy-calculator-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 8vw, 110px); align-items: center; }
.energy-formula { margin-top: 28px; padding-left: 18px; border-left: 2px solid var(--yuli-coral, #f58a2a); }
.energy-formula strong, .energy-formula small { display: block; }
.energy-formula strong { font-size: 18px; line-height: 1.55; }
.energy-formula small { margin-top: 12px; color: #657077; line-height: 1.65; }
.energy-budget-calculator { padding: clamp(26px, 4vw, 42px); border: 1px solid #d8dddf; background: #fff; box-shadow: 0 24px 60px rgba(25, 32, 36, .08); }
.energy-result-grid { margin-top: 28px; padding-top: 24px; border-top: 1px solid #e0e4e5; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.energy-result-grid > div { padding: 17px; background: #f5f7f7; }
.energy-result-grid > div.featured { background: #15191c; color: #fff; }
.energy-result-grid span { display: block; color: #687278; font-size: 12px; }
.energy-result-grid .featured span { color: #bfc7ca; }
.energy-result-grid strong { display: inline-block; margin-top: 12px; color: #171c1f; font-size: 28px; }
.energy-result-grid .featured strong { color: var(--yuli-coral, #f58a2a); }
.energy-result-grid b { margin-left: 5px; font-size: 11px; }
.energy-budget-calculator.is-negative .featured strong { color: #c95043; }
.energy-record-table { min-width: 900px; }
.energy-boundary-band { background: #f6f7f7; }
@media (max-width: 900px) { .energy-calculator-layout { grid-template-columns: 1fr; } .energy-scene-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .energy-result-grid { grid-template-columns: 1fr; } }
/* PCBA-to-thin-card redesign record */
.redesign-hero { padding-top: clamp(72px, 9vw, 128px); background: linear-gradient(180deg, #f3f5f6 0%, #fafbfb 72%, #fff 100%); }
.redesign-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(42px, 7vw, 100px); align-items: center; }
.redesign-hero h1 { font-size: clamp(42px, 5vw, 68px); }
.redesign-hero-visual { min-height: 430px; display: grid; place-items: center; }
.redesign-hero-visual img, .redesign-visual-detail img { width: 100%; height: auto; object-fit: contain; }
.redesign-evidence { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px, 7vw, 96px); align-items: center; }
.redesign-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.redesign-facts div { padding: 24px; border: 1px solid #dbe0e2; background: #f6f7f7; }
.redesign-facts strong, .redesign-facts span { display: block; }
.redesign-facts strong { color: var(--yuli-coral, #f58a2a); font-size: 24px; }
.redesign-facts span { margin-top: 8px; color: #657077; font-size: 12px; }
.redesign-steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.redesign-steps li { min-height: 250px; padding: 28px; border: 1px solid #dce1e3; background: #fff; }
.redesign-steps strong { color: var(--yuli-coral, #f58a2a); font-size: 13px; }
.redesign-steps h3 { margin: 40px 0 12px; font-size: 20px; }
.redesign-steps p { color: #606b71; font-size: 14px; line-height: 1.8; }
.redesign-before-after { background: #edf0f1; }
.redesign-table { min-width: 900px; }
.redesign-visual-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px, 7vw, 96px); align-items: center; }
.redesign-visual-detail figure { min-height: 390px; display: grid; place-items: center; }
@media (max-width: 900px) { .redesign-hero-grid, .redesign-evidence, .redesign-visual-detail { grid-template-columns: 1fr; } .redesign-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .redesign-hero h1 { font-size: 38px; } .redesign-facts, .redesign-steps { grid-template-columns: 1fr; } }
/* Local-only RFQ generator */
.rfq-generator-band { background: #edf0f1; }
.rfq-generator-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: start; }
.rfq-generator-form, .rfq-output-panel { padding: clamp(24px, 4vw, 40px); border: 1px solid #d7dddf; border-radius: 10px; background: #fff; }
.rfq-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rfq-generator-form label { display: grid; gap: 8px; color: #3d464b; font-size: 13px; font-weight: 700; }
.rfq-generator-form input[type="text"], .rfq-generator-form input[type="email"], .rfq-generator-form input[type="tel"], .rfq-generator-form select, .rfq-generator-form textarea { width: 100%; min-height: 46px; padding: 12px 13px; border: 1px solid #cbd2d5; border-radius: 7px; background: #fff; color: #171c1f; font: inherit; }
.rfq-generator-form input:focus, .rfq-generator-form select:focus, .rfq-generator-form textarea:focus { outline: 2px solid rgba(55,199,230,.22); border-color: var(--yuli-cyan, #37c7e6); }
.rfq-generator-form fieldset { margin: 26px 0; padding: 0; border: 0; }
.rfq-generator-form legend { margin-bottom: 12px; color: #3d464b; font-size: 13px; font-weight: 700; }
.rfq-form-divider { display: flex; align-items: center; gap: 12px; margin: 28px 0 18px; color: #171c1f; font-size: 13px; font-weight: 750; }
.rfq-form-divider::after { height: 1px; flex: 1; background: #d8dddf; content: ""; }
.rfq-check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.rfq-check-grid label { display: flex; align-items: center; gap: 8px; min-height: 40px; padding: 9px 10px; border: 1px solid #d8dddf; background: #f7f8f8; font-weight: 600; }
.rfq-check-grid input { accent-color: var(--yuli-coral, #f58a2a); }
.rfq-wide-field + .rfq-wide-field { margin-top: 18px; }
.rfq-output-panel { position: sticky; top: 92px; background: #15191c; color: #fff; }
.rfq-output-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.rfq-output-head span, .rfq-output-head strong { display: block; }
.rfq-output-head span { color: #aeb8bc; font-size: 12px; }
.rfq-output-head strong { margin-top: 5px; font-size: 20px; }
.rfq-output-panel pre { min-height: 410px; margin: 26px 0 18px; padding: 24px 0; border-top: 1px solid #343b3e; border-bottom: 1px solid #343b3e; color: #e5e9ea; white-space: pre-wrap; overflow-wrap: anywhere; font: 13px/1.85 ui-monospace, SFMono-Regular, Menlo, monospace; }
.rfq-output-panel small { color: #9da8ac; line-height: 1.65; }
.rfq-output-panel .btn { color: #fff; border-color: #4d565a; background: transparent; }
.rfq-output-panel .btn[data-copied="true"] { border-color: var(--yuli-cyan, #37c7e6); color: var(--yuli-cyan, #37c7e6); }
.rfq-submit-row { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.rfq-submit-row > span { max-width: 390px; color: #697479; font-size: 12px; line-height: 1.55; }
@media (max-width: 1000px) { .rfq-generator-layout { grid-template-columns: 1fr; } .rfq-output-panel { position: static; } }
@media (max-width: 620px) { .rfq-form-grid, .contact-form .form-grid { grid-template-columns: 1fr; } .contact-form label.full { grid-column: auto; } .rfq-check-grid { grid-template-columns: 1fr 1fr; } .rfq-output-head, .rfq-submit-row { align-items: flex-start; flex-direction: column; } }

@media (max-width: 860px) {
	.cold-products.product-link-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.cold-product-card.product-link { grid-template-columns: 1fr; }
	.cold-product-card.product-link img { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
	.btn,
	a.card,
	a.article-blueprint,
	a.format-card,
	a.rfq-step,
	a.resource-cluster-card,
	a.cold-product-card,
	a.ecosystem-path-card,
	a.assessment-tile,
	a.scenario-card,
	a.product-family-card,
	a.industry-card,
	a.contact-info-card { transition: none; }
	.btn:hover,
	a.card:hover,
	a.article-blueprint:hover,
	a.format-card:hover,
	a.rfq-step:hover,
	a.resource-cluster-card:hover,
	a.cold-product-card:hover,
	a.ecosystem-path-card:hover,
	a.assessment-tile:hover,
	a.scenario-card:hover,
	a.product-family-card:hover,
	a.industry-card:hover,
	a.contact-info-card:hover { transform: none; }
}
.evidence-recorder-band { background: #f1f3f4; }
.evidence-recorder { padding: clamp(22px, 3vw, 36px); border: 1px solid rgba(15, 20, 24, .11); background: #fff; box-shadow: 0 18px 44px rgba(15, 20, 24, .06); }
.evidence-meta-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.evidence-recorder label { display: grid; gap: 8px; color: #30383d; font-size: 14px; }
.evidence-recorder input, .evidence-recorder select, .evidence-recorder textarea { width: 100%; min-height: 44px; border: 1px solid #c9ced1; border-radius: 4px; background: #fbfcfc; color: #111619; padding: 10px 12px; font: inherit; }
.evidence-recorder input:focus, .evidence-recorder select:focus, .evidence-recorder textarea:focus { border-color: #37c7e6; outline: 3px solid rgba(55, 199, 230, .16); }
.evidence-entry-table input, .evidence-entry-table select { min-width: 112px; }
.evidence-entry-table td[data-delta], .evidence-entry-table td[data-net] { color: #177a45; font-weight: 700; font-variant-numeric: tabular-nums; }
.evidence-entry-table td.is-negative { color: #b94c2d; }
.evidence-notes { margin-top: 20px; }
.evidence-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.evidence-output { margin-top: 20px; padding: 18px; border-left: 3px solid #f58a2a; background: #171b1e; color: #f7f8f8; }
.evidence-output[hidden] { display: none; }
.evidence-output pre { margin: 10px 0 0; white-space: pre-wrap; overflow-wrap: anywhere; color: #dfe4e6; font: 13px/1.65 ui-monospace, SFMono-Regular, Menlo, monospace; }
@media (max-width: 820px) { .evidence-meta-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .evidence-meta-grid { grid-template-columns: 1fr; } .evidence-recorder { padding: 18px 14px; } }
/* Production floor and manufacturing evidence */
.factory-hero-visual img { object-fit: cover; object-position: center; }
.factory-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
.factory-gallery figure { margin: 0; min-width: 0; background: #f1f3f4; border: 1px solid rgba(15, 20, 24, .1); overflow: hidden; }
.factory-gallery img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.factory-gallery figcaption { display: grid; gap: 6px; padding: 18px 20px 20px; color: #495157; }
.factory-gallery figcaption strong { color: #111619; font-size: 18px; }
.factory-process-band { background: #eef1f2; }
.factory-proof-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.factory-standard { padding: clamp(26px, 4vw, 44px); border-left: 3px solid #f58a2a; background: #15191c; color: #dce1e3; box-shadow: 0 24px 60px rgba(15, 20, 24, .14); }
.factory-standard h3 { color: #fff; font-size: clamp(24px, 3vw, 36px); }
.factory-standard .kicker { color: #f6a24f; }
.oem-customization { background: #eef1f2; }
.flexible-battery-terms { background: #eef1f2; }
@media (max-width: 900px) {
  .factory-proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .factory-gallery { grid-template-columns: 1fr; }
  .factory-gallery figcaption { padding: 16px; }
}

/* Editorial news and insights */
.news-archive-hero {
  padding: clamp(66px, 7vw, 92px) 0 clamp(42px, 5vw, 58px);
  border-bottom: 1px solid rgba(17, 24, 32, .12);
  background: #f4f6f5;
}
.news-archive-hero h1 { max-width: 760px; font-size: clamp(38px, 4.4vw, 54px); line-height: 1.08; }
.news-archive-hero .lede { max-width: 780px; margin-top: 18px; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); }
.news-topic-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: #69747b; font-size: 13px; }
.news-topic-legend span { display: inline-flex; align-items: center; gap: 8px; }
.news-topic-legend span::before { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); content: ""; }
.news-list-band { padding: clamp(48px, 6vw, 76px) 0 clamp(70px, 8vw, 104px); }
.news-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 42px) 24px; }
.news-archive-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.news-archive-media { display: block; overflow: hidden; border-radius: 6px; background: #e7ebe9; }
.news-archive-media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover !important; transition: transform .35s ease; }
.news-archive-card:hover .news-archive-media img { transform: scale(1.02); }
.news-archive-copy { display: flex; flex: 1; flex-direction: column; padding-top: 20px; }
.news-meta { display: flex; align-items: center; gap: 14px; color: #7e8992; font-size: 12px; }
.news-meta span { color: var(--coral); font-weight: 750; }
.news-meta .news-publisher { color: #7e8992; font-weight: 500; }
.news-archive-copy h2 { margin: 11px 0 0; font-size: clamp(22px, 2vw, 28px); line-height: 1.38; }
.news-archive-copy h2 a { color: var(--ink); text-decoration: none; }
.news-archive-copy p { display: -webkit-box; margin-top: 12px; overflow: hidden; color: var(--muted); -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.news-read-link { display: inline-flex; gap: 8px; align-items: center; width: fit-content; margin-top: auto; padding-top: 18px; color: var(--ink); font-size: 14px; font-weight: 700; text-decoration: none; }
.navigation.pagination { margin-top: 50px; }
.nav-links .page-numbers { display: inline-flex; min-width: 40px; min-height: 40px; align-items: center; justify-content: center; margin-right: 6px; border: 1px solid var(--line); border-radius: 5px; background: #fff; text-decoration: none; }
.nav-links .page-numbers.current { border-color: var(--ink); background: var(--ink); color: #fff; }
.news-single-header { padding: clamp(62px, 7vw, 90px) 0 clamp(42px, 5vw, 62px); background: #f4f6f5; }
.news-single-header-inner { max-width: 920px; margin-inline: auto; text-align: center; }
.news-single-header h1 { max-width: 900px; margin-inline: auto; font-size: clamp(36px, 4.5vw, 54px); line-height: 1.14; }
.news-single-header .lede { max-width: 780px; margin: 20px auto 0; color: #59646a; font-size: clamp(16px, 1.4vw, 19px); }
.news-single-header .news-meta { margin-bottom: 18px; }
.news-single-header .news-meta { justify-content: center; }
.news-back { display: inline-flex; margin-bottom: 26px; color: var(--muted); font-size: 14px; text-decoration: none; }
.news-single-visual { max-width: 1040px; margin-top: 34px; }
.news-single-visual img { display: block; width: 100%; max-height: 520px; aspect-ratio: 16 / 9; border-radius: 6px; object-fit: cover !important; background: #e9edec; }
.news-single-layout { padding-top: clamp(50px, 6vw, 78px); padding-bottom: clamp(78px, 9vw, 120px); }
.news-single-content { max-width: 780px; margin-inline: auto; color: #30383d; font-size: 17px; line-height: 1.9; }
.news-single-content .news-intro { color: #20282d; font-size: clamp(19px, 1.8vw, 22px); line-height: 1.75; }
.news-single-content h2 { margin: 52px 0 18px; font-size: clamp(27px, 2.6vw, 36px); line-height: 1.28; }
.news-single-content h2:first-child { margin-top: 0; }
.news-single-content h3 { margin: 34px 0 12px; font-size: 22px; line-height: 1.4; }
.news-single-content p { margin: 0 0 24px; }
.news-single-content a { color: #087e98; }
.news-inline-figure { margin: 38px 0; }
.news-inline-figure img { display: block; width: 100%; max-height: 440px; aspect-ratio: 16 / 9; border-radius: 6px; object-fit: cover; background: #edf0ef; }
.news-inline-figure figcaption { margin-top: 10px; color: #778188; font-size: 13px; line-height: 1.55; }
.news-callout { margin: 36px 0; padding: 24px 26px; border-left: 3px solid var(--coral); background: #f2f4f3; }
.news-callout strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 17px; }
.news-callout p:last-child { margin-bottom: 0; }
.news-table-wrap { margin: 34px 0; overflow-x: auto; }
.news-table-wrap table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.65; }
.news-table-wrap th, .news-table-wrap td { padding: 14px 16px; border-bottom: 1px solid #d5dadb; text-align: left; vertical-align: top; }
.news-table-wrap th { background: #eef1f0; color: var(--ink); font-weight: 750; }
.news-table-wrap td:first-child { width: 26%; color: var(--ink); font-weight: 700; }
.news-related { padding: clamp(64px, 8vw, 104px) 0; background: #e9edec; }
.news-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.news-related-item { display: grid; gap: 16px; color: var(--ink); font-size: 18px; font-weight: 700; line-height: 1.45; text-decoration: none; }
.news-related-item img { width: 100%; aspect-ratio: 16 / 10; border-radius: 6px; object-fit: cover !important; background: #dde3e2; }
@media (max-width: 900px) {
  .news-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .news-archive-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-archive-hero, .news-single-header { padding-top: 70px; }
  .news-single-header-inner { text-align: left; }
  .news-single-header .news-meta { justify-content: flex-start; }
  .news-single-visual { margin-top: 20px; }
}
@media (max-width: 620px) {
  .news-related-grid { grid-template-columns: 1fr; }
  .news-single-visual img, .news-inline-figure img { aspect-ratio: 4 / 3; }
  .news-table-wrap { margin-inline: -18px; }
}


.admin-bar .topbar{top:32px}.brand .custom-logo-link{display:block}.brand .custom-logo{width:104px;height:auto}.wp-block-html{margin:0}
