/*
Theme Name: PLASMAT Precision
Theme URI: https://plasmat.com.tw/
Author: PLASMAT Technologies
Description: High-performance custom corporate theme for PLASMAT Technologies.
Version: 1.10.31
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: plasmat
*/

:root {
  --pm-navy-950: #06131d;
  --pm-navy-900: #0a1e2b;
  --pm-navy-800: #123344;
  --pm-teal-700: #087c78;
  --pm-teal-600: #079b91;
  --pm-cyan-500: #19b7cf;
  --pm-logo-blue: #00aeef;
  --pm-lime-500: #83c928;
  --pm-lime-400: #9bdd38;
  --pm-ink: #17242c;
  --pm-muted: #66747c;
  --pm-line: #dce5e8;
  --pm-soft: #f3f7f6;
  --pm-white: #fff;
  --pm-radius: 6px;
  --pm-shadow: 0 24px 60px rgba(5, 27, 38, .14);
  --pm-container: 1200px;
  --pm-header: 88px;
  --pm-type-page-h1: clamp(2.8rem, 5vw, 5rem);
  --pm-type-article-h1: clamp(2.25rem, 4vw, 4.15rem);
  --pm-type-section-h2: clamp(2rem, 3.2vw, 3.25rem);
  --pm-type-component-h3: clamp(1.15rem, 1.35vw, 1.35rem);
  --pm-type-body: 1rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--pm-ink);
  background: var(--pm-white);
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  z-index: 10000;
}

.pm-container { width: min(calc(100% - 48px), var(--pm-container)); margin-inline: auto; }
.pm-section { position: relative; padding: 112px 0; overflow: hidden; }
.pm-section--soft { background: var(--pm-soft); }
.pm-section--dark { color: #fff; background: var(--pm-navy-950); }
.pm-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--pm-teal-600);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.pm-section-label::before { content: ""; width: 28px; height: 3px; background: var(--pm-lime-500); }
.pm-section--dark .pm-section-label { color: var(--pm-lime-400); }
.pm-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 760;
}
.pm-title--medium { font-size: clamp(2rem, 3.4vw, 3.55rem); }
.pm-lead { max-width: 720px; margin: 22px 0 0; color: var(--pm-muted); font-size: clamp(1rem, 1.35vw, 1.18rem); }
.pm-section--dark .pm-lead { color: rgba(255,255,255,.68); }
.pm-ghost-word {
  position: absolute;
  top: 40px;
  right: 3vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15, 67, 76, .11);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
  pointer-events: none;
  user-select: none;
}
.pm-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: linear-gradient(100deg, var(--pm-teal-600), var(--pm-teal-700));
  font-weight: 760;
  letter-spacing: .025em;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.pm-button::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.pm-button::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 13px;
  background: var(--pm-lime-500);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 58% 0);
}
.pm-button:hover, .pm-button:focus-visible { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(4,154,145,.28); }
.pm-button--ghost { border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.04); }
.pm-button--ghost::before { display: none; }
.pm-button--light { color: var(--pm-navy-950); background: #fff; }
.pm-button--light::before { background: var(--pm-lime-500); }

/* Header */
.pm-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--pm-header);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(7,40,52,.08);
  backdrop-filter: blur(16px);
}
.admin-bar .pm-site-header { top: 32px; }
.pm-header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.pm-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.pm-brand img { width: 118px; height: auto; }
.pm-nav { margin-left: auto; }
.pm-nav ul { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.pm-nav a { position: relative; display: block; padding: 31px 0 27px; color: #26363f; font-size: .94rem; font-weight: 720; }
.pm-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--pm-teal-600); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.pm-nav a:hover::after, .pm-nav a:focus-visible::after { transform: scaleX(1); }
.pm-nav .menu-item-has-children { position: relative; }
.pm-nav .sub-menu { position: absolute; top: calc(100% - 12px); left: -24px; display: none; min-width: 180px; padding: 12px 0; background: #fff; border: 1px solid var(--pm-line); box-shadow: var(--pm-shadow); }
.pm-nav .menu-item-has-children:hover > .sub-menu, .pm-nav .menu-item-has-children:focus-within > .sub-menu { display: block; }
.pm-nav .sub-menu li { width: 100%; }
.pm-nav .sub-menu a { padding: 10px 24px; white-space: nowrap; }
.pm-nav .sub-menu a::after { display: none; }
.pm-header-cta { min-height: 46px; padding: 0 26px; font-size: .88rem; }
.pm-header-market-spacer { flex: 0 0 62px; width: 62px; height: 1px; }
.pm-menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; background: transparent; }
.pm-menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px auto; background: var(--pm-navy-900); transition: transform .25s ease, opacity .25s ease; }

/* Hero */
.pm-hero {
  position: relative;
  min-height: calc(100svh - var(--pm-header));
  display: grid;
  align-items: center;
  color: #fff;
  background: #06131d url("assets/images/hero-precision-components.webp") center right / cover no-repeat;
  isolation: isolate;
}
.pm-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3,14,22,.98) 0%, rgba(4,19,29,.91) 40%, rgba(5,27,39,.26) 75%, rgba(5,27,39,.08) 100%); }
.pm-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, var(--pm-cyan-500), var(--pm-lime-500), transparent 75%); }
.pm-hero-inner { padding: 100px 0 90px; }
.pm-hero-content { max-width: 760px; }
.pm-hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; color: var(--pm-lime-400); font-size: .78rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.pm-hero-kicker::before { content: "01"; color: #fff; font-size: .72rem; }
.pm-hero-kicker::after { content: ""; width: 82px; height: 1px; background: rgba(255,255,255,.35); }
.pm-hero h1 { margin: 0; max-width: 760px; font-size: clamp(2.7rem, 5.35vw, 5.45rem); line-height: 1.07; letter-spacing: -.052em; font-weight: 780; text-shadow: 0 3px 24px rgba(0,0,0,.18); }
.pm-hero h1 span { display: block; color: #fff; }
.pm-hero-text { max-width: 690px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.5vw, 1.24rem); }
.pm-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.pm-hero-facts { display: flex; flex-wrap: wrap; gap: 0; margin-top: 70px; border-top: 1px solid rgba(255,255,255,.19); max-width: 760px; }
.pm-hero-fact { min-width: 180px; padding: 22px 34px 0 0; margin-right: 34px; }
.pm-hero-fact + .pm-hero-fact { border-left: 1px solid rgba(255,255,255,.18); padding-left: 34px; }
.pm-hero-fact strong { display: block; color: #fff; font-size: 1.45rem; line-height: 1.2; }
.pm-hero-fact span { color: rgba(255,255,255,.58); font-size: .8rem; letter-spacing: .04em; }
.pm-scroll-cue { position: absolute; right: 42px; bottom: 42px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.58); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.pm-scroll-cue::after { content: ""; width: 1px; height: 52px; background: linear-gradient(var(--pm-lime-500), transparent); }

/* Pain points */
.pm-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1px solid var(--pm-line); border-bottom: 1px solid var(--pm-line); }
.pm-pain-card { position: relative; min-height: 330px; padding: 46px 38px 42px; border-right: 1px solid var(--pm-line); background: #fff; transition: background .3s ease, transform .3s ease; }
.pm-pain-card:first-child { border-left: 1px solid var(--pm-line); }
.pm-pain-card:hover { z-index: 2; background: var(--pm-navy-900); color: #fff; transform: translateY(-8px); box-shadow: var(--pm-shadow); }
.pm-card-index { color: var(--pm-teal-600); font-weight: 850; letter-spacing: .12em; }
.pm-pain-card:hover .pm-card-index { color: var(--pm-lime-400); }
.pm-pain-card h3 { margin: 56px 0 16px; font-size: 1.55rem; line-height: 1.3; }
.pm-pain-card p { margin: 0; color: var(--pm-muted); }
.pm-pain-card:hover p { color: rgba(255,255,255,.68); }
.pm-pain-card .pm-card-mark { position: absolute; right: 28px; bottom: 22px; color: rgba(9,141,132,.10); font-size: 6.5rem; font-weight: 900; line-height: 1; }

/* Approach */
.pm-approach-head { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.pm-approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 60px; }
.pm-approach-card { position: relative; min-height: 360px; padding: 42px; color: #fff; background: linear-gradient(135deg, #123344, #071a26); overflow: hidden; }
.pm-approach-card:nth-child(2) { background: linear-gradient(135deg, #0a6f70, #07343c); }
.pm-approach-card:nth-child(3) { color: var(--pm-ink); background: #fff; border: 1px solid var(--pm-line); }
.pm-approach-card:nth-child(4) { background: linear-gradient(135deg, #143129, #0a211d); }
.pm-approach-card::after { content: attr(data-word); position: absolute; right: -8px; bottom: -28px; color: rgba(255,255,255,.06); font-size: 7.5rem; font-weight: 900; letter-spacing: -.08em; }
.pm-approach-card:nth-child(3)::after { color: rgba(7,102,101,.06); }
.pm-approach-card h3 { position: relative; z-index: 1; max-width: 430px; margin: 92px 0 14px; font-size: clamp(1.45rem, 2.2vw, 2.05rem); line-height: 1.25; }
.pm-approach-card p { position: relative; z-index: 1; max-width: 500px; margin: 0; color: rgba(255,255,255,.65); }
.pm-approach-card:nth-child(3) p { color: var(--pm-muted); }
.pm-approach-icon { position: absolute; top: 34px; right: 34px; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.pm-approach-card:nth-child(3) .pm-approach-icon { border-color: var(--pm-line); }
.pm-approach-icon::before, .pm-approach-icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--pm-lime-500); transform: translate(-50%,-50%); }
.pm-approach-icon::before { width: 24px; height: 2px; }
.pm-approach-icon::after { width: 2px; height: 24px; }

/* Metrics */
.pm-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 66px; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.pm-metric { min-height: 230px; padding: 42px 28px; border-right: 1px solid rgba(255,255,255,.17); }
.pm-metric:first-child { border-left: 1px solid rgba(255,255,255,.17); }
.pm-metric strong { display: block; color: var(--pm-lime-400); font-size: clamp(2.65rem, 5vw, 5rem); line-height: 1; letter-spacing: -.06em; }
.pm-metric span { display: block; margin-top: 20px; color: rgba(255,255,255,.8); font-weight: 700; }
.pm-metric small { display: block; margin-top: 8px; color: rgba(255,255,255,.42); }

/* Fabless split */
.pm-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.pm-split-media { position: relative; min-height: 520px; background: #d8e2e3 url("assets/images/factory-rubber-molding-hd.jpg") center / cover no-repeat; }
.pm-split-media::after { content: "合作製造夥伴"; position: absolute; left: 28px; bottom: 28px; padding: 9px 16px; color: #fff; background: rgba(5,24,34,.78); font-size: .78rem; letter-spacing: .08em; }
.pm-split-content { display: flex; align-items: center; padding: 80px clamp(36px, 7vw, 110px); background: var(--pm-soft); }
.pm-split-content-inner { max-width: 600px; }
.pm-check-list { display: grid; gap: 18px; margin: 34px 0 0; padding: 0; list-style: none; }
.pm-check-list li { position: relative; padding: 0 0 18px 36px; border-bottom: 1px solid var(--pm-line); }
.pm-check-list li::before { content: ""; position: absolute; top: 8px; left: 0; width: 15px; height: 8px; border-left: 2px solid var(--pm-teal-600); border-bottom: 2px solid var(--pm-teal-600); transform: rotate(-45deg); }

/* Case */
.pm-case-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; margin-top: 58px; }
.pm-case-summary { position: relative; padding: 48px; color: #fff; background: linear-gradient(145deg, var(--pm-teal-700), var(--pm-navy-900)); }
.pm-case-summary::before { content: "CASE 01"; color: var(--pm-lime-400); font-size: .78rem; font-weight: 800; letter-spacing: .16em; }
.pm-case-summary h3 { margin: 70px 0 16px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.2; }
.pm-case-summary p { color: rgba(255,255,255,.68); }
.pm-case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.pm-case-tags span { padding: 6px 12px; border: 1px solid rgba(255,255,255,.24); font-size: .76rem; }
.pm-case-detail { display: grid; align-content: center; gap: 0; }
.pm-case-row { display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 25px 0; border-bottom: 1px solid var(--pm-line); }
.pm-case-row strong { color: var(--pm-teal-700); }
.pm-case-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; background: var(--pm-line); border: 1px solid var(--pm-line); }
.pm-case-result { padding: 22px; background: #fff; }
.pm-case-result b { display: block; color: var(--pm-teal-700); font-size: 1.75rem; }
.pm-case-result span { color: var(--pm-muted); font-size: .82rem; }
.pm-confidential-note { margin-top: 24px; color: var(--pm-muted); font-size: .82rem; }

/* Materials */
.pm-material-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 54px; }
.pm-material-card { position: relative; min-height: 270px; padding: 30px; border: 1px solid var(--pm-line); background: #fff; overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.pm-material-card:hover { transform: translateY(-5px); border-color: var(--pm-teal-600); box-shadow: 0 18px 40px rgba(12,57,66,.10); }
.pm-material-card .abbr { color: rgba(5,108,103,.12); font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.pm-material-card h3 { margin: 50px 0 8px; font-size: 1.2rem; }
.pm-material-card p { margin: 0; color: var(--pm-muted); font-size: .9rem; }

/* Process */
.pm-process { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 68px; }
.pm-process::before { content: ""; position: absolute; top: 28px; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, var(--pm-lime-500), var(--pm-cyan-500)); }
.pm-process-step { position: relative; padding: 70px 24px 0 0; }
.pm-process-step::before { content: ""; position: absolute; top: 20px; left: 0; width: 17px; height: 17px; border: 5px solid var(--pm-navy-950); border-radius: 50%; background: var(--pm-lime-500); box-shadow: 0 0 0 1px var(--pm-lime-500); }
.pm-process-step b { color: var(--pm-lime-400); font-size: .78rem; letter-spacing: .12em; }
.pm-process-step h3 { margin: 12px 0 8px; font-size: 1.05rem; }
.pm-process-step p { margin: 0; color: rgba(255,255,255,.52); font-size: .87rem; }

/* Insights */
.pm-insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.pm-insight-card { position: relative; min-height: 350px; padding: 34px; border: 1px solid var(--pm-line); background: linear-gradient(165deg, #fff 65%, #edf5f2); }
.pm-insight-card .category { color: var(--pm-teal-600); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.pm-insight-card h3 { margin: 100px 0 14px; font-size: 1.5rem; line-height: 1.35; }
.pm-insight-card p { color: var(--pm-muted); }
.pm-insight-card .arrow { position: absolute; right: 28px; bottom: 26px; color: var(--pm-teal-700); font-size: 1.6rem; }

/* Technical knowledge center */
.pm-insight-intro { padding: 88px 0 70px; background: #fff; }
.pm-knowledge-listing { padding-top: 0; }
.pm-knowledge-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 72px; border-bottom: 1px solid var(--pm-line); }
.pm-knowledge-tabs a { position: relative; min-width: 150px; padding: 28px 24px 24px; color: var(--pm-muted); font-size: .92rem; font-weight: 750; text-align: center; }
.pm-knowledge-tabs a + a::before { content: ""; position: absolute; top: 31px; left: 0; width: 1px; height: 18px; background: var(--pm-line); }
.pm-knowledge-tabs a::after { content: ""; position: absolute; right: 22px; bottom: -1px; left: 22px; height: 3px; background: var(--pm-teal-600); transform: scaleX(0); transition: transform .25s ease; }
.pm-knowledge-tabs a:hover, .pm-knowledge-tabs a.is-active { color: var(--pm-teal-700); }
.pm-knowledge-tabs a:hover::after, .pm-knowledge-tabs a.is-active::after { transform: scaleX(1); }
.pm-knowledge-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.pm-knowledge-heading h2 { margin: 0; font-size: clamp(2rem, 3.2vw, 3.35rem); line-height: 1.12; letter-spacing: -.04em; }
.pm-knowledge-heading > p { max-width: 600px; margin: 0; color: var(--pm-muted); }
.pm-knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px; margin-top: 52px; }
.pm-knowledge-card { display: flex; flex-direction: column; min-width: 0; background: #fff; box-shadow: 0 14px 38px rgba(5,27,38,.10); transition: transform .28s ease, box-shadow .28s ease; }
.pm-knowledge-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(5,27,38,.16); }
.pm-knowledge-cover { display: block; aspect-ratio: 1.45 / 1; overflow: hidden; background: var(--pm-navy-900); }
.pm-knowledge-cover > img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.pm-knowledge-card:hover .pm-knowledge-cover > img { transform: scale(1.035); }
.pm-knowledge-placeholder { position: relative; display: block; width: 100%; height: 100%; background: radial-gradient(circle at 80% 18%, rgba(25,183,207,.27), transparent 28%), linear-gradient(135deg, #071824, #0a4b56); overflow: hidden; }
.pm-knowledge-placeholder::before { content: "PLASMAT"; position: absolute; left: 26px; bottom: 20px; color: rgba(255,255,255,.16); font-size: clamp(2rem, 4vw, 4.6rem); font-weight: 900; line-height: 1; letter-spacing: -.07em; }
.pm-knowledge-placeholder b { position: absolute; top: 28px; left: 28px; z-index: 2; color: var(--pm-lime-400); font-size: 1rem; letter-spacing: .2em; }
.pm-knowledge-placeholder i { position: absolute; width: 140px; height: 140px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.pm-knowledge-placeholder i:nth-of-type(1) { top: 38px; right: 46px; }
.pm-knowledge-placeholder i:nth-of-type(2) { top: 88px; right: -12px; }
.pm-knowledge-placeholder i:nth-of-type(3) { top: -28px; right: 2px; border-color: rgba(131,201,40,.30); }
.pm-knowledge-card-body { display: flex; flex: 1; flex-direction: column; padding: 28px 28px 24px; }
.pm-knowledge-category { color: var(--pm-teal-600); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pm-knowledge-card h3 { margin: 16px 0 13px; font-size: 1.28rem; line-height: 1.45; }
.pm-knowledge-card p { margin: 0 0 30px; color: var(--pm-muted); font-size: .9rem; }
.pm-knowledge-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--pm-line); color: var(--pm-muted); font-size: .75rem; }
.pm-knowledge-meta b { color: var(--pm-ink); font-weight: 650; }
.pm-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 58px; }
.pm-pagination .page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--pm-line); background: #fff; color: var(--pm-muted); }
.pm-pagination .page-numbers.current, .pm-pagination .page-numbers:hover { color: #fff; background: var(--pm-teal-700); border-color: var(--pm-teal-700); }
.pm-empty-state { margin-top: 50px; padding: 56px; text-align: center; background: #fff; border: 1px solid var(--pm-line); }
.pm-empty-state h3 { margin: 0; font-size: 1.6rem; }
.pm-empty-state p { margin: 12px auto 28px; color: var(--pm-muted); }

/* Technical article */
.pm-insight-banner { position: relative; min-height: 610px; display: flex; align-items: flex-end; color: #fff; background: radial-gradient(circle at 78% 22%, rgba(25,183,207,.25), transparent 30%), linear-gradient(120deg, #06131d 0%, #0b3441 72%, #087c78 150%); overflow: hidden; }
.pm-insight-banner::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--pm-lime-500), var(--pm-cyan-500), transparent 75%); }
.pm-insight-banner .pm-container { position: relative; z-index: 2; padding-block: 74px 88px; }
.pm-breadcrumb--article { margin-bottom: 74px; }
.pm-breadcrumb--article a, .pm-breadcrumb--article span { color: rgba(255,255,255,.54); }
.pm-insight-title-grid { display: grid; grid-template-columns: 112px 1fr; gap: 46px; align-items: start; }
.pm-insight-date { display: grid; grid-template-columns: auto auto auto; column-gap: 6px; align-items: baseline; padding-right: 26px; border-right: 1px solid rgba(255,255,255,.20); font-variant-numeric: tabular-nums; }
.pm-insight-date b { font-size: 2.45rem; line-height: 1; }
.pm-insight-date em { color: rgba(255,255,255,.36); font-size: 1.45rem; font-style: normal; line-height: 1; }
.pm-insight-date span { grid-column: 1 / -1; margin-top: 12px; color: var(--pm-lime-400); font-size: .8rem; font-weight: 800; letter-spacing: .16em; }
.pm-insight-topic { display: inline-block; margin-bottom: 18px; padding: 8px 14px; color: var(--pm-lime-400); border: 1px solid rgba(155,221,56,.46); font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
.pm-insight-title-grid h1 { max-width: 1020px; margin: 0; font-size: clamp(2.6rem, 5vw, 5.25rem); line-height: 1.12; letter-spacing: -.05em; }
.pm-insight-byline { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 28px; color: rgba(255,255,255,.58); font-size: .8rem; }
.pm-article-stage { padding: 0 0 112px; background: #fff; }
.pm-article-feature { position: relative; z-index: 4; width: min(100%, 1400px); margin: -1px auto 0; aspect-ratio: 2.25 / 1; overflow: hidden; background: var(--pm-navy-900); box-shadow: var(--pm-shadow); }
.pm-article-feature > img { width: 100%; height: 100%; object-fit: cover; }
.pm-article-placeholder { position: relative; display: flex; flex-direction: column; justify-content: flex-end; width: 100%; height: 100%; padding: 68px; background: radial-gradient(circle at 78% 36%, rgba(25,183,207,.30), transparent 26%), linear-gradient(130deg, #06131d, #0c3f4c); overflow: hidden; }
.pm-article-placeholder small { position: relative; z-index: 2; color: var(--pm-lime-400); font-size: .82rem; font-weight: 800; letter-spacing: .16em; }
.pm-article-placeholder b { position: relative; z-index: 2; max-width: 780px; margin-top: 14px; color: #fff; font-size: clamp(2.1rem, 4.4vw, 4.8rem); line-height: 1.05; letter-spacing: -.055em; }
.pm-article-placeholder i { position: absolute; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.pm-article-placeholder i:nth-of-type(1) { top: 70px; right: 190px; }
.pm-article-placeholder i:nth-of-type(2) { top: -52px; right: 50px; border-color: rgba(131,201,40,.28); }
.pm-article-placeholder i:nth-of-type(3) { right: -80px; bottom: -120px; }
.pm-article-layout { display: grid; grid-template-columns: 190px minmax(0, 860px); justify-content: center; gap: 72px; margin-top: 82px; }
.pm-article-side { position: sticky; top: 128px; align-self: start; display: grid; gap: 14px; padding-top: 20px; border-top: 3px solid var(--pm-lime-500); }
.pm-article-side > span { color: var(--pm-teal-600); font-size: .7rem; font-weight: 850; letter-spacing: .16em; }
.pm-article-side a { padding: 12px 0; border-bottom: 1px solid var(--pm-line); color: var(--pm-muted); font-size: .82rem; }
.pm-article-side a:hover { color: var(--pm-teal-700); }
.pm-article-deck { margin: 0 0 46px; color: var(--pm-ink); font-size: clamp(1.2rem, 1.8vw, 1.52rem); font-weight: 650; line-height: 1.72; }
.pm-article-keypoints { margin-bottom: 56px; padding: 34px 38px; background: var(--pm-soft); border-left: 4px solid var(--pm-lime-500); }
.pm-article-keypoints > span { color: var(--pm-teal-600); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.pm-article-keypoints h2 { margin: 9px 0 20px; font-size: 1.4rem; }
.pm-article-keypoints ul { margin: 0; padding-left: 1.2em; }
.pm-article-keypoints li { margin: 8px 0; color: var(--pm-muted); }
.pm-article-prose { color: #34444d; font-size: 1.04rem; line-height: 1.95; }
.pm-article-prose > :first-child { margin-top: 0; }
.pm-article-prose p { margin: 0 0 27px; }
.pm-article-prose h2 { margin: 64px 0 22px; padding-bottom: 14px; color: var(--pm-ink); border-bottom: 1px solid var(--pm-line); font-size: clamp(1.65rem, 2.4vw, 2.3rem); line-height: 1.35; }
.pm-article-prose h2::before { content: ""; display: inline-block; width: 24px; height: 4px; margin: 0 12px 7px 0; background: var(--pm-lime-500); }
.pm-article-prose h3 { margin: 40px 0 14px; color: var(--pm-teal-700); font-size: 1.3rem; }
.pm-article-prose h4 { margin: 34px 0 12px; color: var(--pm-ink); font-size: 1.14rem; line-height: 1.55; }
.pm-article-prose h5 { margin: 28px 0 10px; color: #526269; font-size: 1rem; line-height: 1.6; letter-spacing: .02em; }
.pm-article-prose a { color: var(--pm-teal-700); font-weight: 750; text-decoration: underline; text-decoration-color: rgba(6,107,101,.38); text-decoration-thickness: 1px; text-underline-offset: 4px; transition: color .2s ease, text-decoration-color .2s ease; }
.pm-article-prose a:hover { color: var(--pm-ink); text-decoration-color: var(--pm-lime-500); }
.pm-article-prose a:focus-visible { outline: 2px solid var(--pm-lime-500); outline-offset: 3px; }
.pm-article-note { margin: 40px 0; padding: 26px 30px; color: #2f4248; background: #eef5f2; border-left: 4px solid var(--pm-teal-700); }
.pm-article-note strong { display: block; color: var(--pm-ink); font-size: 1.04rem; }
.pm-article-note p { margin: 8px 0 0; color: #526269; }
.pm-article-prose ul, .pm-article-prose ol { margin: 0 0 30px; padding-left: 1.4em; }
.pm-article-prose li { margin: 9px 0; padding-left: 5px; }
.pm-article-prose blockquote { margin: 42px 0; padding: 28px 34px; color: var(--pm-ink); background: var(--pm-soft); border-left: 4px solid var(--pm-teal-600); }
.pm-article-prose img { margin: 44px auto; }
.pm-article-prose table { width: 100%; margin: 42px 0; border-collapse: collapse; font-size: .92rem; }
.pm-article-prose th, .pm-article-prose td { padding: 16px; border: 1px solid var(--pm-line); text-align: left; }
.pm-article-prose th { color: #fff; background: var(--pm-navy-900); }
.pm-article-disclaimer { margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--pm-line); }
.pm-article-disclaimer b { color: var(--pm-teal-700); }
.pm-article-disclaimer p { margin: 8px 0 0; color: var(--pm-muted); font-size: .88rem; }
.pm-article-navigation { border-top: 1px solid var(--pm-line); border-bottom: 1px solid var(--pm-line); }
.pm-article-navigation > .pm-container { display: grid; grid-template-columns: 1fr 110px 1fr; align-items: stretch; min-height: 150px; }
.pm-article-navigation > .pm-container > div { display: flex; align-items: center; }
.pm-article-navigation > .pm-container > div:last-child { justify-content: flex-end; text-align: right; }
.pm-article-navigation > .pm-container > div a { display: grid; max-width: 390px; gap: 8px; }
.pm-article-navigation a > span { color: var(--pm-teal-600); font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.pm-article-navigation a > b { font-size: .93rem; line-height: 1.45; }
.pm-article-index { display: grid; grid-template-columns: repeat(2, 7px); place-content: center; gap: 5px; border-right: 1px solid var(--pm-line); border-left: 1px solid var(--pm-line); }
.pm-article-index i { width: 7px; height: 7px; background: var(--pm-teal-600); }
.pm-article-index span { grid-column: 1 / -1; margin-top: 5px; color: var(--pm-muted); font-size: .7rem; }
.pm-knowledge-grid--related { margin-top: 48px; }

/* Footer CTA and footer */
.pm-footer-cta { position: relative; padding: 76px 0; color: #fff; background: linear-gradient(100deg, #071b22, #123a40); }
.pm-footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.pm-footer-cta h2 { max-width: 760px; margin: 0; font-size: clamp(1.85rem, 3.2vw, 3.3rem); line-height: 1.18; letter-spacing: -.035em; }
.pm-site-footer { color: rgba(255,255,255,.62); background: #051018; }
.pm-footer-main { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 44px; padding: 70px 0 54px; }
.pm-footer-logo { width: 126px; padding: 10px; background: #fff; }
.pm-footer-about { margin: 22px 0 0; max-width: 330px; font-size: .9rem; }
.pm-footer-heading { margin: 0 0 20px; color: #fff; font-size: .88rem; letter-spacing: .11em; text-transform: uppercase; }
.pm-footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; font-size: .88rem; }
.pm-footer-links a:hover { color: var(--pm-lime-400); }
.pm-footer-heading--secondary { margin-top: 28px; }
.pm-footer-contact { font-style: normal; font-size: .88rem; }
.pm-footer-contact a { color: #fff; }
.pm-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.10); font-size: .76rem; }

/* Quick rail */
.pm-quick-rail { position: fixed; right: 0; top: 46%; z-index: 900; transform: translateY(-50%); }
.pm-quick-rail a { display: grid; place-items: center; width: 64px; min-height: 72px; padding: 8px; color: #fff; background: rgba(6,107,101,.94); border-bottom: 1px solid rgba(255,255,255,.2); font-size: .72rem; text-align: center; writing-mode: vertical-rl; letter-spacing: .08em; transition: width .25s ease, background .25s ease; }
.pm-quick-rail a:hover { width: 76px; background: var(--pm-navy-900); }

/* Corporate multi-page architecture */
.pm-section-heading-row { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 70px; }
.pm-section-heading-row > .pm-lead { margin: 0; }
.pm-text-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--pm-teal-700); font-weight: 800; }
.pm-text-link::after { content: "▸"; color: var(--pm-lime-500); font-size: 1.2rem; }
.pm-text-link--light { color: #fff; }

.pm-portal-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border: 1px solid var(--pm-line); }
.pm-portal-card { position: relative; min-height: 360px; padding: 34px; border-right: 1px solid var(--pm-line); background: #fff; overflow: hidden; transition: color .3s ease, background .3s ease, transform .3s ease; }
.pm-portal-card:last-child { border-right: 0; }
.pm-portal-card > span { color: var(--pm-teal-600); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pm-portal-card h3 { margin: 92px 0 14px; font-size: 1.65rem; }
.pm-portal-card p { color: var(--pm-muted); }
.pm-portal-card b { position: absolute; bottom: 30px; color: var(--pm-teal-700); font-size: .85rem; }
.pm-portal-card:hover { z-index: 2; color: #fff; background: var(--pm-navy-900); transform: translateY(-7px); box-shadow: var(--pm-shadow); }
.pm-portal-card:hover p { color: rgba(255,255,255,.66); }
.pm-portal-card:hover b, .pm-portal-card:hover > span { color: var(--pm-lime-400); }

.pm-featured-case { display: grid; grid-template-columns: 1.05fr .95fr; margin-top: 58px; }
.pm-featured-case .pm-case-summary { min-height: 430px; }
.pm-case-highlight { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 1px; padding: 46px; background: var(--pm-soft); }
.pm-case-highlight > div { padding: 28px; background: #fff; }
.pm-case-highlight strong { display: block; color: var(--pm-teal-700); font-size: clamp(2.3rem, 4vw, 4.8rem); line-height: 1; letter-spacing: -.06em; }
.pm-case-highlight span { color: var(--pm-muted); font-size: .86rem; }
.pm-case-highlight .pm-button { grid-column: 1 / -1; margin-top: 24px; justify-self: start; }
.pm-industry-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 54px; }
.pm-industry-strip a { min-height: 260px; padding: 34px; border: 1px solid var(--pm-line); border-right: 0; background: #fff; transition: transform .25s ease, color .25s ease, background .25s ease; }
.pm-industry-strip a:last-child { border-right: 1px solid var(--pm-line); }
.pm-industry-strip span { color: var(--pm-teal-600); font-weight: 850; }
.pm-industry-strip h3 { margin: 70px 0 8px; font-size: 1.35rem; }
.pm-industry-strip p { color: var(--pm-muted); font-size: .9rem; }
.pm-industry-strip a:hover { z-index: 2; color: #fff; background: var(--pm-teal-700); transform: translateY(-6px); }
.pm-industry-strip a:hover p, .pm-industry-strip a:hover span { color: rgba(255,255,255,.72); }

.pm-page-hero { position: relative; min-height: 530px; display: flex; align-items: center; color: #fff; background: linear-gradient(125deg, #071824 0%, #0d3442 72%, #087c78 140%); overflow: hidden; }
.pm-page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: linear-gradient(90deg, var(--pm-lime-500), var(--pm-cyan-500), transparent 75%); }
.pm-page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; padding-block: 92px; }
.pm-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 58px; color: rgba(255,255,255,.52); font-size: .78rem; }
.pm-breadcrumb a:hover { color: var(--pm-lime-400); }
.pm-page-index { color: var(--pm-lime-400); font-size: .78rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.pm-page-hero h1 { max-width: 850px; margin: 22px 0 0; font-size: clamp(2.7rem, 5vw, 5.25rem); line-height: 1.08; letter-spacing: -.052em; }
.pm-page-hero-grid > p { margin: 0; color: rgba(255,255,255,.68); font-size: 1.1rem; }
.pm-page-hero-word { position: absolute; right: -2vw; bottom: -3.5vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.10); font-size: clamp(7rem, 17vw, 15rem); font-weight: 900; line-height: .8; letter-spacing: -.07em; text-transform: uppercase; }
.pm-local-nav { position: sticky; top: var(--pm-header); z-index: 800; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--pm-line); backdrop-filter: blur(14px); }
.admin-bar .pm-local-nav { top: calc(var(--pm-header) + 32px); }
.pm-local-nav .pm-container { display: flex; gap: 34px; overflow-x: auto; scrollbar-width: none; }
.pm-local-nav a { flex: 0 0 auto; padding: 17px 0 14px; color: var(--pm-muted); border-bottom: 3px solid transparent; font-size: .84rem; font-weight: 750; }
.pm-local-nav a:hover { color: var(--pm-teal-700); border-color: var(--pm-lime-500); }

.pm-solution-index, .pm-capability-grid, .pm-question-grid, .pm-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 58px; }
.pm-solution-index a, .pm-capability-grid article, .pm-topic-grid article { min-height: 300px; padding: 34px; border: 1px solid var(--pm-line); background: #fff; }
.pm-solution-index b, .pm-capability-grid b, .pm-topic-grid b, .pm-question-grid b { color: var(--pm-teal-600); font-size: .82rem; letter-spacing: .12em; }
.pm-solution-index h3, .pm-capability-grid h3, .pm-topic-grid h3, .pm-question-grid h3 { margin: 72px 0 12px; font-size: 1.35rem; line-height: 1.32; }
.pm-solution-index p, .pm-capability-grid p, .pm-topic-grid p, .pm-question-grid p { color: var(--pm-muted); }
.pm-solution-index a { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.pm-solution-index a:hover { transform: translateY(-5px); border-color: var(--pm-teal-600); box-shadow: 0 18px 40px rgba(12,57,66,.10); }
.pm-detail-stack { padding: 20px 0; }
.pm-detail-row { display: grid; grid-template-columns: 90px 1.1fr .9fr; gap: 54px; padding-block: 92px; border-bottom: 1px solid var(--pm-line); scroll-margin-top: 150px; }
.pm-detail-no { color: rgba(5,108,103,.16); font-size: 4rem; font-weight: 900; line-height: 1; }
.pm-detail-row h2 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.8rem); line-height: 1.15; letter-spacing: -.04em; }
.pm-detail-row p { color: var(--pm-muted); font-size: 1.05rem; }
.pm-detail-row ul { margin: 0; padding: 0; list-style: none; }
.pm-detail-row li { padding: 14px 0; border-bottom: 1px solid var(--pm-line); }
.pm-detail-row li::before { content: "▸"; margin-right: 12px; color: var(--pm-teal-600); }

.pm-capability-grid { grid-template-columns: repeat(2, 1fr); }
.pm-capability-grid article { min-height: 320px; background: linear-gradient(160deg, #fff 65%, #edf5f2); }
.pm-process > article { position: relative; padding: 70px 24px 0 0; }
.pm-process > article::before { content: ""; position: absolute; top: 20px; left: 0; width: 17px; height: 17px; border: 5px solid var(--pm-navy-950); border-radius: 50%; background: var(--pm-lime-500); box-shadow: 0 0 0 1px var(--pm-lime-500); }
.pm-process > article b { color: var(--pm-lime-400); font-size: .74rem; letter-spacing: .08em; }
.pm-process > article h3 { margin: 12px 0 8px; font-size: 1.05rem; }
.pm-process > article p { margin: 0; color: rgba(255,255,255,.52); font-size: .86rem; }
.pm-section--soft .pm-process > article::before { border-color: var(--pm-soft); }
.pm-section--soft .pm-process > article h3 { color: var(--pm-ink); }
.pm-section--soft .pm-process > article p { color: var(--pm-muted); }
.pm-process-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 64px; }
.pm-process-notes article { padding: 26px; border: 1px solid rgba(255,255,255,.16); }
.pm-process-notes b { color: var(--pm-lime-400); }
.pm-process-notes p { margin: 8px 0 0; color: rgba(255,255,255,.58); }
.pm-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.pm-spec-list { border-top: 1px solid var(--pm-line); }
.pm-spec-list > div { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--pm-line); }
.pm-spec-list b { color: var(--pm-teal-700); }
.pm-spec-list span { color: var(--pm-muted); }
.pm-principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.pm-principle-grid article { min-height: 230px; padding: 32px; background: #fff; border: 1px solid var(--pm-line); }
.pm-principle-grid h3 { margin: 65px 0 10px; font-size: 1.35rem; }
.pm-principle-grid p { color: var(--pm-muted); }

.pm-material-grid--detail { grid-template-columns: repeat(2, 1fr); }
.pm-material-grid--detail article { min-height: 390px; }
.pm-material-grid--detail ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; }
.pm-material-grid--detail li { padding: 5px 10px; color: var(--pm-teal-700); background: var(--pm-soft); font-size: .78rem; }
.pm-material-feature { display: grid; grid-template-columns: .8fr 1.2fr; margin: 20px 0 0; background: var(--pm-navy-900); }
.pm-material-feature img { width: 100%; height: 430px; object-fit: cover; }
.pm-material-feature figcaption { display: flex; flex-direction: column; justify-content: center; padding: 48px; color: #fff; }
.pm-material-feature figcaption > span { color: var(--pm-lime-400); font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.pm-material-feature h3 { margin: 26px 0 10px; font-size: 2rem; }
.pm-material-feature p { color: rgba(255,255,255,.62); }
.pm-question-grid { grid-template-columns: repeat(3, 1fr); }
.pm-question-grid article { min-height: 230px; padding: 28px; border: 1px solid rgba(255,255,255,.16); }
.pm-question-grid h3 { margin-top: 48px; }
.pm-question-grid p { color: rgba(255,255,255,.54); }
.pm-question-grid--light article { border-color: var(--pm-line); }
.pm-question-grid--light p { color: var(--pm-muted); }

.pm-industry-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 60px; }
.pm-industry-detail-grid article { min-height: 440px; padding: 42px; color: #fff; background: linear-gradient(145deg, var(--pm-navy-900), #0b4048); scroll-margin-top: 150px; }
.pm-industry-detail-grid article:nth-child(2), .pm-industry-detail-grid article:nth-child(3) { color: var(--pm-ink); background: var(--pm-soft); }
.pm-industry-detail-grid > article > span { color: var(--pm-lime-400); font-size: .76rem; font-weight: 850; letter-spacing: .12em; }
.pm-industry-detail-grid article:nth-child(2) > span, .pm-industry-detail-grid article:nth-child(3) > span { color: var(--pm-teal-600); }
.pm-industry-detail-grid h3 { margin: 80px 0 14px; font-size: 2rem; }
.pm-industry-detail-grid p { color: rgba(255,255,255,.63); }
.pm-industry-detail-grid article:nth-child(2) p, .pm-industry-detail-grid article:nth-child(3) p { color: var(--pm-muted); }
.pm-industry-detail-grid ul { margin: 24px 0 0; padding-left: 20px; }
.pm-topic-grid { grid-template-columns: repeat(4, 1fr); }
.pm-editorial-note { margin-top: 30px; color: var(--pm-muted); font-size: .9rem; }
.pm-certificate-card { padding: 38px; color: #fff; background: var(--pm-navy-900); }
.pm-certificate-card > b { color: var(--pm-lime-400); font-size: 2rem; }
.pm-certificate-card p { color: rgba(255,255,255,.64); }
.pm-certificate-card > div { display: flex; flex-wrap: wrap; gap: 28px; }
.pm-certificate-card .pm-text-link { color: #fff; }

.pm-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 62px; }
.pm-team-card { background: var(--pm-soft); }
.pm-team-card > img, .pm-team-placeholder { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: linear-gradient(145deg, #dce8e6, #eef4f3); }
.pm-team-placeholder { display: grid; place-items: center; color: var(--pm-teal-700); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pm-team-card > div:last-child { padding: 28px; }
.pm-team-card > div > span { color: var(--pm-teal-600); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pm-team-card h3 { margin: 18px 0 8px; font-size: 1.4rem; }
.pm-team-card p { color: var(--pm-muted); }
.pm-team-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 64px; }
.pm-team-profile { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 560px; background: var(--pm-soft); border: 1px solid var(--pm-line); overflow: hidden; }
.pm-team-portrait { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 560px; background: linear-gradient(155deg, #0c3d47 0%, #09202c 72%); overflow: hidden; }
.pm-team-portrait::before { content: ""; position: absolute; width: 290px; height: 290px; border: 1px solid rgba(131,201,40,.34); border-radius: 50%; top: 82px; left: 50%; transform: translateX(-50%); }
.pm-team-portrait > span { position: absolute; top: 24px; left: 24px; color: var(--pm-lime-400); font-size: .76rem; font-weight: 850; letter-spacing: .13em; }
.pm-team-portrait img { position: relative; z-index: 1; width: 112%; max-width: none; height: auto; margin-bottom: -2px; filter: drop-shadow(0 14px 28px rgba(0,0,0,.22)); }
.pm-team-copy { display: flex; flex-direction: column; justify-content: center; padding: 42px 38px; }
.pm-team-copy > span { color: var(--pm-teal-600); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pm-team-copy h3 { margin: 22px 0 0; font-size: 2.1rem; line-height: 1.1; }
.pm-team-copy > b { margin-top: 9px; color: var(--pm-teal-700); font-size: .9rem; }
.pm-team-copy p { margin: 26px 0 0; color: var(--pm-muted); }
.pm-team-copy ul { margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--pm-line); list-style: none; }
.pm-team-copy li { position: relative; padding: 5px 0 5px 18px; color: #44545c; font-size: .82rem; }
.pm-team-copy li::before { content: ""; position: absolute; top: 15px; left: 0; width: 7px; height: 2px; background: var(--pm-lime-500); }
.pm-strategy-profile { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; margin-top: 22px; padding: 56px; color: #fff; background: linear-gradient(110deg, var(--pm-teal-700), var(--pm-navy-900)); }
.pm-strategy-profile span { color: var(--pm-lime-400); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pm-strategy-profile h3 { margin: 52px 0 8px; font-size: 2.6rem; }
.pm-strategy-profile b { color: rgba(255,255,255,.72); }
.pm-strategy-profile p { color: rgba(255,255,255,.66); font-size: 1.02rem; }
.pm-contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; }
.pm-contact-panel { padding: 50px; color: #fff; background: linear-gradient(145deg, var(--pm-teal-700), var(--pm-navy-900)); }
.pm-contact-panel > span { color: var(--pm-lime-400); font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.pm-contact-panel h2 { margin: 70px 0 14px; font-size: 2.2rem; }
.pm-contact-panel p, .pm-contact-panel address { color: rgba(255,255,255,.66); }
.pm-contact-panel address { margin-top: 40px; font-style: normal; }

.pm-mini-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 36px; background: var(--pm-line); border: 1px solid var(--pm-line); }
.pm-mini-facts > div { padding: 22px; background: #fff; }
.pm-mini-facts b { display: block; color: var(--pm-teal-700); font-size: 1.5rem; }
.pm-mini-facts span { color: var(--pm-muted); font-size: .78rem; }
.pm-table-wrap { margin-top: 50px; overflow-x: auto; border: 1px solid var(--pm-line); }
.pm-spec-table { width: 100%; min-width: 1180px; border-collapse: collapse; background: #fff; font-size: .84rem; }
.pm-spec-table th { padding: 18px 14px; color: #fff; background: var(--pm-navy-900); text-align: left; white-space: nowrap; }
.pm-spec-table td { padding: 18px 14px; border-bottom: 1px solid var(--pm-line); }
.pm-spec-table tbody tr:hover { background: #edf6f3; }
.pm-download-row { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; margin-top: 44px; }

/* SEO service pages */
.pm-service-intro { margin: 0 0 34px; color: var(--pm-muted); font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.pm-service-pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.pm-service-pains article { min-height: 310px; padding: 34px; background: #fff; border: 1px solid var(--pm-line); }
.pm-service-pains b { color: var(--pm-teal-600); font-size: .82rem; letter-spacing: .12em; }
.pm-service-pains h3 { margin: 74px 0 12px; font-size: 1.4rem; }
.pm-service-pains p { color: var(--pm-muted); }
.pm-service-method { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border: 1px solid rgba(255,255,255,.16); }
.pm-service-method article { min-height: 310px; padding: 34px; border-right: 1px solid rgba(255,255,255,.16); }
.pm-service-method article:last-child { border-right: 0; }
.pm-service-method span { color: var(--pm-lime-400); font-size: .76rem; font-weight: 850; letter-spacing: .1em; }
.pm-service-method h3 { margin: 74px 0 12px; font-size: 1.35rem; }
.pm-service-method p { color: rgba(255,255,255,.58); }
.pm-deliverable-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--pm-line); }
.pm-deliverable-list li { display: grid; grid-template-columns: 50px 1fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--pm-line); font-weight: 700; }
.pm-deliverable-list span { color: var(--pm-teal-600); font-size: .78rem; letter-spacing: .1em; }
.pm-faq-list { margin-top: 52px; border-top: 1px solid var(--pm-line); }
.pm-faq-list details { border-bottom: 1px solid var(--pm-line); }
.pm-faq-list summary { position: relative; padding: 24px 54px 24px 0; cursor: pointer; font-size: 1.08rem; font-weight: 780; list-style: none; }
.pm-faq-list summary::-webkit-details-marker { display: none; }
.pm-faq-list summary::after { content: "+"; position: absolute; right: 10px; color: var(--pm-teal-600); font-size: 1.5rem; }
.pm-faq-list details[open] summary::after { content: "−"; }
.pm-faq-list details p { max-width: 840px; margin: 0; padding: 0 0 26px; color: var(--pm-muted); }
.pm-related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.pm-related-links a { padding: 12px 18px; border: 1px solid var(--pm-line); background: #fff; color: var(--pm-teal-700); font-size: .86rem; font-weight: 750; }

/* Client-managed content collections */
.pm-managed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.pm-managed-card { position: relative; display: flex; flex-direction: column; min-height: 330px; padding: 34px; color: var(--pm-ink); background: #fff; border: 1px solid var(--pm-line); overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.pm-managed-card:hover { transform: translateY(-6px); border-color: rgba(7,102,101,.42); box-shadow: var(--pm-shadow); }
.pm-managed-card > span:not(.pm-managed-thumb) { color: var(--pm-teal-600); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pm-managed-card h3 { margin: 54px 0 14px; font-size: 1.55rem; line-height: 1.28; }
.pm-managed-card p { margin: 0 0 32px; color: var(--pm-muted); }
.pm-managed-card > b { margin-top: auto; color: var(--pm-teal-700); font-size: .84rem; }
.pm-managed-thumb { display: block; height: 190px; margin: -34px -34px 28px; overflow: hidden; }
.pm-managed-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.pm-managed-card:hover .pm-managed-thumb img { transform: scale(1.035); }
.pm-managed-thumb + span + h3 { margin-top: 24px; }

/* Structured single templates */
.pm-structured-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.pm-structured-image { margin: 0 0 44px; overflow: hidden; background: var(--pm-soft); }
.pm-structured-image img { display: block; width: 100%; height: auto; }
.pm-material-grade { margin: 28px 0; color: var(--pm-teal-700); font-size: 1.06rem; font-weight: 750; }
.pm-rich-content { margin: 26px 0 34px; color: var(--pm-muted); }
.pm-rich-content > :first-child { margin-top: 0; }
.pm-rich-content > :last-child { margin-bottom: 0; }
.pm-structured-facts { border-top: 3px solid var(--pm-lime-500); background: var(--pm-soft); }
.pm-structured-facts section { padding: 34px; border-bottom: 1px solid var(--pm-line); }
.pm-structured-facts h3 { margin: 0 0 22px; font-size: 1.15rem; }
.pm-structured-facts ul { margin: 0; padding: 0; list-style: none; }
.pm-structured-facts li { position: relative; padding: 8px 0 8px 20px; color: var(--pm-muted); }
.pm-structured-facts li::before { content: ""; position: absolute; top: 18px; left: 0; width: 8px; height: 2px; background: var(--pm-lime-500); }
.pm-engineering-note { margin: 24px 0 32px; padding: 20px 22px; color: rgba(255,255,255,.72); border-left: 3px solid var(--pm-lime-500); background: rgba(255,255,255,.05); }

.pm-advantage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 58px; }
.pm-advantage-grid article { position: relative; min-height: 360px; padding: 40px; color: #fff; background: linear-gradient(145deg, var(--pm-navy-900), #0e3c48); overflow: hidden; }
.pm-advantage-grid article:nth-child(2), .pm-advantage-grid article:nth-child(3) { color: var(--pm-ink); background: var(--pm-soft); border: 1px solid var(--pm-line); }
.pm-advantage-grid article::after { content: attr(data-word); position: absolute; right: -10px; bottom: -30px; color: rgba(255,255,255,.06); font-size: 8rem; font-weight: 900; letter-spacing: -.08em; }
.pm-advantage-grid article:nth-child(2)::after, .pm-advantage-grid article:nth-child(3)::after { color: rgba(7,102,101,.06); }
.pm-advantage-grid span { color: var(--pm-lime-400); font-size: .75rem; font-weight: 850; letter-spacing: .11em; }
.pm-advantage-grid article:nth-child(2) span, .pm-advantage-grid article:nth-child(3) span { color: var(--pm-teal-600); }
.pm-advantage-grid h3 { position: relative; z-index: 1; margin: 90px 0 12px; font-size: 1.8rem; }
.pm-advantage-grid p { position: relative; z-index: 1; max-width: 520px; color: rgba(255,255,255,.62); }
.pm-advantage-grid article:nth-child(2) p, .pm-advantage-grid article:nth-child(3) p { color: var(--pm-muted); }

.pm-responsibility-table { margin-top: 56px; border: 1px solid var(--pm-line); }
.pm-responsibility-table > div { display: grid; grid-template-columns: .6fr 1.2fr 1.2fr; }
.pm-responsibility-table > div > * { padding: 20px; border-right: 1px solid var(--pm-line); border-bottom: 1px solid var(--pm-line); }
.pm-responsibility-table > div > *:last-child { border-right: 0; }
.pm-responsibility-table > div:last-child > * { border-bottom: 0; }
.pm-responsibility-head { color: #fff; background: var(--pm-navy-900); }
.pm-responsibility-table span { color: var(--pm-muted); }
.pm-start-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--pm-line); }
.pm-start-steps li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--pm-line); }
.pm-start-steps > li > b { color: var(--pm-teal-600); font-size: 1.15rem; }
.pm-start-steps h3 { margin: 0 0 6px; }
.pm-start-steps p { margin: 0; color: var(--pm-muted); }

/* Generic content */
.pm-content { min-height: 55vh; padding: 80px 0; }
.pm-content h1 { font-size: clamp(2rem, 4vw, 4rem); }

/* Reveal */
.pm-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.pm-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  body.nav-open { overflow: hidden; }
  :root { --pm-header: 74px; }
  .pm-nav { position: fixed; inset: var(--pm-header) 0 auto; display: none; max-height: calc(100vh - var(--pm-header)); overflow: auto; background: #fff; border-top: 1px solid var(--pm-line); box-shadow: var(--pm-shadow); }
  .nav-open .pm-nav { display: block; }
  .pm-nav ul { display: block; padding: 18px 24px 28px; }
  .pm-nav a { padding: 14px 0; border-bottom: 1px solid var(--pm-line); }
  .pm-nav a::after { display: none; }
  .pm-nav .sub-menu { position: static; display: block; min-width: 0; padding: 0 0 0 18px; border: 0; box-shadow: none; }
  .pm-nav .sub-menu a { padding: 10px 0; color: var(--pm-muted); }
  .pm-menu-toggle { display: block; margin-left: auto; }
  .nav-open .pm-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .pm-menu-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .pm-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .pm-header-cta { min-height: 42px; padding: 0 19px; }
  .pm-header-market-spacer { display: none; }
  .pm-approach-head, .pm-case-wrap { grid-template-columns: 1fr; gap: 34px; }
  .pm-metrics, .pm-material-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-process { grid-template-columns: repeat(3, 1fr); gap: 38px 0; }
  .pm-process::before { display: none; }
  .pm-process-step { padding-top: 48px; }
  .pm-process-step::before { top: 8px; }
  .pm-footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .pm-footer-main > :last-child { grid-column: 1 / -1; }
  .pm-portal-grid, .pm-industry-strip, .pm-topic-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-portal-card:nth-child(2), .pm-industry-strip a:nth-child(2) { border-right: 1px solid var(--pm-line); }
  .pm-page-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .pm-page-hero-grid > p { max-width: 720px; }
  .pm-detail-row { grid-template-columns: 70px 1fr; gap: 34px; }
  .pm-detail-row > ul { grid-column: 2; }
  .pm-solution-index { grid-template-columns: repeat(2, 1fr); }
  .pm-question-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-team-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-team-feature-grid { grid-template-columns: 1fr; }
  .pm-service-method { grid-template-columns: repeat(2, 1fr); }
  .pm-service-method article:nth-child(2) { border-right: 0; }
  .pm-managed-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-structured-layout { grid-template-columns: 1fr; gap: 44px; }
  .pm-knowledge-tabs { justify-content: flex-start; overflow-x: auto; }
  .pm-knowledge-tabs a { flex: 0 0 auto; }
  .pm-knowledge-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-article-layout { grid-template-columns: 150px minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 760px) {
  .admin-bar .pm-site-header { top: 46px; }
  .pm-container { width: min(calc(100% - 32px), var(--pm-container)); }
  .pm-section { padding: 78px 0; }
  .pm-header-inner { gap: 14px; }
  .pm-brand img { width: 96px; }
  .pm-header-cta { display: none; }
  .pm-hero { min-height: 760px; background-position: 68% center; }
  .pm-hero::before { background: linear-gradient(90deg, rgba(3,14,22,.97), rgba(4,19,29,.82) 72%, rgba(5,27,39,.38)); }
  .pm-hero-inner { padding: 84px 0 64px; }
  .pm-hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .pm-hero-actions { display: grid; }
  .pm-hero-facts { margin-top: 42px; }
  .pm-hero-fact { min-width: 50%; margin: 0; padding: 18px 12px 0 0; }
  .pm-hero-fact + .pm-hero-fact { padding-left: 14px; }
  .pm-scroll-cue { display: none; }
  .pm-pain-grid, .pm-approach-grid, .pm-split, .pm-insight-grid { grid-template-columns: 1fr; }
  .pm-pain-card { min-height: 270px; border-left: 1px solid var(--pm-line); border-bottom: 1px solid var(--pm-line); }
  .pm-pain-card h3 { margin-top: 34px; }
  .pm-approach-card { min-height: 320px; padding: 30px; }
  .pm-approach-card h3 { margin-top: 80px; }
  .pm-metrics { grid-template-columns: 1fr 1fr; }
  .pm-metric { min-height: 170px; padding: 28px 20px; }
  .pm-split { min-height: 0; }
  .pm-split-media { min-height: 360px; }
  .pm-split-content { padding: 60px 24px; }
  .pm-case-summary { padding: 34px; }
  .pm-case-row { grid-template-columns: 1fr; gap: 8px; }
  .pm-case-results { grid-template-columns: 1fr; }
  .pm-material-grid { grid-template-columns: 1fr 1fr; }
  .pm-material-card { min-height: 220px; padding: 24px; }
  .pm-material-card h3 { margin-top: 30px; }
  .pm-process { grid-template-columns: 1fr 1fr; }
  .pm-footer-cta-inner { display: grid; }
  .pm-footer-main { grid-template-columns: 1fr 1fr; }
  .pm-footer-main > :first-child, .pm-footer-main > :last-child { grid-column: 1 / -1; }
  .pm-footer-bottom { align-items: flex-start; flex-direction: column; }
  .pm-quick-rail { inset: auto 0 0; display: grid; grid-template-columns: repeat(2, 1fr); transform: none; }
  .pm-quick-rail a { width: auto; min-height: 48px; writing-mode: horizontal-tb; }
  .pm-quick-rail a:hover { width: auto; }
  .pm-site-footer { padding-bottom: 48px; }
  .pm-section-heading-row, .pm-featured-case, .pm-two-col, .pm-contact-grid, .pm-material-feature { grid-template-columns: 1fr; gap: 34px; }
  .pm-section-heading-row > .pm-lead { margin-top: 0; }
  .pm-portal-grid, .pm-industry-strip, .pm-solution-index, .pm-capability-grid, .pm-industry-detail-grid, .pm-topic-grid, .pm-principle-grid, .pm-process-notes { grid-template-columns: 1fr; }
  .pm-portal-card, .pm-industry-strip a { min-height: 270px; border-right: 1px solid var(--pm-line); border-bottom: 0; }
  .pm-portal-card:last-child, .pm-industry-strip a:last-child { border-bottom: 1px solid var(--pm-line); }
  .pm-page-hero { min-height: 500px; }
  .pm-page-hero-grid { padding-block: 72px; }
  .pm-breadcrumb { margin-bottom: 40px; }
  .pm-page-hero h1 { font-size: clamp(2.45rem, 11vw, 4rem); }
  .pm-local-nav { top: var(--pm-header); }
  .admin-bar .pm-local-nav { top: calc(var(--pm-header) + 46px); }
  .pm-detail-row { grid-template-columns: 1fr; gap: 22px; padding-block: 66px; }
  .pm-detail-row > ul { grid-column: 1; }
  .pm-process > article { padding-top: 48px; }
  .pm-process > article::before { top: 8px; }
  .pm-spec-list > div { grid-template-columns: 1fr; gap: 5px; }
  .pm-material-grid--detail { grid-template-columns: 1fr; }
  .pm-material-feature img { height: 360px; }
  .pm-question-grid { grid-template-columns: 1fr; }
  .pm-team-grid { grid-template-columns: 1fr; }
  .pm-team-profile { grid-template-columns: 1fr; }
  .pm-team-portrait { min-height: 450px; }
  .pm-team-portrait img { width: min(96%, 460px); }
  .pm-strategy-profile { grid-template-columns: 1fr; gap: 24px; padding: 38px 30px; }
  .pm-strategy-profile h3 { margin-top: 30px; }
  .pm-contact-panel { padding: 36px; }
  .pm-mini-facts { grid-template-columns: 1fr; }
  .pm-service-pains, .pm-service-method, .pm-advantage-grid { grid-template-columns: 1fr; }
  .pm-service-method article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .pm-service-method article:last-child { border-bottom: 0; }
  .pm-responsibility-table { border: 0; }
  .pm-responsibility-table > div { display: block; margin-bottom: 18px; border: 1px solid var(--pm-line); }
  .pm-responsibility-table > div > * { display: block; padding: 13px 18px; border-right: 0; }
  .pm-responsibility-head { display: none !important; }
  .pm-managed-grid { grid-template-columns: 1fr; }
  .pm-managed-card { min-height: 290px; }
  .pm-insight-intro { padding: 68px 0 54px; }
  .pm-knowledge-heading { display: block; }
  .pm-knowledge-heading > p { margin-top: 20px; }
  .pm-knowledge-grid { grid-template-columns: 1fr; }
  .pm-insight-banner { min-height: 560px; }
  .pm-insight-banner .pm-container { padding-block: 56px 68px; }
  .pm-breadcrumb--article { margin-bottom: 48px; }
  .pm-insight-title-grid { grid-template-columns: 1fr; gap: 28px; }
  .pm-insight-date { width: 100px; padding-right: 18px; }
  .pm-insight-title-grid h1 { font-size: clamp(2.35rem, 10vw, 3.8rem); }
  .pm-article-feature { aspect-ratio: 1.35 / 1; }
  .pm-article-placeholder { padding: 34px 26px; }
  .pm-article-layout { grid-template-columns: 1fr; gap: 36px; margin-top: 58px; }
  .pm-article-side { position: static; grid-template-columns: 1fr 1fr; }
  .pm-article-side > span { grid-column: 1 / -1; }
  .pm-article-keypoints { padding: 28px 24px; }
  .pm-article-navigation > .pm-container { grid-template-columns: 1fr 72px 1fr; min-height: 130px; }
  .pm-article-navigation a > b { display: none; }
}

/* 1.6.0 — equipment and materials architecture */
.pm-page-hero--equipment { --pm-banner-image: url("assets/images/hero-equipment.jpg"); --pm-banner-position: center 52%; }
.pm-page-hero--equipment-item { --pm-banner-position: center; }

.pm-equipment-index { padding: 102px 0 118px; background: #fff; }
.pm-equipment-intro {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
  padding-bottom: 50px;
}
.pm-equipment-intro h2 {
  margin: 0;
  color: var(--pm-ink);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.pm-equipment-intro p { max-width: 660px; margin: 0; color: #53636a; font-size: 1.02rem; line-height: 1.9; }
.pm-equipment-intro .pm-equipment-disclosure { margin-top: 16px; color: #7a878c; font-size: .82rem; }

.pm-equipment-filter,
.pm-equipment-category-nav { border-block: 1px solid var(--pm-line); }
.pm-equipment-filter { display: flex; margin-bottom: 44px; overflow-x: auto; scrollbar-width: none; }
.pm-equipment-filter button {
  flex: 1 0 170px;
  min-height: 68px;
  padding: 16px 24px;
  color: #66757b;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--pm-line);
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}
.pm-equipment-filter button:last-child { border-right: 0; }
.pm-equipment-filter button[aria-pressed="true"] { color: #fff; background: var(--pm-teal-700); }
.pm-equipment-filter button:focus-visible { outline: 2px solid var(--pm-lime-500); outline-offset: -4px; }
.pm-equipment-filter-wrap { position: relative; margin-bottom: 44px; }
.pm-equipment-filter-wrap .pm-equipment-filter { margin-bottom: 0; }
.pm-equipment-scroll-hint { display: none; }

.pm-equipment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--pm-line); border: 1px solid var(--pm-line); }
.pm-equipment-card { min-width: 0; background: #fff; }
.pm-equipment-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.pm-equipment-card[hidden] { display: none; }
.pm-equipment-card > a { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(240px, .96fr); min-height: 320px; color: inherit; }
.pm-equipment-card-media { position: relative; display: grid; min-height: 320px; place-items: center; background: #eaf0ee; overflow: hidden; }
.pm-equipment-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 52%, rgba(4,34,39,.16)); pointer-events: none; }
.pm-equipment-card-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .55s ease; }
.pm-equipment-card-media b { padding: 24px; color: transparent; -webkit-text-stroke: 1px rgba(8,124,120,.35); font-size: clamp(2.1rem,4vw,4.4rem); line-height: .98; text-align: center; }
.pm-equipment-card-copy { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 38px 34px 34px; }
.pm-equipment-card-copy small { color: var(--pm-teal-700); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.pm-equipment-card-copy strong { margin-top: 18px; color: var(--pm-ink); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.35; }
.pm-equipment-card-copy em { margin-top: 9px; color: #899397; font-size: .72rem; font-style: normal; letter-spacing: .05em; }
.pm-equipment-card-copy p { margin: 26px 0 0; color: #657279; font-size: .9rem; line-height: 1.75; }
.pm-equipment-card-copy i { margin-top: auto; padding-top: 22px; color: var(--pm-teal-700); font-size: 1.15rem; font-style: normal; }
.pm-equipment-card:hover .pm-equipment-card-media img { transform: scale(1.035); }

.pm-equipment-category-nav { background: #fff; }
.pm-equipment-category-nav .pm-container { display: flex; overflow-x: auto; scrollbar-width: none; }
.pm-equipment-category-nav a { flex: 1 0 210px; padding: 24px; color: #5c6a70; font-size: .84rem; font-weight: 700; text-align: center; border-right: 1px solid var(--pm-line); }
.pm-equipment-category-nav a:last-child { border-right: 0; }
.pm-equipment-category-nav a:hover { color: var(--pm-teal-700); background: var(--pm-soft); }
.pm-equipment-profile { padding: 96px 0; }
.pm-equipment-profile-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr); gap: clamp(48px,8vw,110px); align-items: center; }
.pm-equipment-profile-image { margin: 0; min-height: 520px; overflow: hidden; }
.pm-equipment-profile-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.pm-equipment-profile-copy > span { color: var(--pm-teal-700); font-size: .75rem; font-weight: 700; }
.pm-equipment-profile-copy h2 { margin: 18px 0 24px; color: var(--pm-ink); font-size: clamp(2rem,3.8vw,3.8rem); line-height: 1.12; letter-spacing: -.04em; }
.pm-equipment-profile-copy p { margin: 0 0 30px; color: #5c6b71; line-height: 1.9; }
.pm-equipment-detail { padding: 86px 0; background: var(--pm-soft); }
.pm-equipment-detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: #d6e0dd; }
.pm-equipment-detail section { padding: 46px; background: #fff; }
.pm-equipment-detail h2 { margin: 0 0 28px; font-size: 1.45rem; }
.pm-equipment-detail ul { margin: 0; padding: 0; list-style: none; }
.pm-equipment-detail li { padding: 14px 0; color: #53636a; border-bottom: 1px solid var(--pm-line); }
.pm-equipment-detail dl { margin: 0; }
.pm-equipment-detail dl div { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--pm-line); }
.pm-equipment-detail dt { color: #879196; font-size: .78rem; }
.pm-equipment-detail dd { margin: 0; color: #35464d; }
.pm-equipment-note { padding: 24px 0; color: #607077; background: #e9efed; }
.pm-equipment-note p { margin: 0; font-size: .8rem; line-height: 1.7; }

@media (max-width: 1080px) {
  .pm-equipment-grid { grid-template-columns: 1fr; }
  .pm-equipment-card:last-child:nth-child(odd) { grid-column: auto; }
  .pm-equipment-card > a { grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr); }
}

@media (max-width: 760px) {
  .pm-equipment-index { padding: 70px 0 82px; }
  .pm-equipment-intro { grid-template-columns: 1fr; gap: 28px; padding-bottom: 38px; }
  .pm-equipment-filter { margin-inline: calc(var(--pm-gutter, 22px) * -1); padding-inline: var(--pm-gutter, 22px); border-top: 1px solid var(--pm-line); }
  .pm-equipment-filter button { flex-basis: 145px; min-height: 60px; padding-inline: 16px; }
  .pm-equipment-card > a { grid-template-columns: 1fr; }
  .pm-equipment-card-media,
  .pm-equipment-card-media img { min-height: 250px; height: 250px; }
  .pm-equipment-card-copy { min-height: 260px; padding: 28px 24px; }
  .pm-equipment-profile { padding: 70px 0; }
  .pm-equipment-profile-grid { grid-template-columns: 1fr; gap: 38px; }
  .pm-equipment-profile-image,
  .pm-equipment-profile-image img { min-height: 280px; height: 280px; }
  .pm-equipment-detail { padding: 66px 0; }
  .pm-equipment-detail-grid { grid-template-columns: 1fr; }
  .pm-equipment-detail section { padding: 32px 24px; }
  .pm-equipment-detail dl div { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 480px) {
  .pm-material-grid, .pm-metrics { grid-template-columns: 1fr; }
  .pm-process { grid-template-columns: 1fr; }
  .pm-hero-fact { min-width: 100%; border-left: 0 !important; padding-left: 0 !important; }
}

/* Case studies — reference-led index with image-first cards */
.pm-page-hero--case-studies {
  min-height: 470px;
  color: #fff;
  background: #102c33;
}
.pm-page-hero--case-studies::before {
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(9, 32, 38, .92) 0%, rgba(9, 32, 38, .66) 48%, rgba(9, 32, 38, .22) 100%),
    url("assets/images/hero-precision-components.webp") 68% center / cover no-repeat;
}
.pm-page-hero--case-studies .pm-page-hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  padding-top: 188px;
  padding-bottom: 84px;
}
.pm-page-hero--case-studies .pm-breadcrumb,
.pm-page-hero--case-studies .pm-page-index { display: none; }
.pm-page-hero--case-studies h1 {
  max-width: none;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(3.2rem, 6.4vw, 6.3rem);
  font-weight: 700;
  letter-spacing: -.055em;
}
.pm-page-hero--case-studies .pm-page-hero-grid > p {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 1.04rem;
  line-height: 1.85;
}
.pm-page-hero--case-studies .pm-page-hero-word {
  right: 4vw;
  bottom: -1.5vw;
  z-index: 1;
  color: transparent;
  font-size: clamp(5.5rem, 12vw, 12rem);
  letter-spacing: -.05em;
  -webkit-text-stroke: 1px rgba(255,255,255,.20);
}
.pm-case-breadcrumb {
  border-bottom: 1px solid var(--pm-line);
  background: #fff;
}
.pm-case-breadcrumb .pm-container {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 12px;
  color: #8a9597;
  font-size: .82rem;
}
.pm-case-breadcrumb a { color: var(--pm-ink); }
.pm-case-index {
  padding: 74px 0 110px;
  background: #f4f6f3;
}
.pm-case-filter {
  display: flex;
  gap: 0 44px;
  margin-bottom: 72px;
  border-bottom: 1px solid #cfd7d4;
  white-space: nowrap;
}
.pm-case-filter a {
  position: relative;
  padding: 0 0 18px;
  color: #6f7b7d;
  font-size: .96rem;
  font-weight: 650;
}
.pm-case-filter a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--pm-teal-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.pm-case-filter a:hover,
.pm-case-filter a.is-active { color: var(--pm-ink); }
.pm-case-filter a:hover::after,
.pm-case-filter a.is-active::after { transform: scaleX(1); }
.pm-case-index-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}
.pm-case-index-heading--single { grid-template-columns: 1fr; }
.pm-case-index-heading h2 {
  margin: 0;
  color: var(--pm-ink);
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  letter-spacing: -.04em;
}
.pm-case-index-heading p {
  margin: 0;
  color: var(--pm-muted);
  line-height: 1.8;
}
.pm-case-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 34px;
}
.pm-case-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: var(--pm-ink);
  background: #fff;
  box-shadow: 0 13px 35px rgba(18, 43, 48, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pm-case-card:hover {
  color: var(--pm-ink);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(18, 43, 48, .13);
}
.pm-case-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e7ece8;
}
.pm-case-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.pm-case-card:hover .pm-case-card-media > img { transform: scale(1.025); }
.pm-case-logo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(16, 44, 51, .035), rgba(31, 130, 119, .09)),
    #edf1ed;
}
.pm-case-logo-fallback::before,
.pm-case-logo-fallback::after {
  content: "";
  position: absolute;
  width: 36%;
  height: 1px;
  background: rgba(22, 79, 75, .14);
}
.pm-case-logo-fallback::before { top: 28%; right: 7%; }
.pm-case-logo-fallback::after { bottom: 25%; left: 7%; }
.pm-case-logo-fallback img {
  position: relative;
  z-index: 1;
  width: min(44%, 230px);
  height: auto;
  opacity: .92;
}
.pm-case-card-body {
  display: flex;
  min-height: 370px;
  flex: 1;
  flex-direction: column;
  padding: 34px 38px 31px;
}
.pm-case-card-category {
  color: var(--pm-teal-700);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.pm-case-card h3 {
  margin: 12px 0 26px;
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  line-height: 1.45;
  letter-spacing: -.025em;
}
.pm-case-card-specs {
  display: block;
  border-top: 1px solid var(--pm-line);
}
.pm-case-card-specs > span {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--pm-line);
  font-size: .88rem;
  line-height: 1.55;
}
.pm-case-card-specs b { color: #7c898b; font-weight: 600; }
.pm-case-card-specs em {
  overflow-wrap: anywhere;
  color: var(--pm-ink);
  font-style: normal;
}
.pm-case-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
  color: var(--pm-ink);
  font-size: .9rem;
  font-weight: 700;
}
.pm-case-card-link i {
  color: var(--pm-teal-700);
  font-size: 1.3rem;
  font-style: normal;
  transition: transform .25s ease;
}
.pm-case-card:hover .pm-case-card-link i { transform: translateX(5px); }
.pm-case-confidential {
  padding: 76px 0;
  color: #fff;
  background: var(--pm-navy-900);
}
.pm-case-confidential .pm-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: center;
}
.pm-case-confidential h2 {
  max-width: 760px;
  margin: 0 0 13px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.035em;
}
.pm-case-confidential p {
  max-width: 800px;
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .pm-case-index-heading { grid-template-columns: 1fr; gap: 18px; }
  .pm-case-card-grid { grid-template-columns: 1fr; }
  .pm-case-confidential .pm-container { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .pm-page-hero--case-studies { min-height: 430px; }
  .pm-page-hero--case-studies::before { height: 100%; opacity: 1; }
  .pm-page-hero--case-studies .pm-page-hero-grid { padding-top: 150px; padding-bottom: 64px; }
  .pm-page-hero--case-studies h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .pm-page-hero--case-studies .pm-page-hero-word { right: -2vw; bottom: -1vw; font-size: 20vw; }
  .pm-case-breadcrumb .pm-container { min-height: 56px; }
  .pm-case-index { padding: 52px 0 78px; }
  .pm-case-filter {
    overflow-x: auto;
    gap: 0 28px;
    margin-right: calc(var(--pm-gutter) * -1);
    margin-bottom: 48px;
    padding-right: var(--pm-gutter);
    -webkit-overflow-scrolling: touch;
  }
  .pm-case-card-grid { gap: 28px; }
  .pm-case-card-body { min-height: 0; padding: 28px 24px 25px; }
  .pm-case-card-specs > span { grid-template-columns: 88px minmax(0, 1fr); gap: 14px; }
  .pm-case-confidential { padding: 60px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .pm-reveal { opacity: 1; transform: none; }
}

/* Editorial corporate system — v0.5 */
:root {
  --pm-navy-950: #0b1e23;
  --pm-navy-900: #102c33;
  --pm-navy-800: #1b4147;
  --pm-teal-700: #17736e;
  --pm-teal-600: #24857e;
  --pm-cyan-500: #4b9b99;
  --pm-lime-500: #75ad36;
  --pm-lime-400: #9bc967;
  --pm-ink: #172529;
  --pm-muted: #637176;
  --pm-line: #d7dfdc;
  --pm-soft: #f3f5f1;
  --pm-radius: 0;
  --pm-shadow: 0 18px 45px rgba(11, 30, 35, .10);
  --pm-header: 82px;
}

body { background: #fff; font-weight: 400; }
.pm-container { width: min(calc(100% - 64px), var(--pm-container)); }
.pm-section { padding: 104px 0; }
.pm-section--soft { background: var(--pm-soft); }
.pm-section--dark { background: var(--pm-navy-900); }
.pm-title { max-width: 780px; font-weight: 700; letter-spacing: -.035em; }
.pm-title--medium { font-size: clamp(2rem, 3.1vw, 3.25rem); }
.pm-lead { max-width: 650px; line-height: 1.85; }
.pm-scroll-cue { display: none; }
.pm-ghost-word {
  display: block;
  top: 34px;
  right: 2vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 115, 110, .14);
  font-size: clamp(6rem, 15vw, 13rem);
  font-weight: 800;
  letter-spacing: -.055em;
}
.pm-page-hero-word {
  display: block;
  z-index: 1;
  right: -1.5vw;
  bottom: -2.7vw;
  -webkit-text-stroke-color: rgba(255,255,255,.14);
  font-size: clamp(6.5rem, 15vw, 13.5rem);
  font-weight: 800;
}

.pm-section-label {
  gap: 0;
  margin-bottom: 16px;
  color: #718083;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.pm-section-label::before { display: none; }
.pm-section--dark .pm-section-label { color: rgba(255,255,255,.54); }

.pm-button {
  min-height: 50px;
  padding: 0 25px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: var(--pm-teal-700);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: 0;
  overflow: visible;
  transition: background-color .2s ease, color .2s ease;
}
.pm-button { overflow: hidden; }
.pm-button::before {
  display: block;
  width: 13px;
  background: var(--pm-lime-500);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 58% 0);
}
.pm-button--ghost::before { display: none; }
.pm-button::after { width: 7px; height: 7px; margin-left: 14px; border-width: 1px; }
.pm-button:hover, .pm-button:focus, .pm-button:focus-visible { transform: none; outline: 0; background: var(--pm-navy-900); box-shadow: none; }
.pm-button--ghost { border: 0; background: transparent; }
.pm-button--ghost:hover { color: var(--pm-navy-950); background: #fff; }
.pm-button--light { color: var(--pm-navy-950); background: #fff; }
.pm-button--light:hover { color: #fff; background: var(--pm-teal-700); }

/* Navigation */
.pm-site-header { height: var(--pm-header); background: rgba(255,255,255,.98); backdrop-filter: blur(10px); }
.pm-header-inner { gap: 30px; }
.pm-brand img { width: 108px; }
.pm-nav ul { gap: 27px; }
.pm-nav a { padding: 28px 0 25px; font-size: .91rem; font-weight: 650; }
.pm-nav a::after { bottom: 17px; height: 1px; }
.pm-nav .sub-menu { top: calc(100% - 8px); padding: 10px 0; box-shadow: 0 16px 36px rgba(13,35,40,.10); }
.pm-header-cta { min-height: 44px; padding-inline: 22px; }

/* Home hero */
.pm-hero { min-height: min(820px, calc(100svh - var(--pm-header))); background-position: 62% center; }
.pm-hero::before { background: linear-gradient(90deg, rgba(5,19,24,.97) 0%, rgba(5,19,24,.88) 43%, rgba(5,19,24,.34) 73%, rgba(5,19,24,.12) 100%); }
.pm-hero::after { display: none; }
.pm-hero-inner { padding: 92px 0 72px; }
.pm-hero-content { max-width: 735px; }
.pm-hero-kicker { margin-bottom: 22px; color: rgba(255,255,255,.68); font-size: .78rem; letter-spacing: .12em; }
.pm-hero-kicker::before, .pm-hero-kicker::after { display: none; }
.pm-hero h1 { max-width: 720px; font-size: clamp(2.8rem, 5vw, 5.05rem); font-weight: 700; letter-spacing: -.045em; text-shadow: none; }
.pm-hero-text { max-width: 620px; margin-top: 24px; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.3vw, 1.14rem); }
.pm-hero-actions { margin-top: 34px; }
.pm-hero-facts { max-width: 690px; margin-top: 60px; }
.pm-hero-fact { min-width: 175px; padding-top: 18px; }
.pm-hero-fact strong { font-size: 1.2rem; font-weight: 650; }

/* Home content uses editorial rows instead of repeated boxes */
.pm-section-heading-row { grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); gap: 90px; }
.pm-home-portals { background: #fff; }
.pm-portal-grid { grid-template-columns: repeat(2, 1fr); gap: 0 70px; margin-top: 68px; border: 0; border-top: 1px solid var(--pm-line); }
.pm-portal-card {
  min-height: 235px;
  padding: 32px 48px 32px 0;
  border: 0;
  border-bottom: 1px solid var(--pm-line);
  background: transparent;
  overflow: visible;
}
.pm-portal-card:nth-child(odd) { border-right: 1px solid var(--pm-line); }
.pm-portal-card > span { color: #758184; font-size: .7rem; font-weight: 650; letter-spacing: .09em; }
.pm-portal-card h3 { margin: 34px 0 10px; font-size: 1.7rem; }
.pm-portal-card p { max-width: 430px; margin: 0; }
.pm-portal-card b { right: 0; bottom: 34px; }
.pm-portal-card:hover { color: var(--pm-ink); background: transparent; transform: none; box-shadow: none; }
.pm-portal-card:hover p { color: var(--pm-muted); }
.pm-portal-card:hover > span { color: #758184; }
.pm-portal-card:hover b { color: var(--pm-navy-900); }

.pm-metrics { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.pm-metric { min-height: 200px; padding: 42px 26px; border-color: rgba(255,255,255,.16); background: transparent; }
.pm-metric strong { color: #fff; font-weight: 550; }
.pm-metric small { color: rgba(255,255,255,.42); }

.pm-split-media { background-position: center; }
.pm-split-content { background: #eef1ed; }
.pm-split-content-inner { max-width: 560px; }
.pm-check-list li { padding-left: 0; border-bottom: 1px solid var(--pm-line); }
.pm-check-list li::before { display: none; }

.pm-case-summary { background: var(--pm-navy-900); }
.pm-case-summary::before { display: none; }
.pm-featured-case { margin-top: 48px; }
.pm-featured-case .pm-case-summary { min-height: 390px; }
.pm-case-highlight { gap: 0; padding: 46px 54px; background: #eef1ed; }
.pm-case-highlight > div { padding: 24px 22px 24px 0; border-top: 1px solid var(--pm-line); background: transparent; }
.pm-case-highlight > div + div { padding-left: 26px; border-left: 1px solid var(--pm-line); }
.pm-case-highlight strong { font-size: clamp(2.2rem, 3.6vw, 4.2rem); font-weight: 600; }

.pm-industry-strip { gap: 0 38px; border-top: 1px solid var(--pm-line); }
.pm-industry-strip a { min-height: 220px; padding: 28px 28px 28px 0; border: 0; border-bottom: 1px solid var(--pm-line); background: transparent; }
.pm-industry-strip a:last-child { border-right: 0; }
.pm-industry-strip span { color: #788588; font-size: .72rem; font-weight: 650; letter-spacing: .08em; }
.pm-industry-strip h3 { margin: 48px 0 7px; }
.pm-industry-strip a:hover { color: var(--pm-ink); background: transparent; transform: none; }
.pm-industry-strip a:hover p { color: var(--pm-muted); }
.pm-industry-strip a:hover span { color: var(--pm-teal-700); }

.pm-insight-grid { gap: 0 34px; margin-top: 48px; border-top: 1px solid var(--pm-line); }
.pm-insight-card { min-height: 270px; padding: 28px 32px 30px 0; border: 0; border-bottom: 1px solid var(--pm-line); background: transparent; }
.pm-insight-card h3 { margin-top: 42px; }
.pm-insight-card .arrow { right: 8px; bottom: 26px; }

/* Inner banners: shared typography, page-specific composition */
.pm-page-hero { min-height: 500px; background: var(--pm-navy-900); }
.pm-page-hero::after { display: none; }
.pm-page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 57%;
  background: linear-gradient(90deg, var(--pm-navy-900), rgba(16,44,51,.18)), url("assets/images/hero-precision-components.webp") center / cover no-repeat;
}
.pm-page-hero-grid { grid-template-columns: 1.15fr .6fr; gap: 100px; padding-block: 84px; }
.pm-breadcrumb { margin-bottom: 52px; }
.pm-page-index { color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 650; letter-spacing: .12em; }
.pm-page-hero h1 { max-width: 760px; margin-top: 18px; font-size: clamp(2.65rem, 4.5vw, 4.7rem); font-weight: 700; letter-spacing: -.045em; }
.pm-page-hero-grid > p { max-width: 440px; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.85; }

.pm-page-hero--materials,
.pm-page-hero--industries,
.pm-page-hero--team,
.pm-page-hero--insights,
.pm-page-hero--contact,
.pm-page-hero--miniature-screw { color: var(--pm-ink); background: #edf0eb; }
.pm-page-hero--materials::before,
.pm-page-hero--industries::before { inset: 0 0 0 60%; background: url("assets/images/material-bmc.webp") center 45% / cover no-repeat; }
.pm-page-hero--team { min-height: 540px; background: #eef2ed; }
.pm-page-hero--team::before {
  inset: 0 0 0 53%;
  background:
    linear-gradient(90deg, rgba(4, 31, 38, .24), rgba(4, 31, 38, .02)),
    url("assets/images/hero-team.jpg") 62% center / cover no-repeat;
  filter: saturate(.72) contrast(1.06);
}
.pm-page-hero--team::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  bottom: 0;
  left: calc(53% - 18px);
  width: 38px;
  background: var(--pm-lime-500);
  clip-path: polygon(68% 0, 100% 0, 32% 100%, 0 100%);
}
.pm-page-hero--miniature-screw::before { inset: 0 0 0 59%; background: #e2e8e3 url("assets/images/hero-precision-components.webp") 69% center / cover no-repeat; filter: saturate(.65); }
.pm-page-hero--insights::before { inset: 0 0 0 74%; background: var(--pm-teal-700); }
.pm-page-hero--contact::before { inset: 0 0 0 72%; background: var(--pm-navy-900); }
.pm-page-hero--materials .pm-breadcrumb,
.pm-page-hero--industries .pm-breadcrumb,
.pm-page-hero--team .pm-breadcrumb,
.pm-page-hero--insights .pm-breadcrumb,
.pm-page-hero--contact .pm-breadcrumb,
.pm-page-hero--miniature-screw .pm-breadcrumb,
.pm-page-hero--materials .pm-page-index,
.pm-page-hero--industries .pm-page-index,
.pm-page-hero--team .pm-page-index,
.pm-page-hero--insights .pm-page-index,
.pm-page-hero--contact .pm-page-index,
.pm-page-hero--miniature-screw .pm-page-index { color: #738083; }
.pm-page-hero--materials .pm-page-hero-word,
.pm-page-hero--industries .pm-page-hero-word,
.pm-page-hero--team .pm-page-hero-word,
.pm-page-hero--insights .pm-page-hero-word,
.pm-page-hero--contact .pm-page-hero-word,
.pm-page-hero--miniature-screw .pm-page-hero-word { -webkit-text-stroke-color: rgba(23, 82, 78, .15); }
.pm-page-hero--materials .pm-page-hero-grid > p,
.pm-page-hero--industries .pm-page-hero-grid > p,
.pm-page-hero--team .pm-page-hero-grid > p,
.pm-page-hero--insights .pm-page-hero-grid > p,
.pm-page-hero--contact .pm-page-hero-grid > p,
.pm-page-hero--miniature-screw .pm-page-hero-grid > p { color: var(--pm-muted); }
.pm-page-hero--about::before,
.pm-page-hero--process::before { inset: 0 0 0 57%; background: linear-gradient(90deg, var(--pm-navy-900), rgba(16,44,51,.24)), url("assets/images/hero-process.jpg") center / cover no-repeat; }
.pm-page-hero--molding-troubleshooting::before { inset: 0 0 0 54%; background: linear-gradient(90deg, var(--pm-navy-900), rgba(16,44,51,.28)), url("assets/images/case-micro-pneumatic-valve.jpg") center / cover no-repeat; }
.pm-page-hero--cost-down-redesign,
.pm-page-hero--multi-material-parts { color: var(--pm-ink); background: #edf0eb; }
.pm-page-hero--cost-down-redesign::before { inset: 0 0 0 58%; background: url("assets/images/hero-precision-components.webp") 66% center / cover no-repeat; filter: grayscale(.55) saturate(.5); opacity: .84; }
.pm-page-hero--multi-material-parts::before { inset: 0 0 0 60%; background: url("assets/images/material-bmc.webp") center 42% / cover no-repeat; }
:is(.pm-page-hero--cost-down-redesign, .pm-page-hero--multi-material-parts) :is(.pm-breadcrumb, .pm-page-index) { color: #738083; }
:is(.pm-page-hero--cost-down-redesign, .pm-page-hero--multi-material-parts) .pm-page-hero-grid > p { color: var(--pm-muted); }
:is(.pm-page-hero--cost-down-redesign, .pm-page-hero--multi-material-parts) .pm-page-hero-word { -webkit-text-stroke-color: rgba(23, 82, 78, .15); }
.pm-page-hero--case-studies .pm-page-hero-grid { grid-template-columns: .95fr .75fr; }
.pm-page-hero--team .pm-page-hero-grid { grid-template-columns: 1fr; }
.pm-page-hero--insights .pm-page-hero-grid,
.pm-page-hero--contact .pm-page-hero-grid { grid-template-columns: 1.3fr .55fr; }

/* Lists and information architecture */
.pm-local-nav a { padding-block: 15px 13px; border-bottom-width: 2px; font-weight: 650; }
.pm-solution-index, .pm-capability-grid, .pm-topic-grid { gap: 0 48px; border-top: 1px solid var(--pm-line); }
.pm-solution-index a, .pm-capability-grid article, .pm-topic-grid article {
  min-height: 245px;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--pm-line);
  background: transparent;
}
.pm-solution-index b, .pm-capability-grid b, .pm-topic-grid b { color: #7a8789; font-size: .72rem; font-weight: 650; }
.pm-solution-index h3, .pm-capability-grid h3, .pm-topic-grid h3 { margin: 45px 0 10px; }
.pm-solution-index a:hover { transform: none; border-color: var(--pm-teal-700); box-shadow: none; }
.pm-capability-grid article { min-height: 245px; }

.pm-detail-stack { padding: 0; }
.pm-detail-row { grid-template-columns: minmax(180px,.55fr) 1.15fr .85fr; padding-block: 82px; }
.pm-detail-no { color: #a9b6b4; font-size: 1rem; font-weight: 600; }
.pm-detail-row h2 { font-size: clamp(1.9rem, 3vw, 3.2rem); }
.pm-detail-row li::before { content: ""; display: inline-block; width: 12px; height: 1px; margin: 0 12px 4px 0; background: var(--pm-teal-700); }

.pm-process { margin-top: 54px; }
.pm-process::before { background: rgba(255,255,255,.28); }
.pm-process > article::before, .pm-process-step::before { width: 9px; height: 9px; top: 24px; border: 0; border-radius: 0; background: #fff; box-shadow: none; }
.pm-process > article { padding-top: 58px; }
.pm-process > article b { color: rgba(255,255,255,.62); font-weight: 650; }
.pm-process > article p { color: rgba(255,255,255,.62); }
.pm-process-notes { gap: 0 38px; border-top: 1px solid rgba(255,255,255,.20); }
.pm-process-notes article { padding: 28px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.20); }
.pm-process-notes b { color: #fff; }

.pm-principle-grid, .pm-service-pains { gap: 0 42px; border-top: 1px solid var(--pm-line); }
.pm-principle-grid article, .pm-service-pains article { min-height: 215px; padding: 28px 0; border: 0; border-bottom: 1px solid var(--pm-line); background: transparent; }
.pm-principle-grid h3, .pm-service-pains h3 { margin: 42px 0 9px; }
.pm-service-pains b { color: #7a8789; font-size: .72rem; font-weight: 650; }

.pm-question-grid { gap: 0 38px; }
.pm-question-grid article { min-height: 200px; padding: 26px 0; border: 0; border-top: 1px solid rgba(255,255,255,.24); }
.pm-question-grid h3 { margin-top: 38px; }
.pm-question-grid b { color: rgba(255,255,255,.52); }
.pm-question-grid--light article { border-top-color: var(--pm-line); }
.pm-question-grid--light b { color: #7a8789; }

.pm-service-method { gap: 0 38px; border: 0; border-top: 1px solid rgba(255,255,255,.22); }
.pm-service-method article { min-height: 245px; padding: 28px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.pm-service-method span { color: rgba(255,255,255,.54); font-size: .7rem; font-weight: 650; }
.pm-service-method h3 { margin: 45px 0 10px; }

.pm-managed-grid { gap: 44px 30px; }
.pm-managed-card { min-height: 285px; padding: 26px 0; border: 0; border-top: 1px solid var(--pm-line); background: transparent; }
.pm-managed-card:hover { transform: none; border-color: var(--pm-navy-900); box-shadow: none; }
.pm-managed-card > span:not(.pm-managed-thumb) { color: #758184; font-weight: 650; }
.pm-managed-card h3 { margin: 38px 0 12px; }
.pm-managed-thumb { height: 220px; margin: -26px 0 24px; }

.pm-industry-detail-grid { gap: 0; border-top: 1px solid var(--pm-line); }
.pm-industry-detail-grid article { min-height: 350px; padding: 40px; background: var(--pm-navy-900); border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.pm-industry-detail-grid article:nth-child(even) { background: #f0f3ef; color: var(--pm-ink); }
.pm-industry-detail-grid article:nth-child(even) p { color: var(--pm-muted); }

.pm-advantage-grid { gap: 0; border-top: 1px solid var(--pm-line); }
.pm-advantage-grid article,
.pm-advantage-grid article:nth-child(2),
.pm-advantage-grid article:nth-child(3) { min-height: 280px; padding: 34px; color: var(--pm-ink); background: transparent; border: 0; border-right: 1px solid var(--pm-line); border-bottom: 1px solid var(--pm-line); }
.pm-advantage-grid article:nth-child(even) { background: var(--pm-soft); }
.pm-advantage-grid article::after { display: none; }
.pm-advantage-grid span,
.pm-advantage-grid article:nth-child(2) span,
.pm-advantage-grid article:nth-child(3) span { color: #768285; font-weight: 650; }
.pm-advantage-grid h3 { margin: 58px 0 10px; }
.pm-advantage-grid p,
.pm-advantage-grid article:nth-child(2) p,
.pm-advantage-grid article:nth-child(3) p { color: var(--pm-muted); }

/* Advantage + capability hub — reference-led circular system */
.pm-advantage-orbit-section {
  position: relative;
  padding: 112px 0 122px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(20,76,75,.045) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(20,76,75,.045) 50%, transparent 50.1%),
    #f4f6f3;
  background-size: 330px 330px;
  overflow: hidden;
}
.pm-advantage-orbit-section::after {
  content: "ADVANTAGE";
  position: absolute;
  right: -2vw;
  bottom: -1.2vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20,76,75,.075);
  font-size: clamp(7rem, 15vw, 14rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.07em;
}
.pm-advantage-reference-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 9vw, 135px);
  align-items: end;
}
.pm-advantage-reference-heading span { color: var(--pm-teal-700); font-size: .88rem; font-weight: 760; letter-spacing: .045em; }
.pm-advantage-reference-heading h2 { max-width: 610px; margin: 18px 0 0; font-size: clamp(2.3rem, 4.3vw, 4.25rem); line-height: 1.08; letter-spacing: -.05em; }
.pm-advantage-reference-heading > p { max-width: 680px; margin: 0; color: var(--pm-muted); font-size: 1rem; line-height: 1.9; }
.pm-advantage-orbit-stage { position: relative; z-index: 2; width: min(100%, 900px); height: 700px; margin: 58px auto 0; }
.pm-advantage-orbit-track { position: absolute; left: 220px; top: 120px; width: 460px; height: 460px; border: 1px dashed rgba(8,124,120,.34); border-radius: 50%; }
.pm-advantage-orbit-stage article {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 210px;
  aspect-ratio: 1;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(8,124,120,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(7,42,46,.055);
}
.pm-advantage-orbit-stage article::after { content: ""; position: absolute; inset: -9px; border: 1px dashed rgba(8,124,120,.18); border-radius: 50%; }
.pm-advantage-orbit-stage article:nth-of-type(1) { left: 345px; top: 15px; }
.pm-advantage-orbit-stage article:nth-of-type(2) { left: 544px; top: 130px; color: #fff; border-color: var(--pm-teal-700); background: var(--pm-teal-700); }
.pm-advantage-orbit-stage article:nth-of-type(3) { left: 544px; top: 360px; }
.pm-advantage-orbit-stage article:nth-of-type(4) { left: 345px; top: 475px; }
.pm-advantage-orbit-stage article:nth-of-type(5) { left: 146px; top: 360px; }
.pm-advantage-orbit-stage article:nth-of-type(6) { left: 146px; top: 130px; }
.pm-advantage-orbit-stage article > span { color: var(--pm-teal-700); font-size: .7rem; font-weight: 820; letter-spacing: .12em; }
.pm-advantage-orbit-stage article:nth-of-type(2) > span { color: var(--pm-lime-400); }
.pm-advantage-orbit-stage h3 { margin: 13px 0 0; font-size: 1.22rem; }
.pm-advantage-orbit-stage p { max-width: 150px; margin: 9px 0 0; color: #748083; font-size: .75rem; line-height: 1.55; }
.pm-advantage-orbit-stage article:nth-of-type(2) p { color: rgba(255,255,255,.68); }

.pm-advantage-capabilities { padding-top: 116px; }
.pm-advantage-capability-list { margin-top: 62px; border-top: 1px solid var(--pm-line); }
.pm-advantage-capability-list article { display: grid; grid-template-columns: 70px 1.1fr .9fr; gap: clamp(24px, 4.5vw, 68px); padding: 46px 0; border-bottom: 1px solid var(--pm-line); }
.pm-advantage-capability-list article > span { color: var(--pm-teal-700); font-size: .76rem; font-weight: 780; }
.pm-advantage-capability-list h3 { margin: 0 0 13px; font-size: clamp(1.55rem, 2.6vw, 2.35rem); line-height: 1.2; }
.pm-advantage-capability-list p { max-width: 620px; margin: 0; color: var(--pm-muted); }
.pm-advantage-capability-list ul { display: grid; gap: 9px; align-content: start; margin: 0; padding: 0; list-style: none; }
.pm-advantage-capability-list li { position: relative; padding-left: 18px; color: #44545c; font-size: .84rem; }
.pm-advantage-capability-list li::before { content: ""; position: absolute; top: .75em; left: 0; width: 7px; height: 2px; background: var(--pm-lime-500); }
.pm-advantage-solution-links { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 74px; border-top: 1px solid var(--pm-line); border-left: 1px solid var(--pm-line); }
.pm-advantage-solution-links a { display: grid; grid-template-columns: 42px 1fr 20px; gap: 18px; align-items: center; min-height: 92px; padding: 22px 26px; border-right: 1px solid var(--pm-line); border-bottom: 1px solid var(--pm-line); transition: color .2s ease, background .2s ease; }
.pm-advantage-solution-links span { color: #7d898a; font-size: .72rem; }
.pm-advantage-solution-links b { font-size: .96rem; }
.pm-advantage-solution-links i { color: var(--pm-teal-700); font-style: normal; }
.pm-advantage-solution-links a:hover { color: var(--pm-teal-700); background: var(--pm-soft); }

.pm-advantage-service-library { margin-top: 58px; border-top: 1px solid var(--pm-line); }
.pm-advantage-service-library a { display: grid; grid-template-columns: 150px 260px minmax(0, 1fr) auto; gap: 28px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--pm-line); }
.pm-advantage-service-library span { color: var(--pm-teal-700); font-size: .7rem; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.pm-advantage-service-library h3 { margin: 0; font-size: 1.18rem; }
.pm-advantage-service-library p { margin: 0; color: var(--pm-muted); font-size: .83rem; }
.pm-advantage-service-library b { color: var(--pm-teal-700); font-size: .76rem; white-space: nowrap; }
.pm-advantage-evidence > .pm-container > header { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.pm-advantage-evidence > .pm-container > header p { margin: 0; color: rgba(255,255,255,.55); }
.pm-advantage-cert-links { display: flex; gap: 34px; margin-top: 30px; }
.pm-advantage-cert-links a { color: var(--pm-lime-400); font-size: .82rem; font-weight: 700; }

/* People and contact */
.pm-team-directory-section { padding: 112px 0 128px; }
.pm-team-directory { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 74px; align-items: start; }
.pm-team-departments { position: sticky; top: calc(var(--pm-header) + 34px); display: flex; flex-direction: column; padding-top: 6px; }
.admin-bar .pm-team-departments { top: calc(var(--pm-header) + 66px); }
.pm-team-departments b { margin-bottom: 24px; color: var(--pm-ink); font-size: .78rem; letter-spacing: .08em; }
.pm-team-departments a { position: relative; padding: 13px 0; color: #87908f; font-size: .92rem; font-weight: 650; border-bottom: 1px solid var(--pm-line); transition: color .2s ease, padding-left .2s ease; }
.pm-team-departments a::before { content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 2px; background: var(--pm-lime-500); transform: translateY(-50%); transition: width .2s ease; }
.pm-team-departments a:hover, .pm-team-departments a:focus-visible { padding-left: 20px; color: var(--pm-teal-700); }
.pm-team-departments a:hover::before, .pm-team-departments a:focus-visible::before { width: 11px; }
.pm-team-groups { min-width: 0; }
.pm-team-group { scroll-margin-top: calc(var(--pm-header) + 36px); padding: 0 0 70px; margin: 0 0 70px; border-bottom: 1px solid var(--pm-line); }
.pm-team-group:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.pm-team-group > header { display: flex; align-items: baseline; gap: 18px; margin-bottom: 38px; }
.pm-team-group > header span { color: var(--pm-teal-600); font-size: .72rem; font-weight: 750; }
.pm-team-group > header h2 { margin: 0; font-size: clamp(1.55rem, 2.25vw, 2.2rem); letter-spacing: -.02em; }
.pm-team-roster { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 54px 36px; }
.pm-team-person { min-width: 0; }
.pm-team-person-visual { display: grid; place-items: end center; width: min(100%, 230px); aspect-ratio: 1; overflow: hidden; border-radius: 50%; background: #edf2ee; }
.pm-team-person-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.92) contrast(1.02); transition: transform .35s ease; }
.pm-team-person:hover .pm-team-person-visual img { transform: scale(1.025); }
.pm-team-person-placeholder { display: grid; place-items: end center; width: 100%; height: 100%; background: linear-gradient(145deg, #f4f7f4, #e7eeea); }
.pm-team-person-placeholder svg { width: 72%; height: 72%; fill: #cbd8d2; }
.pm-team-person h3 { margin: 24px 0 5px; font-size: 1.32rem; line-height: 1.25; }
.pm-team-person h3 span { position: relative; z-index: 0; display: inline-block; }
.pm-team-person h3 span::after { content: ""; position: absolute; z-index: -1; left: -3px; right: -5px; bottom: 1px; height: 8px; background: rgba(131, 201, 40, .58); transform: skewX(-12deg); }
.pm-team-person-role { margin: 0; color: var(--pm-ink); font-size: .88rem; font-weight: 700; }
.pm-team-person-focus { margin: 12px 0 0; color: #798584; font-size: .78rem; letter-spacing: .025em; }
.pm-team-person-bio { margin-top: 19px; padding-top: 15px; border-top: 1px solid var(--pm-line); }
.pm-team-person-bio summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--pm-teal-700); font-size: .78rem; font-weight: 700; cursor: pointer; list-style: none; }
.pm-team-person-bio summary::-webkit-details-marker { display: none; }
.pm-team-person-bio summary::after { content: "+"; font-size: 1.1rem; font-weight: 400; line-height: 1; }
.pm-team-person-bio[open] summary::after { content: "−"; }
.pm-team-person-bio p { margin: 14px 0 0; color: var(--pm-muted); font-size: .82rem; line-height: 1.75; }
.pm-contact-panel { background: var(--pm-navy-900); }
.pm-contact-panel > span { color: rgba(255,255,255,.56); }

/* Contact / project inquiry: reference-led full banner and split form */
.pm-page-hero--contact {
  min-height: 570px;
  color: #fff;
  background: var(--pm-navy-950);
}
.pm-page-hero--contact::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,19,29,.94) 0%, rgba(7,32,40,.78) 44%, rgba(6,31,39,.18) 100%),
    url("assets/images/hero-precision-components.webp") 68% center / cover no-repeat;
  filter: none;
  opacity: 1;
}
.pm-page-hero--contact .pm-page-hero-grid {
  grid-template-columns: 1fr;
  align-content: end;
  gap: 20px;
  padding-block: 112px 92px;
}
.pm-page-hero--contact .pm-breadcrumb { display: none; }
.pm-page-hero--contact .pm-page-index { display: none; }
.pm-page-hero--contact h1 {
  max-width: 680px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(3.15rem, 6vw, 6rem);
}
.pm-page-hero--contact .pm-page-hero-grid > p {
  max-width: 600px;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
}
.pm-page-hero--contact .pm-page-hero-word {
  right: -1vw;
  bottom: -2vw;
  -webkit-text-stroke-color: rgba(255,255,255,.14);
}
.pm-contact-breadcrumb { border-bottom: 1px solid var(--pm-line); background: #fff; }
.pm-contact-breadcrumb .pm-container { display: flex; gap: 11px; padding-block: 17px; color: #7b878d; font-size: .78rem; }
.pm-contact-breadcrumb a { color: var(--pm-teal-700); }
.pm-inquiry-section { padding-top: 96px; }
.pm-inquiry-heading {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 58px;
}
.pm-inquiry-heading > div > span,
.pm-inquiry-next-heading > span {
  display: block;
  margin-bottom: 16px;
  color: var(--pm-teal-700);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.pm-inquiry-heading h2,
.pm-inquiry-next-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.18;
  letter-spacing: -.04em;
}
.pm-inquiry-heading > p { max-width: 520px; margin: 0; color: var(--pm-muted); font-size: 1.02rem; }
.pm-inquiry-layout { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr); align-items: start; gap: 72px; }
.pm-inquiry-form { padding-top: 38px; border-top: 2px solid var(--pm-ink); }
.pm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 27px 30px; }
.pm-form-field { display: flex; flex-direction: column; gap: 8px; }
.pm-form-field--full { grid-column: 1 / -1; }
.pm-form-field > span { color: #33434b; font-size: .86rem; font-weight: 700; }
.pm-form-field b, .pm-form-consent b { color: #b53c35; }
.pm-form-field input,
.pm-form-field select,
.pm-form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--pm-ink);
  border: 1px solid #cbd5d8;
  border-radius: 0;
  background: #fff;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.pm-form-field textarea { min-height: 170px; resize: vertical; }
.pm-form-field input::placeholder,
.pm-form-field textarea::placeholder { color: #939da1; }
.pm-form-field input:focus,
.pm-form-field select:focus,
.pm-form-field textarea:focus { border-color: var(--pm-teal-700); box-shadow: 0 0 0 3px rgba(8,124,120,.10); }
.pm-file-field { margin-top: 4px; }
.pm-file-field input[type="file"] { min-height: 64px; padding: 14px; background: var(--pm-soft); }
.pm-file-field input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 9px 14px;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: var(--pm-navy-900);
  cursor: pointer;
}
.pm-file-field small,
.pm-form-note { color: #748188; font-size: .78rem; line-height: 1.65; }
.pm-form-consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 25px; color: #4f5e65; font-size: .84rem; cursor: pointer; }
.pm-form-consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 5px; accent-color: var(--pm-teal-700); }
.pm-form-note { margin: 10px 0 26px 28px; }
.pm-form-status { margin: -20px 0 40px; padding: 15px 18px; border-left: 4px solid #b9c4c6; background: #f2f5f5; color: #36464d; }
.pm-form-status--success { border-color: var(--pm-teal-600); background: #edf8f5; }
.pm-form-status--warning { border-color: #d19b30; background: #fff8e9; }
.pm-form-status--error { border-color: #bd514a; background: #fff1f0; }
.pm-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.pm-inquiry-aside { color: #fff; background: var(--pm-navy-900); }
.pm-inquiry-contact { padding: 46px 42px 40px; }
.pm-inquiry-contact > span { color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pm-inquiry-contact h3 { margin: 0 0 20px; font-size: 1.65rem; }
.pm-inquiry-contact a { display: inline-block; color: var(--pm-lime-400); font-weight: 700; border-bottom: 1px solid rgba(155,221,56,.5); }
.pm-inquiry-contact-links { display: grid; justify-items: start; gap: 12px; }
.pm-inquiry-contact .pm-inquiry-map { margin-top: 15px; color: rgba(255,255,255,.76); border-bottom: 0; }
.pm-inquiry-contact address { margin: 0; color: inherit; font-style: normal; font-weight: 500; }
.pm-inquiry-map small { display: block; margin-top: 9px; color: var(--pm-lime-400); font-size: .75rem; font-weight: 700; }
.pm-inquiry-prep { padding: 34px 42px; border-top: 1px solid rgba(255,255,255,.16); background: #0d303d; }
.pm-inquiry-prep h3 { margin: 0 0 18px; font-size: 1.05rem; }
.pm-inquiry-prep ul { margin: 0; padding: 0; list-style: none; }
.pm-inquiry-prep li { position: relative; padding: 8px 0 8px 20px; color: rgba(255,255,255,.7); font-size: .88rem; }
.pm-inquiry-prep li::before { content: ""; position: absolute; top: 20px; left: 0; width: 9px; height: 1px; background: var(--pm-lime-400); }
.pm-inquiry-confidential { margin: 0; padding: 30px 42px 38px; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.pm-inquiry-next { background: var(--pm-soft); }
.pm-inquiry-next-heading { display: block; }
.pm-inquiry-next-heading > span { margin-top: 12px; }
.pm-inquiry-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 62px; border-top: 1px solid #bdc9cb; }
.pm-inquiry-next-grid article { min-height: 245px; padding: 28px 38px 28px 0; border-bottom: 1px solid #bdc9cb; }
.pm-inquiry-next-grid article + article { padding-left: 38px; border-left: 1px solid #bdc9cb; }
.pm-inquiry-next-grid b { color: var(--pm-teal-700); font-size: .76rem; letter-spacing: .1em; }
.pm-inquiry-next-grid h3 { margin: 50px 0 9px; font-size: 1.3rem; }
.pm-inquiry-next-grid p { margin: 0; color: var(--pm-muted); font-size: .9rem; }

/* Knowledge overview and article */
.pm-knowledge-tabs { border-top: 1px solid var(--pm-line); border-bottom: 1px solid var(--pm-line); }
.pm-knowledge-tabs a { padding-block: 20px; }
.pm-knowledge-tabs a + a::before { display: none; }
.pm-knowledge-card { border-radius: 0; border: 0; background: transparent; }
.pm-knowledge-cover { border: 0; }
.pm-knowledge-placeholder { background: var(--pm-navy-900); }
.pm-knowledge-placeholder::before, .pm-knowledge-placeholder i { display: none; }
.pm-knowledge-placeholder b { color: rgba(255,255,255,.74); letter-spacing: .12em; }
.pm-knowledge-card-body { padding-inline: 0; }
.pm-insight-banner { min-height: 570px; background: var(--pm-navy-900); }
.pm-insight-banner::after { display: none; }
.pm-article-placeholder { background: var(--pm-navy-900); }
.pm-article-placeholder i { display: none; }
.pm-article-prose h2::before { display: none; }
.pm-article-keypoints { border-radius: 0; background: var(--pm-soft); }

/* Footer */
.pm-footer-cta { padding: 70px 0; background: linear-gradient(100deg, #071b22 0%, #10363d 58%, #0a262d 100%); }
.pm-footer-cta h2 { max-width: 720px; font-weight: 650; }
.pm-site-footer { background: #08181c; }

@media (max-width: 1080px) {
  :root { --pm-header: 74px; }
  .pm-container { width: min(calc(100% - 48px), var(--pm-container)); }
  .pm-page-hero::before { inset: 0 0 0 64%; opacity: .62; }
  .pm-page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .pm-page-hero-grid > p { max-width: 650px; }
  .pm-detail-row { grid-template-columns: 60px 1fr; }
  .pm-portal-grid { gap: 0 38px; }
  .pm-page-hero--contact::before { inset: 0; opacity: 1; }
  .pm-page-hero--contact .pm-page-hero-grid { grid-template-columns: 1fr; }
  .pm-inquiry-heading { gap: 52px; }
  .pm-inquiry-layout { grid-template-columns: 1fr; gap: 52px; }
  .pm-inquiry-aside { display: grid; grid-template-columns: 1fr 1fr; }
  .pm-inquiry-confidential { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .pm-container { width: min(calc(100% - 36px), var(--pm-container)); }
  .pm-section { padding: 76px 0; }
  .pm-hero { min-height: 720px; background-position: 66% center; }
  .pm-hero::before { background: rgba(5,19,24,.82); }
  .pm-hero-inner { padding: 74px 0 54px; }
  .pm-hero h1 { font-size: clamp(2.45rem, 11vw, 3.65rem); }
  .pm-hero-text { max-width: 520px; }
  .pm-hero-facts { margin-top: 36px; }
  .pm-section-heading-row { gap: 24px; }
  .pm-portal-grid { grid-template-columns: 1fr; gap: 0; margin-top: 46px; }
  .pm-portal-card, .pm-portal-card:nth-child(odd) { min-height: 205px; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--pm-line); }
  .pm-portal-card h3 { margin-top: 26px; }
  .pm-portal-card b { bottom: 28px; }
  .pm-featured-case .pm-case-summary { min-height: 330px; }
  .pm-case-highlight { padding: 34px 28px; }
  .pm-industry-strip { gap: 0; }
  .pm-industry-strip a { min-height: 180px; }
  .pm-insight-grid { gap: 0; }
  .pm-insight-card { min-height: 235px; padding-right: 0; }
  .pm-page-hero { min-height: 520px; }
  .pm-page-hero::before { inset: auto 0 0; width: 100%; height: 42%; opacity: .26; }
  .pm-page-hero--materials::before,
  .pm-page-hero--industries::before,
  .pm-page-hero--team::before,
  .pm-page-hero--miniature-screw::before { opacity: .12; }
  .pm-page-hero--insights::before { height: 10px; opacity: 1; }
  .pm-page-hero--contact::before { height: 100%; opacity: 1; }
  .pm-page-hero-grid { padding-block: 66px; }
  .pm-breadcrumb { margin-bottom: 34px; }
  .pm-page-hero h1 { font-size: clamp(2.35rem, 10.5vw, 3.5rem); }
  .pm-detail-row { grid-template-columns: 1fr; }
  .pm-detail-no { font-size: .78rem; }
  .pm-process { gap: 26px 0; }
  .pm-process > article { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.20); }
  .pm-process > article::before { display: none; }
  .pm-process-notes, .pm-service-method, .pm-question-grid { gap: 0; }
  .pm-team-profile { min-height: 0; }
  .pm-team-portrait { min-height: 420px; }
  .pm-team-copy { padding: 34px 28px; }
  .pm-footer-cta { background-position: 60% center; }
  .pm-page-hero--contact { min-height: 560px; }
  .pm-page-hero--contact::before {
    inset: 0;
    width: 100%;
    background:
      linear-gradient(90deg, rgba(5,19,29,.94), rgba(7,32,40,.64)),
      url("assets/images/hero-precision-components.webp") 68% center / cover no-repeat;
  }
  .pm-page-hero--contact .pm-page-hero-grid { gap: 16px; padding-block: 80px 68px; }
  .pm-page-hero--contact .pm-page-hero-word { bottom: -12px; font-size: 22vw; }
  .pm-inquiry-section { padding-top: 72px; }
  .pm-inquiry-heading,
  .pm-inquiry-layout,
  .pm-inquiry-next-heading { grid-template-columns: 1fr; gap: 24px; }
  .pm-inquiry-heading { margin-bottom: 44px; }
  .pm-inquiry-layout { gap: 48px; }
  .pm-form-grid { grid-template-columns: 1fr; gap: 23px; }
  .pm-form-field--full { grid-column: auto; }
  .pm-inquiry-aside { max-width: none; }
  .pm-inquiry-aside { display: block; }
  .pm-inquiry-next-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .pm-inquiry-next-grid article { min-height: 0; padding: 26px 0 30px; }
  .pm-inquiry-next-grid article + article { padding-left: 0; border-left: 0; }
  .pm-inquiry-next-grid h3 { margin-top: 24px; }
}

@media (max-width: 480px) {
  .pm-hero { min-height: 760px; }
  .pm-hero-fact { padding-top: 14px; }
  .pm-case-highlight { grid-template-columns: 1fr; }
  .pm-case-highlight > div + div { padding-left: 0; border-left: 0; }
  .pm-footer-cta h2 { font-size: 1.8rem; }
  .pm-page-hero--contact h1 { font-size: 3.15rem; }
  .pm-page-hero--contact .pm-page-hero-grid > p { font-size: .96rem; }
  .pm-inquiry-contact,
  .pm-inquiry-prep,
  .pm-inquiry-confidential { padding-right: 28px; padding-left: 28px; }
}

/* Keep the case banner composition authoritative after shared inner-page rules. */
.pm-page-hero.pm-page-hero--case-studies {
  min-height: 470px;
  color: #fff;
  background: #102c33;
}
.pm-page-hero.pm-page-hero--case-studies::before {
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(9, 32, 38, .92) 0%, rgba(9, 32, 38, .66) 48%, rgba(9, 32, 38, .22) 100%),
    url("assets/images/hero-precision-components.webp") 68% center / cover no-repeat;
}
.pm-page-hero--case-studies .pm-page-hero-grid {
  display: block;
  padding-top: 188px;
  padding-bottom: 84px;
}
.pm-page-hero--case-studies .pm-page-hero-grid > p { color: rgba(255,255,255,.86); }

@media (max-width: 760px) {
  .pm-page-hero.pm-page-hero--case-studies { min-height: 430px; }
  .pm-page-hero.pm-page-hero--case-studies::before { inset: 0; width: auto; height: auto; opacity: 1; }
  .pm-page-hero--case-studies .pm-page-hero-grid { padding-top: 150px; padding-bottom: 64px; }
}

.pm-case-card-media > img.pm-case-library-image {
  object-fit: contain;
  padding: 24px;
  background: #fff;
}
.pm-structured-image--case {
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--pm-line);
}
.pm-structured-image--case img { max-height: 520px; object-fit: contain; }

/* Materials — clean catalog and independent material profiles */
.pm-page-materials .pm-page-hero { min-height: 440px; }
.pm-page-hero--materials .pm-page-hero-grid { grid-template-columns: 1fr; gap: 22px; }
.pm-page-hero--materials .pm-page-hero-grid > p { max-width: 52%; }
.pm-material-catalog { padding: 96px 0 118px; background: #fff; }
.pm-material-catalog-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; padding-bottom: 34px; border-bottom: 1px solid var(--pm-line); }
.pm-material-catalog-head h2 { margin: 0; font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: 1.15; letter-spacing: -.04em; }
.pm-material-catalog-head p { max-width: 450px; margin: 0; color: var(--pm-muted); }
.pm-material-family-row { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 56px; padding: 64px 0; border-bottom: 1px solid var(--pm-line); scroll-margin-top: calc(var(--pm-header) + 24px); }
.pm-material-family-row > header > span,
.pm-material-category-only section > span { color: var(--pm-teal-700); font-size: .74rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.pm-material-family-row > header h3,
.pm-material-category-only h3 { margin: 12px 0 0; font-size: 1.6rem; line-height: 1.3; }
.pm-material-item-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; background: var(--pm-line); border: 1px solid var(--pm-line); }
.pm-material-item { position: relative; display: flex; flex-direction: column; min-height: 300px; background: #fff; overflow: hidden; }
.pm-material-item-media { display: grid; min-height: 138px; place-items: center; background: #f2f5f3; overflow: hidden; }
.pm-material-item-media b { color: transparent; -webkit-text-stroke: 1px rgba(9,80,78,.28); font-size: clamp(2.25rem,4vw,4.6rem); line-height: 1; letter-spacing: -.07em; white-space: nowrap; }
.pm-material-item-media img { width: 100%; height: 138px; object-fit: cover; transition: transform .45s ease; }
.pm-material-item-copy { position: relative; display: flex; flex: 1; flex-direction: column; padding: 24px 24px 26px; }
.pm-material-item-copy small { color: var(--pm-muted); font-size: .72rem; }
.pm-material-item-copy strong { margin-top: 9px; font-size: 1.25rem; line-height: 1.3; }
.pm-material-item-copy em { margin-top: 9px; padding-right: 28px; color: var(--pm-muted); font-size: .86rem; font-style: normal; }
.pm-material-item-copy i { position: absolute; right: 24px; bottom: 23px; color: var(--pm-teal-700); font-size: 1.15rem; font-style: normal; transition: transform .25s ease; }
.pm-material-item:hover .pm-material-item-media img { transform: scale(1.04); }
.pm-material-item:hover .pm-material-item-copy i { transform: translateX(5px); }
.pm-material-family-row#thermoset .pm-material-item-grid { grid-template-columns: 1fr; background: #fff; }
.pm-material-family-row#thermoset .pm-material-item { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 290px; }
.pm-material-family-row#thermoset .pm-material-item-media { min-height: 290px; }
.pm-material-family-row#thermoset .pm-material-item-media img { height: 290px; }
.pm-material-category-only { display: grid; grid-template-columns: 240px 1fr 1fr; gap: 0 56px; padding-top: 64px; }
.pm-material-category-only::before { content: "其他材料"; padding-top: 2px; color: var(--pm-muted); font-size: .86rem; font-weight: 700; }
.pm-material-category-only section { min-height: 180px; padding: 0 0 30px; border-bottom: 1px solid var(--pm-line); scroll-margin-top: calc(var(--pm-header) + 24px); }
.pm-material-category-only p { margin: 28px 0 8px; color: var(--pm-ink); font-weight: 650; }
.pm-material-category-only small { color: var(--pm-muted); }

.pm-page-hero--material { min-height: 450px; }
.pm-material-category-nav { position: relative; z-index: 8; background: #fff; border-bottom: 1px solid var(--pm-line); }
.pm-material-category-nav .pm-container { display: flex; gap: 36px; overflow-x: auto; }
.pm-material-category-nav a { flex: 0 0 auto; padding: 18px 0 15px; border-bottom: 2px solid transparent; color: var(--pm-muted); font-size: .9rem; font-weight: 650; }
.pm-material-category-nav a:hover { color: var(--pm-teal-700); border-bottom-color: var(--pm-teal-700); }
.pm-material-profile { padding: 92px 0 104px; }
.pm-material-profile-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.82fr); gap: 82px; align-items: start; }
.pm-material-gallery-main,
.pm-material-code-visual { margin: 0; background: #f1f4f2; }
.pm-material-gallery-main { display: grid; min-height: 500px; place-items: center; overflow: hidden; }
.pm-material-gallery-main img { width: 100%; height: 560px; object-fit: contain; }
.pm-material-gallery-thumbs { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 14px; }
.pm-material-gallery-thumbs figure { margin: 0; background: #f1f4f2; overflow: hidden; }
.pm-material-gallery-thumbs img { width: 100%; height: 220px; object-fit: cover; }
.pm-material-code-visual { display: flex; min-height: 500px; flex-direction: column; justify-content: space-between; padding: 42px; background: linear-gradient(145deg,#edf3f0 0%,#f9faf8 58%,#dfe9e5 100%); }
.pm-material-code-visual span { color: var(--pm-teal-700); font-size: .72rem; font-weight: 750; letter-spacing: .12em; }
.pm-material-code-visual strong { color: transparent; -webkit-text-stroke: 1px rgba(9,80,78,.38); font-size: clamp(4rem,8vw,8.8rem); line-height: .9; letter-spacing: -.08em; word-break: break-word; }
.pm-material-profile-copy { padding-top: 22px; }
.pm-material-profile-copy > span { color: var(--pm-teal-700); font-size: .78rem; font-weight: 750; letter-spacing: .08em; }
.pm-material-profile-copy h2 { margin: 22px 0 32px; font-size: clamp(2.5rem,4.3vw,4.8rem); line-height: 1; letter-spacing: -.055em; }
.pm-material-profile-copy .pm-rich-content { color: var(--pm-muted); font-size: 1.06rem; }
.pm-material-profile-copy .pm-rich-content p:first-child { margin-top: 0; }
.pm-material-line-button { margin-top: 34px; }
.pm-material-detail { padding: 0 0 108px; }
.pm-material-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 54px; border-top: 1px solid var(--pm-line); }
.pm-material-detail-grid > section { padding: 38px 0 22px; border-bottom: 1px solid var(--pm-line); }
.pm-material-detail-grid h2 { margin: 0 0 28px; font-size: 1.3rem; }
.pm-material-detail-grid ul { margin: 0; padding: 0; list-style: none; }
.pm-material-detail-grid li { padding: 9px 0; color: var(--pm-muted); border-bottom: 1px solid rgba(220,229,232,.7); }
.pm-material-detail-grid p { margin: 0 0 18px; color: var(--pm-muted); }
.pm-material-detail-grid small { color: #7d888c; }
.pm-material-line-cta { padding: 66px 0; color: #fff; background: var(--pm-navy-900); }
.pm-material-line-cta .pm-container { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.pm-material-line-cta h2 { margin: 0; font-size: clamp(1.8rem,3vw,3rem); }
.pm-material-line-cta p { margin: 8px 0 0; color: rgba(255,255,255,.67); }

@media (max-width: 980px) {
  .pm-material-family-row { grid-template-columns: 180px minmax(0,1fr); gap: 34px; }
  .pm-material-item-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pm-material-category-only { grid-template-columns: 180px 1fr 1fr; gap: 0 34px; }
  .pm-material-profile-grid { grid-template-columns: 1fr; gap: 48px; }
  .pm-material-gallery-main img { height: min(62vw,560px); }
}

@media (max-width: 760px) {
  .pm-page-materials .pm-page-hero { min-height: 390px; }
  .pm-page-hero--materials .pm-page-hero-grid > p { max-width: 100%; }
  .pm-material-catalog { padding: 66px 0 82px; }
  .pm-material-catalog-head { display: block; }
  .pm-material-catalog-head p { margin-top: 16px; }
  .pm-material-family-row { grid-template-columns: 1fr; gap: 26px; padding: 50px 0; }
  .pm-material-family-row > header { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
  .pm-material-family-row > header h3 { margin-top: 0; }
  .pm-material-family-row#thermoset .pm-material-item { grid-template-columns: 1fr; }
  .pm-material-family-row#thermoset .pm-material-item-media,
  .pm-material-family-row#thermoset .pm-material-item-media img { min-height: 210px; height: 210px; }
  .pm-material-category-only { grid-template-columns: 1fr; gap: 34px; padding-top: 50px; }
  .pm-material-category-only::before { padding: 0; }
  .pm-material-category-only section { min-height: 150px; }
  .pm-material-category-nav .pm-container { gap: 26px; }
  .pm-material-profile { padding: 66px 0 76px; }
  .pm-material-gallery-main { min-height: 340px; }
  .pm-material-gallery-main img { height: 380px; }
  .pm-material-code-visual { min-height: 380px; padding: 28px; }
  .pm-material-gallery-thumbs img { height: 160px; }
  .pm-material-profile-copy { padding-top: 0; }
  .pm-material-detail { padding-bottom: 76px; }
  .pm-material-detail-grid { grid-template-columns: 1fr; }
  .pm-material-line-cta .pm-container { display: grid; }
}

@media (max-width: 480px) {
  .pm-material-item-grid { grid-template-columns: 1fr; }
  .pm-material-item { min-height: 270px; }
  .pm-material-gallery-thumbs { grid-template-columns: 1fr; }
}

/* Team hero — full-width manufacturing image */
.pm-page-hero.pm-page-hero--team {
  min-height: 610px;
  color: #fff;
  background: var(--pm-navy-950);
}
.pm-page-hero.pm-page-hero--team::before {
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
  filter: saturate(.74) contrast(1.08);
  background:
    linear-gradient(90deg, rgba(4, 24, 31, .93) 0%, rgba(4, 27, 34, .76) 42%, rgba(4, 27, 34, .22) 100%),
    url("assets/images/hero-team.jpg") center 55% / cover no-repeat;
}
.pm-page-hero.pm-page-hero--team::after {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, var(--pm-lime-500), var(--pm-cyan-500), transparent 75%);
  clip-path: none;
}
.pm-page-hero--team .pm-page-hero-grid { display: block; padding-top: 190px; padding-bottom: 92px; }
.pm-page-hero--team .pm-breadcrumb { color: rgba(255,255,255,.66); }
.pm-page-hero--team .pm-page-index { color: var(--pm-lime-400); }
.pm-page-hero--team .pm-page-hero-word { -webkit-text-stroke-color: rgba(255,255,255,.12); }

@media (max-width: 760px) {
  .pm-page-hero.pm-page-hero--team { min-height: 500px; }
  .pm-page-hero.pm-page-hero--team::before {
    background:
      linear-gradient(90deg, rgba(4,24,31,.92), rgba(4,27,34,.55)),
      url("assets/images/hero-team.jpg") 62% center / cover no-repeat;
  }
  .pm-page-hero--team .pm-page-hero-grid { padding-top: 144px; padding-bottom: 64px; }
}

/* Cooperation process — injection-runner inspired system diagram */
.pm-process-system {
  position: relative;
  overflow: hidden;
  padding: 96px 0 82px;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    repeating-linear-gradient(60deg, rgba(18,83,80,.08) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(-60deg, rgba(18,83,80,.08) 0 1px, transparent 1px 30px),
    #f5f7f4;
}
.pm-process-system::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(20,97,92,.08);
  transform: rotate(45deg);
}
.pm-process-system-heading {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pm-process-system-heading h2 {
  margin: 0;
  color: var(--pm-ink);
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  line-height: 1.16;
  letter-spacing: -.045em;
}
.pm-process-system-heading h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin: 23px auto 25px;
  background: linear-gradient(90deg, var(--pm-teal-700) 0 64%, var(--pm-lime-500) 64%);
}
.pm-process-system-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--pm-muted);
  font-size: 1rem;
  line-height: 1.9;
}
.pm-injection-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.65vw, 24px);
  min-height: 590px;
  margin-top: 40px;
  padding: 205px 104px 190px;
}
.pm-injection-flow-line {
  position: absolute;
  top: calc(50% - 3px);
  right: 46px;
  left: 82px;
  height: 7px;
  border: 1px solid rgba(9,83,86,.22);
  background: linear-gradient(90deg, #16899b, #0aaeb5 48%, #167067 76%, #83c53b);
  box-shadow: inset 0 1px rgba(255,255,255,.58), 0 4px 12px rgba(11,91,91,.10);
}
.pm-injection-flow-line::before,
.pm-injection-flow-line::after {
  display: none;
}
.pm-injection-stage {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
}
.pm-injection-stage::before,
.pm-injection-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--pm-teal-600);
  box-shadow: 0 0 0 2px var(--pm-teal-600);
  transform: translateY(-50%);
  display: none;
}
.pm-injection-stage::before { left: -7px; }
.pm-injection-stage::after { right: -7px; }
.pm-injection-stage-box {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 164px;
  flex-direction: column;
  justify-content: center;
  padding: 25px 22px 24px;
  color: #fff;
  background: var(--pm-navy-900);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  box-shadow: 0 18px 32px rgba(10,40,47,.14);
}
.pm-injection-stage:nth-of-type(even) .pm-injection-stage-box { background: #0b7f81; }
.pm-injection-stage--core .pm-injection-stage-box { background: #08aeb6; }
.pm-injection-stage-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--pm-lime-500);
}
.pm-injection-stage-box b {
  color: rgba(255,255,255,.65);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.pm-injection-stage-box h3 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}
.pm-injection-stage-box p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  line-height: 1.55;
}
.pm-flow-tag {
  position: absolute;
  left: 50%;
  z-index: 1;
  display: grid;
  min-height: 46px;
  width: max-content;
  max-width: 175px;
  place-items: center;
  padding: 9px 16px;
  color: #2f4146;
  background: #fff;
  border: 1px solid rgba(15,90,89,.12);
  border-radius: 24px;
  box-shadow: 0 9px 26px rgba(18,52,57,.09);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transform: translateX(-50%);
}
.pm-flow-tag::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 70px;
  background: #17a5aa;
  transform: translateX(-50%);
}
.pm-flow-tag::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #17a5aa;
  box-shadow: 0 0 0 2px #17a5aa;
  transform: translateX(-50%);
}
.pm-flow-tag--top { bottom: calc(100% + 78px); }
.pm-flow-tag--top::before { top: 100%; }
.pm-flow-tag--top::after { top: calc(100% + 64px); }
.pm-flow-tag--bottom { top: calc(100% + 78px); }
.pm-flow-tag--bottom::before { bottom: 100%; }
.pm-flow-tag--bottom::after { bottom: calc(100% + 64px); }
.pm-injection-flow-feed,
.pm-injection-flow-output {
  position: absolute;
  z-index: 5;
  top: calc(50% - 59px);
  display: flex;
  width: 92px;
  height: 118px;
  align-items: center;
  justify-content: center;
  color: var(--pm-teal-700);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  pointer-events: none;
}
.pm-injection-flow-feed { left: 0; }
.pm-injection-flow-output { right: 0; }
.pm-injection-flow-feed i {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--pm-lime-500);
  box-shadow: 0 0 0 4px rgba(131,197,59,.18), 0 3px 10px rgba(8,94,94,.28);
  offset-path: path("M45 59 C50 38 70 38 75 50 C78 56 82 59 90 59");
  offset-distance: 0%;
  offset-rotate: 0deg;
  animation: pm-flow-input 2.8s cubic-bezier(.45,0,.2,1) infinite;
}
.pm-injection-flow-feed::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 14px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.34) 0 18%, rgba(0,174,239,.15) 38%, transparent 72%);
  opacity: 0;
  transform: scale(.68);
  animation: pm-flow-bulb-glow 2.8s ease-in-out infinite;
}
.pm-flow-bulb {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 23px;
  width: 46px;
  height: 46px;
  color: var(--pm-lime-500);
  stroke: currentColor;
  filter: drop-shadow(0 5px 9px rgba(131,201,40,.14));
  animation: pm-flow-bulb-light 2.8s ease-in-out infinite;
}
.pm-injection-flow-feed::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 56px;
  left: 68px;
  width: 22px;
  height: 7px;
  border: 1px solid rgba(9,83,86,.22);
  border-right-width: 0;
  border-left-width: 0;
  background: #16899b;
  box-shadow: inset 0 1px rgba(255,255,255,.58), 0 4px 12px rgba(11,91,91,.10);
}
.pm-injection-flow-feed b,
.pm-injection-flow-output b {
  position: absolute;
  bottom: 0;
  white-space: nowrap;
}
.pm-injection-flow-output img {
  position: absolute;
  top: 17px;
  left: 5px;
  width: 82px;
  height: 70px;
  object-fit: cover;
  object-position: center;
  border: 4px solid #fff;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18,52,57,.13), 0 0 0 4px rgba(131,201,40,.16);
}
@keyframes pm-flow-input {
  0%, 43% { offset-distance: 0%; opacity: 0; transform: scale(.7); }
  50% { opacity: 1; }
  88% { opacity: 1; transform: scale(1); }
  100% { offset-distance: 100%; opacity: 0; transform: scale(.75); }
}
@keyframes pm-flow-bulb-light {
  0%, 14%, 72%, 100% { color: var(--pm-lime-500); filter: drop-shadow(0 5px 9px rgba(131,201,40,.14)); }
  28%, 48% { color: var(--pm-logo-blue); filter: drop-shadow(0 0 5px rgba(0,174,239,.82)) drop-shadow(0 0 15px rgba(0,174,239,.46)); }
}
@keyframes pm-flow-bulb-glow {
  0%, 14%, 64%, 100% { opacity: 0; transform: scale(.68); }
  28%, 47% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .pm-injection-flow-feed i { animation: none; offset-distance: 100%; opacity: 1; }
  .pm-flow-bulb { animation: none; }
  .pm-injection-flow-feed::before { animation: none; opacity: .55; transform: scale(1); }
}
@media (max-width: 1080px) {
  .pm-injection-flow { gap: 12px; padding-right: 92px; padding-left: 92px; }
  .pm-injection-stage-box { min-height: 154px; padding-inline: 15px; }
  .pm-flow-tag { max-width: 145px; padding-inline: 11px; }
}

@media (max-width: 900px) {
  .pm-process-system { padding: 72px 0; }
  .pm-process-system-heading { text-align: left; }
  .pm-process-system-heading h2::after { margin-right: 0; margin-left: 0; }
  .pm-process-system-heading p { margin-left: 0; }
  .pm-injection-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    margin-top: 48px;
    padding: 55px 0 60px 48px;
  }
  .pm-injection-flow-line {
    top: 54px;
    right: auto;
    bottom: 0;
    left: 17px;
    width: 6px;
    height: auto;
    background: linear-gradient(180deg, #16899b, #0aaeb5 48%, #167067 76%, #83c53b);
  }
  .pm-injection-flow-line::before,
  .pm-injection-flow-line::after { display: none; }
  .pm-injection-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .pm-injection-stage::before {
    top: 50%;
    left: -37px;
  }
  .pm-injection-stage::after { display: none; }
  .pm-injection-stage-box {
    grid-column: 1 / -1;
    min-height: 145px;
    padding: 24px 22px;
  }
  .pm-flow-tag {
    position: static;
    min-height: 42px;
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    font-size: .7rem;
    transform: none;
  }
  .pm-flow-tag::before,
  .pm-flow-tag::after { display: none; }
  .pm-flow-tag--top,
  .pm-flow-tag--bottom { inset: auto; }
  .pm-injection-flow-feed,
  .pm-injection-flow-output {
    top: auto;
    right: auto;
    left: -20px;
    width: 74px;
    height: 52px;
  }
  .pm-injection-flow-feed { top: 0; }
  .pm-injection-flow-output { top: auto; bottom: 0; }
  .pm-injection-flow-feed::before {
    top: 2px;
    left: 14px;
    width: 50px;
    height: 50px;
  }
  .pm-flow-bulb {
    top: 8px;
    left: 23px;
    width: 33px;
    height: 33px;
  }
  .pm-injection-flow-feed i {
    top: 0;
    left: 0;
    width: 9px;
    height: 9px;
    offset-path: path("M39 26 C53 28 53 42 43 45 C39 47 39 51 39 55");
  }
  .pm-injection-flow-feed::after {
    top: 39px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-width: 0 1px;
    background: #16899b;
  }
  .pm-injection-flow-feed b,
  .pm-injection-flow-output b { display: none; }
  .pm-injection-flow-output img {
    top: 5px;
    left: 18px;
    width: 40px;
    height: 40px;
    border-width: 3px;
    border-radius: 7px;
    box-shadow: 0 6px 16px rgba(18,52,57,.12), 0 0 0 3px rgba(131,201,40,.16);
  }
}

/* Case detail: contained media and editorial story layout. */
.pm-case-article-page { background: #fff; }
.pm-case-article-banner {
  position: relative;
  min-height: 330px;
  padding: 72px 0 48px;
  overflow: hidden;
  background: #f2f5f2;
}
.pm-case-article-banner .pm-container { position: relative; z-index: 1; }
.pm-case-article-banner .pm-case-article-banner-title {
  margin: 8px 0 16px;
  color: var(--pm-navy-900);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.pm-case-article-banner > .pm-container > i {
  display: block;
  width: 66px;
  height: 3px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--pm-teal-600) 0 68%, var(--pm-lime-500) 68%);
}
.pm-case-article-banner p { margin: 0; color: #5f6f73; font-size: 1.05rem; }
.pm-case-article-banner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  color: #7a878a;
  font-size: .76rem;
}
.pm-case-article-banner nav a:hover { color: var(--pm-teal-700); }
.pm-case-article-outline {
  position: absolute;
  top: -18px;
  right: -15px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 124, 120, .12);
  font-size: clamp(9rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.pm-case-article-shell { padding: 86px 0 110px; background: #f7f8f6; }
.pm-case-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(54px, 7vw, 94px);
  align-items: start;
}
.pm-case-article-main { min-width: 0; }
.pm-case-article-header { margin-bottom: 34px; }
.pm-case-article-header > div { display: flex; align-items: center; gap: 24px; color: #718083; font-size: .78rem; }
.pm-case-article-header > div span { color: var(--pm-teal-700); font-weight: 750; }
.pm-case-article-header h1 {
  margin: 15px 0 0;
  color: var(--pm-navy-900);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.25;
  letter-spacing: -.035em;
}
.pm-case-article-media {
  display: grid;
  min-height: 470px;
  margin: 0;
  place-items: center;
  padding: clamp(24px, 4vw, 54px);
  background: #e9efeb;
  overflow: hidden;
}
.pm-case-article-media img {
  width: 100%;
  max-height: 570px;
  object-fit: contain;
  object-position: center;
}
.pm-case-article-media--logo {
  min-height: 310px;
  background: #e8eeeb;
}
.pm-case-article-media--logo img {
  width: min(28%, 143px);
  max-height: none;
}
.pm-case-article-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 12px 0 0;
  border-bottom: 1px solid #d7dfdc;
}
.pm-case-article-specs > div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  padding: 19px 22px 19px 0;
  border-top: 1px solid #d7dfdc;
}
.pm-case-article-specs > div:nth-child(even) { padding-left: 24px; border-left: 1px solid #d7dfdc; }
.pm-case-article-specs dt { color: #718083; font-size: .76rem; }
.pm-case-article-specs dd { margin: 0; color: var(--pm-navy-900); font-size: .88rem; font-weight: 680; }
.pm-case-story { padding-top: 56px; }
.pm-case-story > section,
.pm-case-story-extra { margin-top: 48px; }
.pm-case-story > section:first-child { margin-top: 0; }
.pm-case-story h2,
.pm-case-story-extra h2 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 14px;
  color: var(--pm-navy-900);
  border-bottom: 1px solid #d7dfdc;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.35;
}
.pm-case-story h2::after,
.pm-case-story-extra h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--pm-teal-600);
}
.pm-case-story p,
.pm-case-story-extra { margin-bottom: 0; color: #4d5d62; line-height: 2; }
.pm-case-story-extra img { margin-block: 32px; }
.pm-case-article-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid #cbd6d2;
  border-bottom: 1px solid #cbd6d2;
}
.pm-case-article-results > div { padding: 28px 24px 28px 0; }
.pm-case-article-results > div + div { padding-left: 24px; border-left: 1px solid #cbd6d2; }
.pm-case-article-results b { display: block; color: var(--pm-teal-700); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.15; }
.pm-case-article-results span { display: block; margin-top: 7px; color: #748184; font-size: .78rem; }
.pm-case-related { position: sticky; top: calc(var(--pm-header) + 34px); }
.admin-bar .pm-case-related { top: calc(var(--pm-header) + 66px); }
.pm-case-related > h2 {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccd6d2;
  font-size: 1.45rem;
}
.pm-case-related > a:not(.pm-case-related-all) {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #d7dfdc;
}
.pm-case-related figure { display: grid; height: 82px; margin: 0; place-items: center; background: #e6ece8; overflow: hidden; }
.pm-case-related figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.pm-case-related figure img.is-logo { width: 76%; height: 76%; object-fit: contain; }
.pm-case-related h3 { margin: 0; font-size: .9rem; line-height: 1.55; }
.pm-case-related p { margin: 6px 0 0; color: #758184; font-size: .72rem; line-height: 1.6; }
.pm-case-related > a:hover figure img { transform: scale(1.035); }
.pm-case-related > a:hover h3 { color: var(--pm-teal-700); }
.pm-case-related-all { display: inline-flex; align-items: center; margin-top: 25px; color: var(--pm-teal-700); font-size: .84rem; font-weight: 750; }
.pm-case-related-all::after { content: "▸"; margin-left: 10px; }
@media (max-width: 980px) {
  .pm-case-article-layout { grid-template-columns: 1fr; }
  .pm-case-related { position: static; }
  .pm-case-related > a:not(.pm-case-related-all) { grid-template-columns: 130px 1fr; }
}

@media (max-width: 760px) {
  .pm-case-article-banner { min-height: 300px; padding: 58px 0 40px; }
  .pm-case-article-banner p { max-width: 300px; font-size: .94rem; }
  .pm-case-article-banner nav { white-space: nowrap; flex-wrap: nowrap; overflow: hidden; }
  .pm-case-article-outline { top: 18px; right: -12px; font-size: 37vw; }
  .pm-case-article-shell { padding: 60px 0 80px; }
  .pm-case-article-header > div { gap: 16px; }
  .pm-case-article-header h1 { font-size: 2rem; }
  .pm-case-article-media { min-height: 270px; padding: 24px; }
  .pm-case-article-media--logo { min-height: 220px; }
  .pm-case-article-media--logo img { width: min(38%, 143px); }
  .pm-case-article-specs { grid-template-columns: 1fr; }
  .pm-case-article-specs > div,
  .pm-case-article-specs > div:nth-child(even) { grid-template-columns: 92px 1fr; padding: 16px 0; border-left: 0; }
  .pm-case-story { padding-top: 44px; }
  .pm-case-story > section,
  .pm-case-story-extra { margin-top: 40px; }
  .pm-case-article-results { grid-template-columns: 1fr; }
  .pm-case-article-results > div,
  .pm-case-article-results > div + div { padding: 20px 0; border-left: 0; border-bottom: 1px solid #cbd6d2; }
  .pm-case-article-results > div:last-child { border-bottom: 0; }
  .pm-case-related > a:not(.pm-case-related-all) { grid-template-columns: 96px 1fr; }
}

/* Homepage 1.0: concise corporate composition inspired by industrial editorial sites. */
.home .pm-hero { min-height: min(710px, calc(100svh - var(--pm-header))); }
.home .pm-hero-inner { padding: 105px 0 82px; }
.home .pm-hero-content { max-width: 650px; }
.home .pm-hero h1 { max-width: 650px; font-size: clamp(3.25rem, 6vw, 5.8rem); line-height: 1.04; }
.home .pm-hero-text { max-width: 520px; margin-top: 26px; font-size: clamp(1rem, 1.3vw, 1.12rem); }
.home .pm-hero-actions { margin-top: 36px; }
.pm-home-about { padding: 112px 0 104px; background: #fff; }
.pm-home-about-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: end;
}
.pm-home-about-head h2,
.pm-home-service-head h2,
.pm-home-insights-head h2 {
  margin: 0;
  color: var(--pm-navy-900);
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  line-height: 1.12;
  letter-spacing: -.05em;
}
.pm-home-about-head .pm-text-link { margin-top: 28px; }
.pm-home-about-head > p { max-width: 450px; margin: 0 0 7px; color: var(--pm-muted); font-size: 1.02rem; line-height: 1.9; }
.pm-home-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 66px;
  border-top: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}
.pm-home-proof > div { min-height: 175px; padding: 34px 32px 30px 0; }
.pm-home-proof > div + div { padding-left: 34px; border-left: 1px solid var(--pm-line); }
.pm-home-proof strong { display: block; color: var(--pm-teal-700); font-size: clamp(2.5rem, 4.6vw, 4.6rem); font-weight: 640; line-height: 1; letter-spacing: -.055em; }
.pm-home-proof strong sup { color: var(--pm-lime-500); font-size: .42em; vertical-align: top; }
.pm-home-proof span { display: block; margin-top: 23px; color: #5e6d71; font-size: .86rem; }
.pm-home-service-head,
.pm-home-insights-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 100px; }
.pm-home-service-head h2,
.pm-home-insights-head h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.pm-home-service-grid { display: flex; height: 430px; gap: 4px; margin-top: 42px; overflow: hidden; }
.pm-home-service {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: flex-end;
  padding: 34px;
  color: #fff;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transition: flex .42s ease;
}
.pm-home-service::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,22,29,.08), rgba(5,22,29,.90)); }
.pm-home-service::after { content: ""; position: absolute; right: 0; bottom: 0; width: 12px; height: 78px; background: var(--pm-lime-500); clip-path: polygon(100% 0,100% 100%,0 100%,58% 0); }
.pm-home-service--design { background-image: url("assets/images/hero-precision-components.webp"); }
.pm-home-service--cost { background-image: url("assets/images/factory-cnc-machining-clean.jpg"); }
.pm-home-service--molding { background-image: url("assets/images/hero-service-detail.jpg"); }
.pm-home-service--material { background-image: url("assets/images/material-bmc.webp"); }
.pm-home-service > span,
.pm-home-service > div { position: relative; z-index: 1; }
.pm-home-service > span { position: absolute; top: 28px; left: 30px; font-size: .8rem; font-weight: 750; }
.pm-home-service h3 { max-width: 310px; margin: 0; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.3; }
.pm-home-service p { margin: 9px 0 0; color: rgba(255,255,255,.68); font-size: .83rem; }
.pm-home-service:hover { flex: 1.35; }
.pm-home-fabless { min-height: 590px; }
.pm-home-fabless .pm-split-media { min-height: 590px; }
.pm-home-fabless .pm-split-content { padding-block: 74px; }
.pm-home-fabless .pm-title { max-width: 540px; }
.pm-home-fabless .pm-lead { max-width: 500px; }
.pm-home-fabless .pm-text-link { margin-top: 30px; }
.pm-home-case { padding: 105px 0; color: #fff; background: var(--pm-navy-950); }
.pm-home-case .pm-ghost-word { top: -8px; -webkit-text-stroke-color: rgba(255,255,255,.09); }
.pm-home-case-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.pm-home-case-grid h2 { max-width: 650px; margin: 0; font-size: clamp(2.7rem, 5.2vw, 5.4rem); line-height: 1.06; letter-spacing: -.055em; }
.pm-home-case-grid p { max-width: 540px; margin: 25px 0 0; color: rgba(255,255,255,.65); }
.pm-home-case-grid .pm-text-link { margin-top: 32px; }
.pm-home-case-results { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.pm-home-case-results > div { padding: 36px 24px 34px 0; }
.pm-home-case-results > div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.22); }
.pm-home-case-results strong { display: block; color: #fff; font-size: clamp(2rem, 3.8vw, 4rem); font-weight: 620; line-height: 1; letter-spacing: -.055em; }
.pm-home-case-results span { display: block; margin-top: 14px; color: rgba(255,255,255,.55); font-size: .8rem; }
.pm-home-insights { padding: 105px 0; background: #fff; }
.pm-home-insights-head { margin-top: 0; }
.pm-home-insight-list { margin-top: 42px; border-top: 1px solid var(--pm-line); }
.pm-home-insight-list a {
  display: grid;
  grid-template-columns: 105px 115px minmax(0, 1fr) 28px;
  gap: 24px;
  min-height: 112px;
  align-items: center;
  border-bottom: 1px solid var(--pm-line);
  transition: color .2s ease;
}
.pm-home-insight-list time,
.pm-home-insight-list > a > span { color: #7a878a; font-size: .74rem; }
.pm-home-insight-list > a > span { color: var(--pm-teal-700); font-weight: 700; }
.pm-home-insight-list h3 { margin: 0; font-size: clamp(1.05rem, 1.55vw, 1.35rem); font-weight: 680; line-height: 1.45; }
.pm-home-insight-list i { color: var(--pm-teal-700); font-style: normal; }
.pm-home-insight-list a:hover { color: var(--pm-teal-700); }

@media (max-width: 900px) {
  .pm-home-about-head { grid-template-columns: 1fr; gap: 24px; }
  .pm-home-about-head > p { max-width: 620px; }
  .pm-home-service-grid { height: 380px; }
  .pm-home-service { padding: 26px 22px; }
  .pm-home-case-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .home .pm-hero { min-height: 650px; }
  .home .pm-hero-inner { padding: 78px 0 60px; }
  .home .pm-hero h1 { font-size: clamp(2.8rem, 12vw, 3.45rem); }
  .pm-home-about { padding: 78px 0; }
  .pm-home-about .pm-ghost-word { top: 28px; font-size: 26vw; }
  .pm-home-proof { grid-template-columns: 1fr; margin-top: 46px; }
  .pm-home-proof > div,
  .pm-home-proof > div + div { min-height: 128px; padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--pm-line); }
  .pm-home-proof > div:last-child { border-bottom: 0; }
  .pm-home-proof span { margin-top: 13px; }
  .pm-home-service-head,
  .pm-home-insights-head { align-items: flex-start; flex-direction: column; margin-top: 72px; }
  .pm-home-service-grid { height: auto; flex-direction: column; gap: 3px; }
  .pm-home-service { min-height: 260px; flex: none; }
  .pm-home-service:hover { flex: none; }
  .pm-home-fabless,
  .pm-home-fabless .pm-split-media { min-height: 360px; }
  .pm-home-case { padding: 80px 0; }
  .pm-home-case-results { margin-top: 10px; }
  .pm-home-case-results strong { font-size: 2rem; }
  .pm-home-insights { padding: 78px 0; }
  .pm-home-insight-list a { grid-template-columns: 1fr 32px; gap: 8px 16px; padding: 22px 0; }
  .pm-home-insight-list time,
  .pm-home-insight-list > a > span { grid-column: 1; }
  .pm-home-insight-list h3 { grid-column: 1; }
  .pm-home-insight-list i { grid-column: 2; grid-row: 1 / 4; align-self: center; }
}

@media (max-width: 1020px) {
  .pm-team-directory { grid-template-columns: 1fr; gap: 48px; }
  .pm-team-departments { position: static; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--pm-line); }
  .pm-team-departments b { grid-column: 1 / -1; margin: 0; padding: 18px 0 10px; }
  .pm-team-departments a { padding: 13px 16px 13px 0; }
  .pm-team-departments a:hover, .pm-team-departments a:focus-visible { padding-left: 16px; }
  .pm-team-departments a:hover::before, .pm-team-departments a:focus-visible::before { width: 8px; }
  .pm-team-roster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .pm-team-directory-section { padding: 76px 0 84px; }
  .pm-team-directory { gap: 40px; }
  .pm-team-departments { grid-template-columns: 1fr; }
  .pm-team-departments b { padding-bottom: 8px; }
  .pm-team-departments a { padding: 11px 0; }
  .pm-team-departments a:hover, .pm-team-departments a:focus-visible { padding-left: 20px; }
  .pm-team-group { padding-bottom: 52px; margin-bottom: 52px; }
  .pm-team-group > header { margin-bottom: 30px; }
  .pm-team-roster { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 22px; }
  .pm-team-person-visual { width: 100%; }
  .pm-page-hero--team { min-height: 520px; }
  .pm-page-hero--team::before {
    inset: auto 0 0;
    width: 100%;
    height: 43%;
    opacity: .5;
    background:
      linear-gradient(180deg, rgba(238,242,237,.05), rgba(4,31,38,.18)),
      url("assets/images/hero-process.jpg") center 55% / cover no-repeat;
  }
  .pm-page-hero--team::after {
    top: auto;
    right: 0;
    bottom: 43%;
    left: 0;
    width: 100%;
    height: 8px;
    clip-path: polygon(0 35%, 78% 35%, 81% 100%, 0 100%);
  }
}

/* 1.3.1 — lock inner-page banner copy to one shared baseline */
@media (min-width: 761px) {
  .pm-page-hero .pm-page-hero-grid,
  .pm-page-hero--about .pm-page-hero-grid,
  .pm-page-hero--team .pm-page-hero-grid,
  .pm-page-hero--contact .pm-page-hero-grid,
  .pm-page-hero--case-studies .pm-page-hero-grid {
    width: 100%;
    min-height: 570px;
    box-sizing: border-box;
    padding-block: 163px 80px;
    align-content: start;
    justify-items: start;
  }
  .pm-page-hero .pm-page-hero-copy,
  .pm-page-hero--about .pm-page-hero-copy,
  .pm-page-hero--team .pm-page-hero-copy,
  .pm-page-hero--contact .pm-page-hero-copy,
  .pm-page-hero--case-studies .pm-page-hero-copy {
    width: 100%;
    max-width: 820px;
  }
  .pm-page-hero .pm-page-index,
  .pm-page-hero--case-studies .pm-page-index {
    display: inline-block;
    line-height: 20px;
  }
}

/* 1.3.0 — one banner alignment and one material-card system */
.pm-page-hero .pm-page-hero-grid,
.pm-page-hero--about .pm-page-hero-grid,
.pm-page-hero--team .pm-page-hero-grid,
.pm-page-hero--contact .pm-page-hero-grid,
.pm-page-hero--case-studies .pm-page-hero-grid {
  justify-items: start;
  align-content: center;
  padding-block: 118px 88px;
  text-align: left;
}
.pm-page-hero .pm-breadcrumb,
.pm-page-hero--about .pm-breadcrumb,
.pm-page-hero--team .pm-breadcrumb,
.pm-page-hero--case-studies .pm-breadcrumb { justify-content: flex-start; }
.pm-page-hero--case-studies .pm-breadcrumb { display: flex; }
.pm-page-hero--case-studies .pm-page-index { display: inline-block; }
.pm-page-hero h1,
.pm-page-hero--about h1,
.pm-page-hero--contact h1,
.pm-page-hero--case-studies h1 {
  max-width: 820px;
  margin: 20px 0 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.pm-page-hero--about .pm-page-hero-word,
.pm-page-hero--case-studies .pm-page-hero-word {
  right: -2vw;
  bottom: -3.5vw;
  transform: none;
  white-space: nowrap;
}

.pm-material-item-grid,
.pm-material-family-row#thermoset .pm-material-item-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--pm-line);
}
.pm-material-item,
.pm-material-family-row#thermoset .pm-material-item {
  display: flex;
  min-height: 350px;
  grid-template-columns: none;
}
.pm-material-item-media,
.pm-material-family-row#thermoset .pm-material-item-media { min-height: 190px; }
.pm-material-item-media img,
.pm-material-family-row#thermoset .pm-material-item-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.pm-material-item-copy { min-height: 160px; }

@media (max-width: 980px) {
  .pm-material-item-grid,
  .pm-material-family-row#thermoset .pm-material-item-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .pm-page-hero .pm-page-hero-grid,
  .pm-page-hero--about .pm-page-hero-grid,
  .pm-page-hero--team .pm-page-hero-grid,
  .pm-page-hero--contact .pm-page-hero-grid,
  .pm-page-hero--case-studies .pm-page-hero-grid { padding-block: 116px 66px; }
  .pm-page-hero h1,
  .pm-page-hero--about h1,
  .pm-page-hero--contact h1,
  .pm-page-hero--case-studies h1 { font-size: clamp(2.45rem, 11vw, 3.7rem); }
  .pm-material-item-grid,
  .pm-material-family-row#thermoset .pm-material-item-grid { grid-template-columns: 1fr; }
  .pm-material-item,
  .pm-material-family-row#thermoset .pm-material-item { min-height: 350px; }
}

@media (max-width: 520px) {
  .pm-team-roster { grid-template-columns: 1fr; }
  .pm-team-person { max-width: 300px; }
  .pm-team-person-visual { width: min(100%, 240px); }
}

@media (max-width: 1050px) {
  .pm-advantage-reference-heading { grid-template-columns: 1fr; gap: 26px; }
  .pm-advantage-reference-heading > p { max-width: 680px; }
  .pm-advantage-orbit-stage { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; width: 100%; height: auto; }
  .pm-advantage-orbit-track { display: none; }
  .pm-advantage-orbit-stage article,
  .pm-advantage-orbit-stage article:nth-of-type(n) { position: relative; left: auto; top: auto; width: min(100%, 210px); margin-inline: auto; }
  .pm-advantage-capability-list article { grid-template-columns: 56px 1fr; }
  .pm-advantage-capability-list ul { grid-column: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pm-advantage-service-library a { grid-template-columns: 120px 220px minmax(0, 1fr); }
  .pm-advantage-service-library a b { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .pm-advantage-orbit-section { padding: 78px 0 86px; background-size: 190px 190px; }
  .pm-advantage-reference-heading h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .pm-advantage-orbit-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; margin-top: 44px; }
  .pm-advantage-orbit-stage article,
  .pm-advantage-orbit-stage article:nth-of-type(n) { width: 100%; padding: 16px 12px; }
  .pm-advantage-orbit-stage article::after { inset: -4px; }
  .pm-advantage-orbit-stage h3 { margin-top: 8px; font-size: 1rem; }
  .pm-advantage-orbit-stage p { margin-top: 6px; font-size: .67rem; }
  .pm-advantage-capabilities { padding-top: 78px; }
  .pm-advantage-capability-list { margin-top: 42px; }
  .pm-advantage-capability-list article { grid-template-columns: 38px 1fr; gap: 18px; padding: 34px 0; }
  .pm-advantage-capability-list ul { grid-column: 2; grid-template-columns: 1fr; }
  .pm-advantage-solution-links { grid-template-columns: 1fr; margin-top: 54px; }
  .pm-advantage-service-library a { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .pm-advantage-service-library a b { grid-column: 1; }
  .pm-advantage-evidence > .pm-container > header { grid-template-columns: 1fr; gap: 18px; }
  .pm-advantage-cert-links { align-items: flex-start; flex-direction: column; gap: 14px; }
}

/* About PLASMAT — integrated profile, advantages and capabilities */
.pm-page-hero--about {
  min-height: 540px;
  background: #09252d;
}
.pm-page-hero--about::before {
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(5, 28, 35, .9), rgba(5, 41, 50, .72) 48%, rgba(3, 43, 50, .56)),
    url("assets/images/hero-precision-components.webp") center 48% / cover no-repeat;
}
.pm-page-hero--about .pm-page-hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  padding-block: 118px 104px;
  text-align: center;
}
.pm-page-hero--about .pm-breadcrumb { justify-content: center; }
.pm-page-hero--about h1 { margin-top: 18px; font-size: clamp(3rem, 6vw, 5.4rem); }
.pm-page-hero--about .pm-page-hero-grid > p {
  max-width: none;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  font-weight: 620;
  letter-spacing: .1em;
}
.pm-page-hero--about .pm-page-hero-word {
  right: 50%;
  bottom: -1vw;
  transform: translateX(50%);
  white-space: nowrap;
}
.pm-about-local-nav { position: sticky; top: var(--pm-header-h, 84px); z-index: 50; }

.pm-about-profile { position: relative; padding: 118px 0 110px; background: #fff; overflow: hidden; }
.pm-about-profile::after {
  content: "FABless";
  position: absolute;
  right: -1vw;
  top: 115px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(9, 111, 105, .09);
  font-size: clamp(6rem, 15vw, 13rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.07em;
  pointer-events: none;
}
.pm-about-profile-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(56px, 9vw, 132px);
  align-items: center;
}
.pm-about-profile header > span,
.pm-about-vision header > span,
.pm-about-evidence header > span {
  color: var(--pm-teal-700);
  font-size: .84rem;
  font-weight: 760;
  letter-spacing: .08em;
}
.pm-about-profile h2 {
  margin: 12px 0 34px;
  color: var(--pm-teal-700);
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: .82;
  letter-spacing: -.065em;
}
.pm-about-profile header p { max-width: 430px; margin: 0; color: #647177; font-size: 1.05rem; line-height: 1.9; }
.pm-about-profile figure { margin: 0; }
.pm-about-profile figure img { width: 100%; aspect-ratio: 1.48; object-fit: cover; border-radius: 0 72px 0 72px; }
.pm-about-profile figcaption { margin-top: 13px; color: #758186; font-size: .75rem; text-align: right; }
.pm-about-profile-copy { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(38px, 7vw, 100px); margin-top: 68px; padding-top: 42px; border-top: 1px solid var(--pm-line); }
.pm-about-profile-copy p { margin: 0; color: #44545c; line-height: 2; }

.pm-about-vision {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 104px 0 110px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(5, 30, 38, .92), rgba(5, 48, 58, .76) 52%, rgba(7, 58, 65, .68)),
    url("assets/images/factory-injection-molding.jpg") center 50% / cover no-repeat;
}
.pm-about-vision::after { content: "VISION"; position: absolute; right: 2vw; bottom: -1.4vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.1); font-size: clamp(6rem, 16vw, 14rem); font-weight: 900; line-height: .8; letter-spacing: -.07em; }
.pm-about-vision .pm-container { position: relative; z-index: 1; }
.pm-about-vision header { text-align: center; }
.pm-about-vision header > span { color: var(--pm-lime-400); }
.pm-about-vision h2 { margin: 14px 0 0; font-size: clamp(2.65rem, 5vw, 5.25rem); line-height: 1.12; letter-spacing: -.05em; }
.pm-about-vision-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(56px, 8vw, 118px); align-items: end; margin-top: 74px; }
.pm-about-vision-layout > p { max-width: 520px; margin: 0; color: rgba(255,255,255,.76); font-size: 1.04rem; line-height: 2; }
.pm-about-vision-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: transparent; border: 0; }
.pm-about-vision-tabs article { min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 24px; color: var(--pm-ink); background: #fff; border: 0; }
.pm-about-vision-tabs article:last-child { border-right: 0; }
.pm-about-vision-tabs article:first-child { color: var(--pm-ink); background: #fff; }
.pm-about-vision-tabs b { color: var(--pm-teal-700); font-size: .72rem; letter-spacing: .08em; }
.pm-about-vision-tabs article:first-child b { color: var(--pm-teal-700); }
.pm-about-vision-tabs h3 { margin: 20px 0 6px; font-size: 1.18rem; }
.pm-about-vision-tabs p { margin: 0; color: #728085; font-size: .78rem; line-height: 1.65; }
.pm-about-vision-tabs article:first-child p { color: #728085; }

.pm-about-orbit { padding-top: 118px; }
.pm-about-capabilities { padding-top: 118px; }
.pm-about-managed { padding-block: 96px; }
.pm-about-evidence {
  position: relative;
  padding: 112px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 27, 34, .94), rgba(5, 45, 55, .8)),
    url("assets/images/factory-optical-measurement-clean.jpg") center / cover no-repeat;
}
.pm-about-evidence::after { content: "QUALITY"; position: absolute; left: 2vw; bottom: -1vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.09); font-size: clamp(5rem, 14vw, 12rem); font-weight: 900; line-height: .8; letter-spacing: -.06em; }
.pm-about-evidence-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(62px, 10vw, 150px); align-items: center; }
.pm-about-evidence header > span { color: var(--pm-lime-400); }
.pm-about-evidence h2 { margin: 16px 0 24px; font-size: clamp(2.4rem, 4.3vw, 4.4rem); line-height: 1.13; letter-spacing: -.05em; }
.pm-about-evidence header p { max-width: 560px; margin: 0; color: rgba(255,255,255,.64); line-height: 1.85; }
.pm-about-evidence-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.5); }
.pm-about-evidence-metrics p { min-height: 165px; display: flex; flex-direction: column; justify-content: center; gap: 9px; margin: 0; padding: 24px; border-right: 1px solid rgba(255,255,255,.42); }
.pm-about-evidence-metrics p:last-child { border-right: 0; }
.pm-about-evidence-metrics strong { color: var(--pm-lime-400); font-size: clamp(2rem, 3.8vw, 3.7rem); line-height: 1; }
.pm-about-evidence-metrics span { color: rgba(255,255,255,.68); font-size: .78rem; }
.pm-about-certificate { padding: 28px 30px; color: var(--pm-ink); background: #fff; }
.pm-about-certificate > b { color: var(--pm-teal-700); font-size: 1.2rem; }
.pm-about-certificate > p { margin: 8px 0 18px; color: var(--pm-muted); font-size: .84rem; }
.pm-about-certificate > div { display: flex; flex-wrap: wrap; gap: 28px; }
.pm-about-certificate a { color: var(--pm-teal-700); font-size: .8rem; font-weight: 720; }

@media (max-width: 980px) {
  .pm-about-profile-grid, .pm-about-vision-layout, .pm-about-evidence-grid { grid-template-columns: 1fr; }
  .pm-about-profile-grid { gap: 52px; }
  .pm-about-profile header p { max-width: 620px; }
  .pm-about-profile figure img { max-height: 520px; }
  .pm-about-vision-layout { gap: 44px; }
  .pm-about-vision-layout > p { max-width: 700px; }
  .pm-about-evidence-grid { gap: 48px; }
}

@media (max-width: 760px) {
  .pm-page-hero--about { min-height: 470px; }
  .pm-page-hero--about .pm-page-hero-grid { padding-block: 92px 82px; }
  .pm-page-hero--about .pm-page-hero-grid > p { font-size: .86rem; letter-spacing: .05em; }
  .pm-about-local-nav { top: 72px; }
  .pm-about-profile { padding: 78px 0 76px; }
  .pm-about-profile::after { top: 94px; }
  .pm-about-profile h2 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .pm-about-profile figure img { min-height: 260px; border-radius: 0 42px 0 42px; }
  .pm-about-profile-copy { grid-template-columns: 1fr; gap: 24px; margin-top: 44px; padding-top: 30px; }
  .pm-about-vision { min-height: 0; padding: 82px 0 90px; }
  .pm-about-vision h2 { font-size: clamp(1.85rem, 8vw, 2.2rem); }
  .pm-about-vision-layout { margin-top: 48px; }
  .pm-about-vision-tabs { grid-template-columns: 1fr; }
  .pm-about-vision-tabs article { min-height: 128px; border: 0; }
  .pm-about-vision-tabs article:last-child { border-bottom: 0; }
  .pm-about-orbit, .pm-about-capabilities { padding-top: 82px; }
  .pm-about-managed { padding-block: 74px; }
  .pm-about-evidence { padding: 82px 0 92px; }
  .pm-about-evidence-metrics { grid-template-columns: 1fr; }
  .pm-about-evidence-metrics p { min-height: 116px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.42); }
  .pm-about-evidence-metrics p:last-child { border-bottom: 0; }
  .pm-about-certificate { padding: 24px 22px; }
}

/* 1.2.0 — unique full-bleed banners with a shared readability system */
.pm-page-hero--solutions { --pm-banner-image: url("assets/images/hero-solutions.jpg"); --pm-banner-position: center; }
.pm-page-hero--capabilities { --pm-banner-image: url("assets/images/factory-cmm-inspection.jpg"); --pm-banner-position: center 48%; }
.pm-page-hero--materials { --pm-banner-image: url("assets/images/hero-materials.jpg"); --pm-banner-position: center; }
.pm-page-hero--industries { --pm-banner-image: url("assets/images/hero-industries.jpg"); --pm-banner-position: center; }
.pm-page-hero--case-studies { --pm-banner-image: url("assets/images/hero-case-studies.jpg"); --pm-banner-position: center; }
.pm-page-hero--insights { --pm-banner-image: url("assets/images/hero-insights.jpg"); --pm-banner-position: center; }
.pm-page-hero--about { --pm-banner-image: url("assets/images/hero-about.jpg"); --pm-banner-position: center; }
.pm-page-hero--advantages { --pm-banner-image: url("assets/images/material-bmc-cloud-2.webp"); --pm-banner-position: center 42%; }
.pm-page-hero--team { --pm-banner-image: url("assets/images/hero-team.jpg"); --pm-banner-position: center 52%; }
.pm-page-hero--contact { --pm-banner-image: url("assets/images/hero-contact.jpg"); --pm-banner-position: center; }
.pm-page-hero--process { --pm-banner-image: url("assets/images/hero-process.jpg"); --pm-banner-position: center; }
.pm-page-hero--miniature-screw { --pm-banner-image: url("assets/images/case-frameless-motor-insulator.png"); --pm-banner-position: center 48%; }
.pm-page-hero--design-to-production { --pm-banner-image: url("assets/images/material-thermoplastic-chart.webp"); --pm-banner-position: center; }
.pm-page-hero--cost-down-redesign { --pm-banner-image: url("assets/images/case-aeration-pump.jpg"); --pm-banner-position: center; }
.pm-page-hero--molding-troubleshooting { --pm-banner-image: url("assets/images/case-micro-pneumatic-valve.jpg"); --pm-banner-position: center; }
.pm-page-hero--multi-material-parts { --pm-banner-image: url("assets/images/material-bmc-cloud-1.webp"); --pm-banner-position: center 44%; }

.pm-page-hero {
  min-height: 570px;
  color: #fff;
  background: var(--pm-navy-900);
  isolation: isolate;
}
.pm-page-materials .pm-page-hero,
.pm-page-hero.pm-page-hero--case-studies,
.pm-page-hero.pm-page-hero--team { min-height: 570px; }
.pm-page-hero::before,
.pm-page-hero.pm-page-hero--team::before,
.pm-page-hero.pm-page-hero--case-studies::before,
.pm-page-hero--contact::before,
.pm-page-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
  filter: none;
  background:
    linear-gradient(90deg, rgba(4, 20, 28, .96) 0%, rgba(5, 28, 36, .86) 37%, rgba(6, 37, 45, .54) 60%, rgba(5, 22, 28, .20) 100%),
    var(--pm-banner-image) var(--pm-banner-position, center) / cover no-repeat;
  z-index: 0;
}
.pm-page-hero::after,
.pm-page-hero.pm-page-hero--team::after,
.pm-page-hero.pm-page-hero--case-studies::after {
  content: "";
  display: block;
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pm-lime-500), var(--pm-cyan-500), transparent 76%);
  z-index: 2;
}
.pm-page-hero .pm-page-hero-grid,
.pm-page-hero--about .pm-page-hero-grid,
.pm-page-hero--team .pm-page-hero-grid,
.pm-page-hero--contact .pm-page-hero-grid,
.pm-page-hero--case-studies .pm-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .62fr);
  align-items: end;
  gap: clamp(42px, 7vw, 100px);
  padding-block: 118px 88px;
  text-align: left;
}
.pm-page-hero--team .pm-page-hero-grid { display: block; }
.pm-page-hero .pm-breadcrumb,
.pm-page-hero--about .pm-breadcrumb,
.pm-page-hero--team .pm-breadcrumb { justify-content: flex-start; color: rgba(255,255,255,.72); }
.pm-page-hero .pm-page-index,
.pm-page-hero--materials .pm-page-index,
.pm-page-hero--industries .pm-page-index,
.pm-page-hero--team .pm-page-index,
.pm-page-hero--insights .pm-page-index,
.pm-page-hero--contact .pm-page-index,
.pm-page-hero--miniature-screw .pm-page-index { color: var(--pm-lime-400); }
.pm-page-hero h1,
.pm-page-hero--about h1,
.pm-page-hero--contact h1,
.pm-page-hero--case-studies h1 {
  max-width: 820px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -.05em;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.pm-page-hero .pm-page-hero-grid > p,
.pm-page-hero--about .pm-page-hero-grid > p,
.pm-page-hero--materials .pm-page-hero-grid > p,
.pm-page-hero--industries .pm-page-hero-grid > p,
.pm-page-hero--insights .pm-page-hero-grid > p,
.pm-page-hero--contact .pm-page-hero-grid > p,
.pm-page-hero--miniature-screw .pm-page-hero-grid > p,
:is(.pm-page-hero--cost-down-redesign, .pm-page-hero--multi-material-parts) .pm-page-hero-grid > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0;
  text-shadow: 0 1px 15px rgba(0,0,0,.3);
}
.pm-page-hero .pm-page-hero-word,
.pm-page-hero--materials .pm-page-hero-word,
.pm-page-hero--industries .pm-page-hero-word,
.pm-page-hero--team .pm-page-hero-word,
.pm-page-hero--insights .pm-page-hero-word,
.pm-page-hero--contact .pm-page-hero-word,
.pm-page-hero--miniature-screw .pm-page-hero-word,
:is(.pm-page-hero--cost-down-redesign, .pm-page-hero--multi-material-parts) .pm-page-hero-word {
  z-index: 1;
  -webkit-text-stroke-color: rgba(255,255,255,.12);
}

.pm-insight-banner {
  min-height: 610px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,20,28,.96) 0%, rgba(5,28,36,.84) 43%, rgba(5,22,28,.20) 100%),
    var(--pm-banner-image) center / cover no-repeat;
}
.pm-insight-banner::after { display: block; }
.pm-insight-banner .pm-container { padding-block: 126px 88px; }
.pm-insight-banner :is(.pm-breadcrumb, .pm-insight-byline, .pm-insight-date span) { color: rgba(255,255,255,.72); }
.pm-insight-banner .pm-insight-title-grid h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.3); }

.pm-case-article-banner {
  min-height: 430px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,20,28,.96) 0%, rgba(5,28,36,.84) 43%, rgba(5,22,28,.22) 100%),
    var(--pm-banner-image) center / cover no-repeat;
}
.pm-case-article-banner .pm-case-article-banner-title { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.pm-case-article-banner > .pm-container > i { background: var(--pm-lime-400); }
.pm-case-article-banner p { color: rgba(255,255,255,.84); }
.pm-case-article-banner nav,
.pm-case-article-banner nav a { color: rgba(255,255,255,.70); }
.pm-case-article-outline { -webkit-text-stroke-color: rgba(255,255,255,.12); }

@media (max-width: 760px) {
  .pm-page-hero,
  .pm-page-hero.pm-page-hero--team,
  .pm-page-hero.pm-page-hero--case-studies,
  .pm-page-hero--contact,
  .pm-page-hero--about { min-height: 510px; }
  .pm-page-hero::before,
  .pm-page-hero.pm-page-hero--team::before,
  .pm-page-hero.pm-page-hero--case-studies::before,
  .pm-page-hero--contact::before,
  .pm-page-hero--about::before {
    inset: 0;
    width: auto;
    height: auto;
    opacity: 1;
    background:
      linear-gradient(90deg, rgba(4,20,28,.96) 0%, rgba(5,28,36,.88) 48%, rgba(5,22,28,.44) 100%),
      var(--pm-banner-image) 62% center / cover no-repeat;
  }
  .pm-page-hero .pm-page-hero-grid,
  .pm-page-hero--about .pm-page-hero-grid,
  .pm-page-hero--team .pm-page-hero-grid,
  .pm-page-hero--contact .pm-page-hero-grid,
  .pm-page-hero--case-studies .pm-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 116px 66px;
    text-align: left;
  }
  .pm-page-hero h1,
  .pm-page-hero--about h1,
  .pm-page-hero--contact h1,
  .pm-page-hero--case-studies h1 { font-size: clamp(2.45rem, 11vw, 3.7rem); }
  .pm-page-hero .pm-page-hero-grid > p { max-width: 92%; font-size: .95rem; line-height: 1.75; }
  .pm-insight-banner {
    min-height: 560px;
    background:
      linear-gradient(90deg, rgba(4,20,28,.97) 0%, rgba(5,28,36,.90) 54%, rgba(5,22,28,.48) 100%),
      var(--pm-banner-image) 62% center / cover no-repeat;
  }
  .pm-insight-banner .pm-container { padding-block: 112px 66px; }
  .pm-case-article-banner {
    min-height: 390px;
    background:
      linear-gradient(90deg, rgba(4,20,28,.97) 0%, rgba(5,28,36,.90) 54%, rgba(5,22,28,.48) 100%),
      var(--pm-banner-image) 62% center / cover no-repeat;
  }
}

/* 1.2.2 — page name first, supporting copy directly below */
.pm-page-hero .pm-page-hero-grid,
.pm-page-hero--about .pm-page-hero-grid,
.pm-page-hero--team .pm-page-hero-grid,
.pm-page-hero--contact .pm-page-hero-grid,
.pm-page-hero--case-studies .pm-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-items: start;
  gap: 0;
}
.pm-page-hero-copy > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 1px 15px rgba(0,0,0,.3);
}

@media (max-width: 760px) {
  .pm-page-hero .pm-page-hero-grid,
  .pm-page-hero--about .pm-page-hero-grid,
  .pm-page-hero--team .pm-page-hero-grid,
  .pm-page-hero--contact .pm-page-hero-grid,
  .pm-page-hero--case-studies .pm-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pm-page-hero-copy > p {
    max-width: 92%;
    margin-top: 20px;
    font-size: .95rem;
    line-height: 1.75;
  }
}

/* 1.3.1 final cascade — shared desktop banner baseline */
@media (min-width: 761px) {
  .pm-page-hero .pm-page-hero-grid,
  .pm-page-hero--about .pm-page-hero-grid,
  .pm-page-hero--team .pm-page-hero-grid,
  .pm-page-hero--contact .pm-page-hero-grid,
  .pm-page-hero--case-studies .pm-page-hero-grid {
    width: 100%;
    min-height: 570px;
    box-sizing: border-box;
    padding-block: 163px 80px;
    align-content: start;
    justify-items: start;
  }
  .pm-page-hero .pm-page-hero-copy,
  .pm-page-hero--about .pm-page-hero-copy,
  .pm-page-hero--team .pm-page-hero-copy,
  .pm-page-hero--contact .pm-page-hero-copy,
  .pm-page-hero--case-studies .pm-page-hero-copy {
    width: 100%;
    max-width: 820px;
  }
  .pm-page-hero .pm-page-index,
  .pm-page-hero--case-studies .pm-page-index {
    display: inline-block;
    line-height: 20px;
  }
}

/* 1.3.2 — preserve the global container gutter inside full-width banners */
@media (min-width: 761px) {
  .pm-page-hero .pm-page-hero-grid,
  .pm-page-hero--about .pm-page-hero-grid,
  .pm-page-hero--team .pm-page-hero-grid,
  .pm-page-hero--contact .pm-page-hero-grid,
  .pm-page-hero--case-studies .pm-page-hero-grid {
    width: min(1200px, calc(100% - 64px));
    max-width: 1200px;
    margin-inline: auto;
  }
}

/* 1.3.4 — services switcher */
.pm-service-tabs {
  position: sticky;
  top: var(--pm-header);
  z-index: 800;
  background: #edf2ef;
  border-bottom: 1px solid #cbd7d2;
  box-shadow: 0 10px 28px rgba(11, 45, 48, .08);
}
.admin-bar .pm-service-tabs { top: calc(var(--pm-header) + 32px); }
.pm-service-tabs .pm-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-inline: 0;
}
.pm-service-tabs a {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 88px;
  padding: 18px 24px;
  color: #435257;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid #cbd7d2;
  cursor: pointer;
  transition: color .22s ease, background-color .22s ease;
}
.pm-service-tabs a:first-child { border-left: 1px solid #cbd7d2; }
.pm-service-tabs a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: transparent;
}
.pm-service-tabs a span {
  color: #849195;
  font-size: .72rem;
  letter-spacing: .08em;
}
.pm-service-tabs a b { font-size: .96rem; font-weight: 750; }
.pm-service-tabs a:hover { color: var(--pm-teal-700); background: #f8faf9; }
.pm-service-tabs a[aria-current="page"] { color: #fff; background: var(--pm-teal-700); }
.pm-service-tabs a[aria-current="page"] span { color: rgba(255,255,255,.65); }
.pm-service-tabs a[aria-current="page"]::after { background: var(--pm-lime-500); }
.pm-service-tabs a:focus-visible { outline: 3px solid var(--pm-lime-500); outline-offset: -3px; }

.pm-service-panels { min-height: 520px; background: #f6f8f6; }
.pm-service-panel {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: start;
  padding-block: 94px 104px;
}
.pm-service-panel[hidden] { display: none !important; }
.pm-service-panel-no {
  color: #99a6a4;
  font-size: .82rem;
  letter-spacing: .14em;
}
.pm-service-panel-copy > span {
  display: block;
  margin-bottom: 20px;
  color: var(--pm-teal-700);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pm-service-panel-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -.05em;
}
.pm-service-panel-copy p {
  max-width: 650px;
  margin: 28px 0 34px;
  color: var(--pm-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}
.pm-service-panel-points { padding-top: 34px; border-top: 3px solid var(--pm-teal-700); }
.pm-service-panel-points h3 { margin: 0 0 20px; font-size: 1.05rem; }
.pm-service-panel-points ul { margin: 0; padding: 0; list-style: none; }
.pm-service-panel-points li { padding: 15px 0; color: #4f6064; border-bottom: 1px solid #d5ddda; }
.pm-service-panel-points li::before { content: ""; display: inline-block; width: 12px; height: 1px; margin: 0 12px 4px 0; background: var(--pm-teal-700); }

@media (max-width: 1080px) {
  .pm-service-tabs .pm-container { display: flex; overflow-x: auto; scrollbar-width: none; }
  .pm-service-tabs a { flex: 0 0 220px; }
  .pm-service-panel { grid-template-columns: 60px 1fr; }
  .pm-service-panel-points { grid-column: 2; }
}

@media (max-width: 782px) {
  .admin-bar .pm-service-tabs { top: calc(var(--pm-header) + 46px); }
}

@media (max-width: 760px) {
  .pm-service-tabs { top: var(--pm-header); }
  .pm-service-tabs a { flex-basis: 190px; min-height: 76px; padding: 14px 18px; }
  .pm-service-tabs a b { font-size: .9rem; }
  .pm-service-panels { min-height: 0; }
  .pm-service-panel { grid-template-columns: 1fr; gap: 24px; padding-block: 64px 76px; }
  .pm-service-panel-no { display: none; }
  .pm-service-panel-points { grid-column: auto; margin-top: 14px; }
  .pm-service-panel-copy h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
}

/* Breadcrumbs live in banners only. */
.pm-page-hero--contact .pm-breadcrumb {
  display: flex;
  justify-content: flex-start;
}
.pm-page-hero--contact .pm-page-index { display: none; }

.pm-service-content { transition: opacity .18s ease; }
.pm-service-switcher.is-loading .pm-service-content { opacity: .42; pointer-events: none; }

.pm-about-capabilities-cta .pm-lead { margin: 0 0 28px; }

/* Keep anchored sections visible below the sticky header and local navigation. */
.pm-inner-page section[id] { scroll-margin-top: calc(var(--pm-header) + 72px); }
.admin-bar .pm-inner-page section[id] { scroll-margin-top: calc(var(--pm-header) + 112px); }

/* 1.4.0 — final mobile layout safeguards */
@media (max-width: 760px) {
  /* This shared grid is restyled later in the desktop cascade, so repeat the
     single-column rule here to keep headings readable on narrow screens. */
  .pm-section-heading-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .pm-section-heading-row > * {
    min-width: 0;
    max-width: 100%;
  }
  .pm-insight-intro .pm-title {
    font-size: clamp(2rem, 8.6vw, 2.65rem);
    line-height: 1.24;
  }

  /* Give knowledge cards a consistent reading margin on listing and related
     article sections instead of letting copy sit against the card edges. */
  .pm-knowledge-card-body {
    padding: 24px 20px 22px;
  }
  .pm-knowledge-card h3,
  .pm-knowledge-card p,
  .pm-article-prose {
    overflow-wrap: anywhere;
  }
  .pm-article-prose table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pm-article-prose blockquote {
    padding-inline: 20px;
  }
}

/* 1.6.4 — consistent equipment and material card dimensions */
.pm-equipment-grid {
  grid-auto-rows: 320px;
  gap: 0;
  background: #fff;
  border: 1px solid var(--pm-line);
  border-right: 0;
  border-bottom: 0;
}

/* 1.6.5 — keep every equipment image inside its fixed card boundary */
.pm-equipment-card,
.pm-equipment-card > a,
.pm-equipment-card-media,
.pm-equipment-card-copy {
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.pm-equipment-card > a { height: 100%; }
.pm-equipment-card-media { position: relative; }
.pm-equipment-card-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.pm-equipment-card,
.pm-equipment-card:last-child:nth-child(odd) {
  grid-column: auto;
  height: 320px;
  border-right: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}
.pm-equipment-card > a,
.pm-equipment-card-media,
.pm-equipment-card-media img { height: 100%; min-height: 0; }

.pm-material-item-grid,
.pm-material-family-row#thermoset .pm-material-item-grid {
  grid-auto-rows: 350px;
  gap: 0;
  background: #fff;
  border: 1px solid var(--pm-line);
  border-right: 0;
  border-bottom: 0;
}
.pm-material-item,
.pm-material-family-row#thermoset .pm-material-item {
  grid-column: auto;
  width: 100%;
  height: 350px;
  min-height: 350px;
  border-right: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}
.pm-material-item-media,
.pm-material-family-row#thermoset .pm-material-item-media { flex: 0 0 190px; min-height: 190px; height: 190px; }
.pm-material-item-media img,
.pm-material-family-row#thermoset .pm-material-item-media img { min-height: 190px; height: 190px; }
.pm-material-item-copy { min-height: 0; }

@media (max-width: 1080px) {
  .pm-equipment-grid { grid-auto-rows: 320px; }
  .pm-equipment-card,
  .pm-equipment-card:last-child:nth-child(odd) { height: 320px; }
}

@media (max-width: 760px) {
  .pm-equipment-grid,
  .pm-material-item-grid,
  .pm-material-family-row#thermoset .pm-material-item-grid { grid-auto-rows: auto; }
  .pm-equipment-card,
  .pm-equipment-card:last-child:nth-child(odd) { height: auto; min-height: 0; }
  .pm-equipment-card > a { height: auto; }
  .pm-equipment-card-media { height: 250px; min-height: 250px; }
  .pm-equipment-card-media img { height: 100%; min-height: 0; }
  .pm-equipment-filter {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }
  .pm-material-item,
  .pm-material-family-row#thermoset .pm-material-item { height: 350px; }
  .pm-equipment-filter-wrap { margin-bottom: 38px; }
  .pm-equipment-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--pm-teal-700);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
  }
  .pm-equipment-scroll-hint b {
    display: inline-block;
    font-size: 1rem;
    animation: pm-scroll-cue 1.35s ease-in-out infinite;
  }
}

@keyframes pm-scroll-cue {
  0%, 100% { transform: translateX(0); opacity: .55; }
  50% { transform: translateX(6px); opacity: 1; }
}

/* 1.6.7 — concise, shared equipment and material detail layout */
.pm-product-overview {
  padding: clamp(72px, 8vw, 118px) 0;
  background: #fff;
}
.pm-product-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(48px, 6.5vw, 96px);
  align-items: start;
}
.pm-product-overview-media { min-width: 0; }
.pm-product-overview-image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  place-items: center;
  background: #f4f6f5;
  border: 1px solid var(--pm-line);
  overflow: hidden;
}
.pm-product-overview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pm-product-overview-image.pm-material-code-visual {
  display: flex;
  min-height: 0;
  padding: clamp(28px, 4vw, 48px);
}
.pm-product-overview-copy { min-width: 0; padding-top: clamp(2px, .8vw, 12px); }
.pm-product-overview-copy > h2 {
  margin: 0 0 34px;
  color: var(--pm-ink);
  font-size: clamp(2.15rem, 3.5vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.pm-product-summary h3,
.pm-product-features h3 {
  margin: 0 0 14px;
  color: var(--pm-teal-700);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.015em;
}
.pm-product-summary p,
.pm-product-summary .pm-rich-content {
  margin: 0;
  color: #536269;
  font-size: 1rem;
  line-height: 1.85;
}
.pm-product-summary .pm-rich-content > :first-child { margin-top: 0; }
.pm-product-summary .pm-rich-content > :last-child { margin-bottom: 0; }
.pm-product-features { margin-top: 42px; }
.pm-product-features ul { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.pm-product-features li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 13px; align-items: start; min-width: 0; }
.pm-product-features li > span {
  position: relative;
  width: 32px;
  height: 32px;
  margin-top: -3px;
  background: #edf4f1;
  border: 1px solid #d5e3df;
  border-radius: 50%;
}
.pm-product-features li > span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 8px;
  height: 12px;
  border-right: 2px solid var(--pm-teal-700);
  border-bottom: 2px solid var(--pm-teal-700);
  transform: rotate(45deg);
}
.pm-product-features strong { color: var(--pm-ink); font-size: 1rem; line-height: 1.55; }
.pm-product-features p { margin: 4px 0 0; color: var(--pm-muted); font-size: .9rem; line-height: 1.65; }

@media (max-width: 920px) {
  .pm-product-overview-grid { grid-template-columns: 1fr; gap: 44px; }
  .pm-product-overview-image { aspect-ratio: 4 / 3; }
}

@media (max-width: 760px) {
  .pm-product-overview { padding: 58px 0 68px; }
  .pm-product-overview-grid { gap: 34px; }
  .pm-product-overview-image { aspect-ratio: 1 / 1; }
  .pm-product-overview-copy { padding-top: 0; }
  .pm-product-overview-copy > h2 { margin-bottom: 28px; font-size: clamp(2rem, 9vw, 2.7rem); }
  .pm-product-summary h3,
  .pm-product-features h3 { font-size: 1.22rem; }
  .pm-product-features { margin-top: 34px; }
  .pm-product-features ul { gap: 16px; }
}

/* 1.7.1 — purpose-built mobile navigation */
.pm-mobile-nav-intro,
.pm-mobile-nav-footer,
.pm-submenu-toggle { display: none; }

@media (max-width: 1080px) {
  .pm-site-header { box-shadow: 0 1px 0 rgba(15, 48, 54, .08); backdrop-filter: none; }
  .pm-menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 11px;
    background: #f1f5f3;
    border: 1px solid #dbe4e1;
    border-radius: 0;
    cursor: pointer;
  }
  .pm-menu-toggle:hover { background: #e8f0ed; }
  .pm-menu-toggle:focus-visible { outline: 2px solid var(--pm-teal-700); outline-offset: 3px; }
  .pm-menu-toggle span:not(.screen-reader-text) {
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--pm-navy-900);
  }
  .nav-open .pm-menu-toggle { background: var(--pm-navy-900); border-color: var(--pm-navy-900); }
  .nav-open .pm-menu-toggle span:not(.screen-reader-text) { background: #fff; }

  .pm-nav {
    position: fixed;
    inset: var(--pm-header) 0 0;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .admin-bar .pm-nav { top: calc(var(--pm-header) + 32px); }
  .nav-open .pm-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .pm-mobile-nav-intro {
    display: none;
  }
  .pm-mobile-nav-intro span { font-size: .68rem; font-weight: 800; letter-spacing: .15em; }
  .pm-mobile-nav-intro strong { color: #839095; font-size: .78rem; font-weight: 600; }

  .pm-nav > ul {
    display: block;
    width: auto;
    margin: 26px clamp(28px, 6vw, 68px) 0;
    padding: 0;
    background: #fff;
    border-top: 1px solid var(--pm-line);
    box-shadow: none;
  }
  .pm-nav > ul > li {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    border-bottom: 1px solid var(--pm-line);
  }
  .pm-nav > ul > li > a {
    grid-column: 2;
    padding: 19px 8px;
    color: var(--pm-ink);
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.01em;
    text-align: center;
    cursor: pointer;
  }
  .pm-nav a::after { display: none; }
  .pm-submenu-toggle {
    position: relative;
    grid-column: 3;
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .pm-submenu-toggle::before,
  .pm-submenu-toggle::after {
    content: "";
    position: absolute;
    top: 23px;
    left: 16px;
    width: 16px;
    height: 1px;
    background: var(--pm-teal-700);
    transition: transform .2s ease;
  }
  .pm-submenu-toggle::after { transform: rotate(90deg); }
  .submenu-open > .pm-submenu-toggle::after { transform: rotate(0); }
  .pm-submenu-toggle:focus-visible { outline: 2px solid var(--pm-teal-700); outline-offset: -4px; }

  .pm-nav .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 8px 20px 12px;
    background: var(--pm-soft);
    border: 0;
    border-top: 1px solid var(--pm-line);
    box-shadow: none;
  }
  .pm-nav .submenu-open > .sub-menu { display: grid; }
  .pm-nav .sub-menu li { width: 100%; }
  .pm-nav .sub-menu a {
    padding: 12px 8px;
    color: #55666b;
    border-bottom: 1px solid rgba(199, 213, 209, .7);
    font-size: .92rem;
    font-weight: 600;
    text-align: center;
    white-space: normal;
  }
  .pm-nav .sub-menu li:last-child a { border-bottom: 0; }

  .pm-mobile-nav-footer {
    display: grid;
    gap: 16px;
    padding: 28px clamp(28px, 6vw, 68px) 30px;
  }
  .pm-nav .pm-mobile-nav-cta {
    width: 100%;
    min-height: 54px;
    padding: 15px 26px;
    justify-content: center;
    color: #fff !important;
  }
  .pm-mobile-nav-footer p {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin: 0;
    color: #68777c;
    font-size: .78rem;
  }
  .pm-mobile-nav-footer p span { display: none; }
  .pm-mobile-nav-footer a:not(.pm-button) { padding: 0; color: inherit; border: 0; }
}

@media (max-width: 782px) {
  .admin-bar .pm-nav { top: calc(var(--pm-header) + 46px); }
}

@media (max-width: 760px) {
  .pm-nav > ul { margin: 22px 22px 0; }
  .pm-nav > ul > li > a { padding-block: 17px; font-size: .98rem; }
  .pm-nav .sub-menu { padding-inline: 18px; }
  .pm-mobile-nav-footer { padding: 26px 22px 28px; }
}

/* 1.7.3 — consistent mobile cues for horizontally scrollable navigation. */
.pm-horizontal-scroll-hint { display: none; }

@media (max-width: 760px) {
  .pm-horizontal-scroll-shell {
    position: relative;
    min-width: 0;
  }
  .pm-horizontal-scroll-shell.has-horizontal-overflow > .pm-horizontal-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 29px;
    padding: 5px var(--pm-gutter, 22px) 4px;
    color: var(--pm-teal-700);
    background: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: opacity .22s ease;
  }
  .pm-horizontal-scroll-shell.has-horizontal-overflow > .pm-horizontal-scroll-hint b {
    display: inline-block;
    font-size: 1rem;
    animation: pm-scroll-cue 1.35s ease-in-out infinite;
  }
  .pm-horizontal-scroll-shell.is-scroll-interacted > .pm-horizontal-scroll-hint {
    opacity: 0;
  }
  .pm-horizontal-scroll-shell.has-horizontal-overflow::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 29px;
    right: 0;
    bottom: 0;
    width: 34px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.96));
    transition: opacity .2s ease;
  }
  .pm-horizontal-scroll-shell.is-at-end::after { opacity: 0; }
  .pm-horizontal-scroll-shell .pm-equipment-scroll-hint { display: none; }

  .pm-horizontal-scroll-shell > .pm-local-nav,
  .pm-horizontal-scroll-shell > .pm-service-tabs { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .pm-nav,
  .pm-submenu-toggle::before,
  .pm-submenu-toggle::after,
  .pm-horizontal-scroll-hint,
  .pm-horizontal-scroll-hint b { transition: none; animation: none; }
}

/* 1.7.8 — neutral mobile header, reliable menu close and labelled contact details. */
.pm-footer-contact p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 4px;
}
.pm-footer-contact strong,
.pm-inquiry-contact-links strong {
  color: inherit;
  font-weight: 700;
}
.pm-inquiry-contact-links > a {
  display: flex;
  align-items: flex-start;
}
.pm-inquiry-contact-links .pm-inquiry-map {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
}
.pm-inquiry-contact-links .pm-inquiry-map small {
  grid-column: 2;
}

@media (max-width: 1080px) {
  .pm-site-header {
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
  }

  .pm-menu-toggle,
  .pm-menu-toggle:hover,
  .pm-menu-toggle:focus,
  .nav-open .pm-menu-toggle {
    background: #fff;
    border: 0;
  }

  .pm-menu-toggle span:not(.screen-reader-text),
  .nav-open .pm-menu-toggle span:not(.screen-reader-text) {
    background: #17262c;
  }

  .pm-menu-toggle:focus-visible {
    outline-color: #17262c;
  }

  .pm-submenu-toggle::before,
  .pm-submenu-toggle::after {
    background: var(--pm-teal-700);
  }

  .pm-submenu-toggle:focus-visible {
    outline-color: var(--pm-teal-700);
  }

  .pm-nav .menu-item-has-children:hover > .sub-menu,
  .pm-nav .menu-item-has-children:focus-within > .sub-menu {
    display: none;
  }

  .pm-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: grid;
  }

  .pm-mobile-nav-footer p {
    gap: 9px;
  }
}

/* 1.9.0 — shared semantic type hierarchy across all page templates. */
.pm-page-hero h1,
.pm-page-hero--about h1,
.pm-page-hero--contact h1,
.pm-page-hero--case-studies h1,
.pm-insight-title-grid h1 {
  font-size: var(--pm-type-page-h1);
}

.pm-case-article-header h1,
.pm-content article > h1 {
  font-size: var(--pm-type-article-h1);
}

.pm-title--medium,
.pm-knowledge-heading h2,
.pm-equipment-intro h2,
.pm-material-catalog-head h2,
.pm-inquiry-heading h2,
.pm-inquiry-next-heading h2,
.pm-process-system-heading h2,
.pm-service-panel-copy h2,
.pm-home-about-head h2,
.pm-home-service-head h2,
.pm-home-insights-head h2,
.pm-about-evidence h2 {
  font-size: var(--pm-type-section-h2);
}

.pm-home-service h3,
.pm-knowledge-card h3,
.pm-case-card h3,
.pm-capability-grid h3,
.pm-principle-grid h3,
.pm-question-grid h3,
.pm-service-pains h3,
.pm-service-method h3,
.pm-managed-card h3,
.pm-team-person h3,
.pm-inquiry-next-grid h3,
.pm-material-category-only h3,
.pm-product-summary h3,
.pm-product-features h3 {
  font-size: var(--pm-type-component-h3);
}

.pm-lead,
.pm-service-intro,
.pm-product-summary p,
.pm-product-summary .pm-rich-content,
.pm-case-story p,
.pm-article-prose p {
  font-size: var(--pm-type-body);
}

@media (max-width: 760px) {
  :root {
    --pm-type-page-h1: clamp(2.35rem, 10vw, 3.05rem);
    --pm-type-article-h1: clamp(2rem, 8.6vw, 2.7rem);
    --pm-type-section-h2: clamp(1.8rem, 7.2vw, 2.25rem);
    --pm-type-component-h3: clamp(1.1rem, 4.8vw, 1.3rem);
  }

  .pm-about-vision h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.05rem);
    line-height: 1.18;
  }

  .pm-page-hero--about .pm-page-hero-grid {
    justify-items: start;
    text-align: left;
  }

  .pm-page-hero--about .pm-page-hero-copy { width: 100%; }
  .pm-page-hero--about .pm-breadcrumb { justify-content: flex-start; }
  .pm-article-prose h2 { margin-top: 50px; font-size: clamp(1.55rem, 7vw, 1.95rem); }
  .pm-article-prose h3 { margin-top: 34px; font-size: 1.22rem; }
  .pm-article-prose h4 { margin-top: 30px; font-size: 1.08rem; }
  .pm-article-prose h5 { margin-top: 26px; font-size: .98rem; }
  .pm-article-note { margin: 34px 0; padding: 22px 20px; }
}

/* 1.10.1 — editorial article layout */
.pm-news-hero {
  position: relative;
  min-height: 350px;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 19, 27, .9) 0%, rgba(4, 23, 30, .68) 48%, rgba(4, 23, 30, .32) 100%), var(--pm-banner-image);
  background-position: center 48%;
  background-size: cover;
  overflow: hidden;
}
.pm-news-hero::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--pm-lime-500), var(--pm-teal-600) 38%, transparent 76%); }
.pm-news-hero-inner { position: relative; z-index: 2; display: flex; min-height: 350px; flex-direction: column; justify-content: flex-end; padding-block: 48px 50px; }
.pm-news-hero .pm-breadcrumb--article { margin: 0 0 42px; }
.pm-news-hero .pm-breadcrumb--article a,
.pm-news-hero .pm-breadcrumb--article span { color: rgba(255, 255, 255, .72); }
.pm-news-hero-label { color: var(--pm-lime-400); font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.pm-news-hero-title { margin: 8px 0 0; color: #fff; font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 760; line-height: 1.08; letter-spacing: -.05em; }
.pm-news-hero-word { position: absolute; right: 4vw; bottom: -24px; color: transparent; font-size: clamp(7rem, 15vw, 13rem); font-weight: 900; line-height: .78; letter-spacing: -.07em; -webkit-text-stroke: 1px rgba(255,255,255,.13); pointer-events: none; }

.pm-news-head { position: relative; padding: 82px 0 76px; background: #fff; border-bottom: 1px solid var(--pm-line); overflow: hidden; }
.pm-news-head-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 155px minmax(0, 930px); justify-content: center; gap: 68px; }
.pm-news-date { padding-top: 6px; border-right: 1px solid var(--pm-line); }
.pm-news-date > span { display: block; margin-bottom: 18px; color: #829096; font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.pm-news-date time { display: grid; gap: 8px; font-style: normal; font-variant-numeric: tabular-nums; }
.pm-news-date b { color: var(--pm-ink); font-size: 2.05rem; font-weight: 600; line-height: 1; letter-spacing: -.03em; }
.pm-news-date em { color: var(--pm-teal-700); font-size: .82rem; font-style: normal; font-weight: 750; letter-spacing: .14em; }
.pm-news-meta-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; color: #829096; font-size: .78rem; }
.pm-news-category { display: inline-flex; align-items: center; min-height: 36px; padding: 0 16px; color: var(--pm-teal-700); border: 1px solid rgba(6,107,101,.34); font-size: .78rem; font-weight: 750; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.pm-news-category:hover { color: #fff; background: var(--pm-teal-700); border-color: var(--pm-teal-700); }
.pm-news-heading h1 { max-width: 960px; margin: 0; color: var(--pm-ink); font-size: clamp(2.7rem, 4.6vw, 4.35rem); line-height: 1.14; letter-spacing: -.05em; }
.pm-news-deck { max-width: 820px; margin: 30px 0 0; color: #526269; font-size: clamp(1.08rem, 1.55vw, 1.32rem); line-height: 1.85; }
.pm-news-author { display: flex; flex-wrap: wrap; gap: 10px 30px; margin: 29px 0 0; color: #829096; font-size: .78rem; }
.pm-news-head-word { position: absolute; right: -20px; bottom: -40px; color: transparent; font-size: clamp(8rem, 18vw, 16rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; -webkit-text-stroke: 1px rgba(8,124,120,.08); pointer-events: none; }

.pm-news-body { padding: 86px 0 116px; background: #fff; }
.pm-news-body .pm-article-content { width: min(100%, 840px); margin: 0 auto; }
.pm-news-body .pm-article-prose { color: #34444d; font-size: 1.06rem; line-height: 2; }
.pm-news-body .pm-article-prose h2 { margin: 0 0 26px; padding: 0 0 16px; font-size: clamp(1.75rem, 2.5vw, 2.25rem); line-height: 1.38; }
.pm-news-body .pm-article-prose h2:not(:first-child) { margin-top: 70px; }
.pm-news-body .pm-article-prose h3 { margin-top: 48px; font-size: 1.42rem; line-height: 1.5; }
.pm-news-body .pm-article-prose h4 { margin-top: 38px; color: #007fae; font-size: 1.17rem; font-weight: 720; }
.pm-news-body .pm-article-prose h5 { display: flex; align-items: center; gap: 11px; margin-top: 32px; color: #25373e; font-size: 1rem; font-weight: 760; letter-spacing: .04em; }
.pm-news-body .pm-article-prose h5::before { content: ""; flex: 0 0 18px; width: 18px; height: 2px; background: var(--pm-lime-500); }
.pm-news-body .pm-article-prose p { margin-bottom: 30px; }
.pm-news-body .pm-article-note { margin: 48px 0; padding: 28px 32px; background: #eff5f2; border-left: 3px solid var(--pm-teal-700); }

.pm-news-navigation { background: #fff; border-top: 1px solid var(--pm-line); border-bottom: 1px solid var(--pm-line); }
.pm-news-navigation > .pm-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; min-height: 126px; }
.pm-news-navigation-side { display: flex; align-items: center; }
.pm-news-navigation-side--next { justify-content: flex-end; text-align: right; }
.pm-news-navigation-side a { display: grid; max-width: 360px; gap: 7px; }
.pm-news-navigation-side span { color: var(--pm-teal-700); font-size: .72rem; font-weight: 750; }
.pm-news-navigation-side b { font-size: .9rem; line-height: 1.45; }
.pm-news-back { display: flex; align-items: center; justify-content: center; gap: 10px; min-width: 190px; padding: 0 30px; color: var(--pm-ink); border-right: 1px solid var(--pm-line); border-left: 1px solid var(--pm-line); font-size: .82rem; font-weight: 750; }
.pm-news-back span { color: var(--pm-teal-700); font-size: 1.1rem; transition: transform .2s ease; }
.pm-news-back:hover span { transform: translateX(-4px); }

@media (max-width: 760px) {
  .pm-news-hero,
  .pm-news-hero-inner { min-height: 270px; }
  .pm-news-hero { background-position: 58% center; }
  .pm-news-hero-inner { padding-block: 34px 32px; }
  .pm-news-hero .pm-breadcrumb--article { margin-bottom: 30px; }
  .pm-news-hero-label { font-size: .7rem; }
  .pm-news-hero-title { font-size: clamp(2.35rem, 11vw, 3.15rem); }
  .pm-news-hero-word { right: -18px; bottom: -7px; font-size: 6.2rem; }

  .pm-news-head { padding: 48px 0 50px; }
  .pm-news-head-grid { grid-template-columns: 1fr; gap: 28px; }
  .pm-news-date { display: flex; align-items: center; justify-content: space-between; padding: 0 0 22px; border-right: 0; border-bottom: 1px solid var(--pm-line); }
  .pm-news-date > span { margin: 0; }
  .pm-news-date time { display: flex; align-items: baseline; gap: 10px; }
  .pm-news-date b { font-size: 1.5rem; }
  .pm-news-date em { font-size: .74rem; }
  .pm-news-meta-top { margin-bottom: 20px; }
  .pm-news-heading h1 { font-size: clamp(2.1rem, 9.2vw, 2.75rem); line-height: 1.22; }
  .pm-news-deck { margin-top: 24px; font-size: 1.03rem; line-height: 1.82; }
  .pm-news-author { display: grid; gap: 7px; margin-top: 24px; }
  .pm-news-head-word { display: none; }

  .pm-news-body { padding: 58px 0 78px; }
  .pm-news-body .pm-article-prose { font-size: 1rem; line-height: 1.95; }
  .pm-news-body .pm-article-prose h2 { margin-bottom: 22px; font-size: clamp(1.55rem, 7vw, 1.92rem); }
  .pm-news-body .pm-article-prose h2:not(:first-child) { margin-top: 56px; }
  .pm-news-body .pm-article-prose h3 { margin-top: 40px; font-size: 1.25rem; }
  .pm-news-body .pm-article-prose h4 { margin-top: 34px; font-size: 1.1rem; }
  .pm-news-body .pm-article-prose h5 { margin-top: 30px; font-size: .98rem; }
  .pm-news-body .pm-article-note { margin: 40px 0; padding: 22px 20px; }

  .pm-news-navigation > .pm-container { grid-template-columns: 1fr; min-height: 0; }
  .pm-news-navigation-side { display: none; }
  .pm-news-back { min-height: 82px; border: 0; }
}

/* 1.10.2 — editorial knowledge overview */
.pm-knowledge-listing {
  padding: 0 0 112px;
  background: #fff;
}
.pm-knowledge-tabs {
  justify-content: flex-start;
  gap: 0;
  margin: 0 0 78px;
  border-top: 0;
  border-bottom: 1px solid var(--pm-line);
}
.pm-knowledge-tabs a {
  min-width: 164px;
  padding: 23px 30px 21px;
  color: #6b787e;
  font-size: .88rem;
  letter-spacing: .02em;
}
.pm-knowledge-tabs a::after {
  right: 30px;
  left: 30px;
  height: 2px;
}
.pm-knowledge-tabs a:hover,
.pm-knowledge-tabs a.is-active { color: var(--pm-teal-700); }

.pm-knowledge-heading {
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--pm-line);
}
.pm-knowledge-heading .pm-section-label {
  margin-bottom: 13px;
  color: #77858a;
  font-size: .72rem;
  letter-spacing: .14em;
}
.pm-knowledge-heading h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.55rem);
  font-weight: 690;
}
.pm-knowledge-heading > p {
  max-width: 510px;
  color: #66757b;
  font-size: 1rem;
  line-height: 1.9;
}

.pm-knowledge-grid {
  gap: 34px 28px;
  margin-top: 42px;
}
.pm-knowledge-card {
  border: 1px solid var(--pm-line);
  background: #fff;
  box-shadow: none;
}
.pm-knowledge-card:hover {
  transform: translateY(-4px);
  border-color: #b8c9cc;
  box-shadow: 0 18px 42px rgba(5,27,38,.09);
}
.pm-knowledge-cover { aspect-ratio: 1.55 / 1; }
.pm-knowledge-placeholder {
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, #071a24 0%, #0a3540 100%);
  background-size: 54px 54px, 54px 54px, auto;
}
.pm-knowledge-placeholder::before {
  display: block;
  right: -14px;
  bottom: 22px;
  left: auto;
  color: transparent;
  font-size: clamp(4.5rem, 9vw, 8.7rem);
  letter-spacing: -.08em;
  -webkit-text-stroke: 1px rgba(255,255,255,.18);
}
.pm-knowledge-placeholder b {
  top: 34px;
  left: 36px;
  color: var(--pm-lime-400);
}
.pm-knowledge-card-body {
  padding: 32px 32px 28px;
}
.pm-knowledge-card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #879398;
  font-size: .75rem;
  font-variant-numeric: tabular-nums;
}
.pm-knowledge-category { font-size: .75rem; }
.pm-knowledge-card h3 {
  margin: 30px 0 16px;
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  font-weight: 680;
  line-height: 1.42;
}
.pm-knowledge-card p {
  margin: 0 0 34px;
  color: #64737a;
  font-size: .96rem;
  line-height: 1.85;
}
.pm-knowledge-meta {
  padding-top: 20px;
  font-size: .78rem;
}
.pm-knowledge-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pm-teal-700);
  font-weight: 750;
}
.pm-knowledge-card-link i {
  font-size: 1rem;
  font-style: normal;
  transition: transform .2s ease;
}
.pm-knowledge-card:hover .pm-knowledge-card-link i { transform: translateX(5px); }

.pm-knowledge-grid--single { grid-template-columns: 1fr; }
.pm-knowledge-grid--single .pm-knowledge-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 410px;
}
.pm-knowledge-grid--single .pm-knowledge-cover {
  aspect-ratio: auto;
  min-height: 410px;
}
.pm-knowledge-grid--single .pm-knowledge-card-body {
  justify-content: center;
  padding: 52px 54px 44px;
}
.pm-knowledge-grid--single .pm-knowledge-card h3 {
  max-width: 520px;
  margin-top: 38px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  letter-spacing: -.04em;
}
.pm-knowledge-grid--single .pm-knowledge-card p {
  max-width: 520px;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .pm-knowledge-listing { padding-bottom: 78px; }
  .pm-knowledge-listing > .pm-container { width: 100%; }
  .pm-knowledge-tabs {
    margin-bottom: 54px;
    padding-inline: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .pm-knowledge-tabs::-webkit-scrollbar { display: none; }
  .pm-knowledge-tabs a {
    flex: 0 0 auto;
    min-width: 132px;
    padding: 20px 22px 18px;
  }
  .pm-knowledge-heading,
  .pm-knowledge-grid,
  .pm-pagination,
  .pm-empty-state {
    width: min(calc(100% - 40px), var(--pm-container));
    margin-inline: auto;
  }
  .pm-knowledge-heading {
    display: block;
    padding-bottom: 30px;
  }
  .pm-knowledge-heading > p {
    margin-top: 18px;
    font-size: .96rem;
    line-height: 1.8;
  }
  .pm-knowledge-grid { margin-top: 30px; }
  .pm-knowledge-grid--single .pm-knowledge-card {
    display: flex;
    min-height: 0;
  }
  .pm-knowledge-grid--single .pm-knowledge-cover {
    min-height: 0;
    aspect-ratio: 1.48 / 1;
  }
  .pm-knowledge-card-body,
  .pm-knowledge-grid--single .pm-knowledge-card-body {
    padding: 28px 22px 24px;
  }
  .pm-knowledge-card h3,
  .pm-knowledge-grid--single .pm-knowledge-card h3 {
    margin: 26px 0 14px;
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    line-height: 1.35;
  }
  .pm-knowledge-card p,
  .pm-knowledge-grid--single .pm-knowledge-card p {
    margin-bottom: 28px;
    font-size: .96rem;
    line-height: 1.8;
  }
  .pm-knowledge-card-kicker { gap: 12px; }
}

/* 1.10.21 — semantic labels replace decorative numbering */
.pm-service-tabs a {
  display: flex;
  grid-template-columns: none;
  justify-content: center;
  padding-inline: 28px;
  text-align: center;
}
.pm-service-tabs a b { font-size: 1rem; }
.pm-service-tabs a[aria-current="page"]::after { height: 5px; }

.pm-home-service > div::before,
.pm-service-pains article::before,
.pm-capability-grid article::before,
.pm-question-grid article::before,
.pm-about-vision-tabs article::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--pm-teal-700) 0 72%, var(--pm-lime-500) 72% 100%);
}
.pm-home-service > div::before {
  background: linear-gradient(90deg, #fff 0 72%, var(--pm-lime-500) 72% 100%);
}
.pm-home-service > div::after {
  content: "查看方案  ▸";
  display: inline-block;
  margin-top: 24px;
  padding-top: 12px;
  color: rgba(255,255,255,.88);
  border-top: 1px solid rgba(255,255,255,.34);
  font-size: .78rem;
  font-weight: 720;
  letter-spacing: .03em;
}

.pm-service-pains article,
.pm-capability-grid article,
.pm-question-grid article { position: relative; }
.pm-service-pains h3,
.pm-capability-grid h3,
.pm-question-grid h3 { margin-top: 0; }
.pm-service-pains article::before,
.pm-capability-grid article::before,
.pm-question-grid article::before { margin-top: 4px; }

.pm-deliverable-list li {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 16px;
}
.pm-deliverable-list li::before {
  content: "";
  align-self: center;
  width: 12px;
  height: 3px;
  background: var(--pm-lime-500);
  box-shadow: 5px 0 0 var(--pm-teal-700);
}

.pm-industry-detail-grid h3 { margin-top: 32px; }

.pm-about-vision-tabs h3 { margin: 0 0 6px; }
.pm-about-vision-tabs article::before { flex: 0 0 3px; }

.pm-advantage-capability-list article {
  position: relative;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  padding-left: 34px;
}
.pm-advantage-capability-list article::before {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 46px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pm-teal-700) 0 76%, var(--pm-lime-500) 76% 100%);
}
.pm-advantage-capability-list ul { grid-column: 2; }
.pm-advantage-solution-links a {
  grid-template-columns: minmax(0, 1fr) 20px;
}

.pm-team-group > header { gap: 0; }

@media (max-width: 1050px) {
  .pm-advantage-capability-list article {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 28px;
  }
  .pm-advantage-capability-list ul {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pm-service-tabs a {
    flex-basis: 172px;
    padding-inline: 20px;
  }
  .pm-service-tabs a b { font-size: .92rem; }
  .pm-home-service > div::before,
  .pm-service-pains article::before,
  .pm-capability-grid article::before,
  .pm-question-grid article::before,
  .pm-about-vision-tabs article::before { margin-bottom: 18px; }
  .pm-advantage-capability-list article {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0 32px 22px;
  }
  .pm-advantage-capability-list article::before {
    top: 32px;
    bottom: 32px;
  }
  .pm-advantage-capability-list ul {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .pm-advantage-solution-links a { padding-inline: 22px; }
}

/* 1.10.22 — keep outlined display words fully visible at every viewport */
.pm-page-hero .pm-page-hero-word {
  right: 24px;
  bottom: 0;
  max-width: calc(100% - 48px);
  font-size: min(var(--pm-hero-word-vw, 15vw), 13.5rem);
  line-height: .86;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.pm-page-hero--about .pm-page-hero-word,
.pm-page-hero--case-studies .pm-page-hero-word {
  right: 50%;
  bottom: 0;
  transform: translateX(50%);
}
.pm-knowledge-placeholder::before {
  right: clamp(18px, 2.5vw, 36px);
  bottom: 20px;
  font-size: min(12vw, 7rem);
  line-height: .9;
  letter-spacing: -.055em;
  -webkit-text-stroke-color: rgba(255,255,255,.24);
}

@media (max-width: 760px) {
  .pm-page-hero .pm-page-hero-word {
    right: 16px;
    max-width: calc(100% - 32px);
  }
  .pm-page-hero--about .pm-page-hero-word,
  .pm-page-hero--case-studies .pm-page-hero-word {
    right: 50%;
  }
  .pm-knowledge-placeholder::before {
    right: 18px;
    bottom: 16px;
    font-size: min(13vw, 4.4rem);
  }
}

/* 1.10.25 — remove oversized outlined display words on compact screens */
@media (max-width: 760px) {
  .pm-page-hero-word,
  .pm-ghost-word,
  .pm-news-hero-word,
  .pm-news-head-word,
  .pm-case-article-outline,
  .pm-knowledge-placeholder::before,
  .pm-about-profile::after,
  .pm-about-vision::after,
  .pm-about-evidence::after,
  .pm-advantage-orbit-section::after {
    display: none;
  }
}
