/* Page composition layer for the public Astro site. */

/* Homepage */
.home-page {
  background: var(--surface);
}

.home-page.home-slide-light .header--overlay {
  border-bottom-color: rgba(238, 238, 238, 0.9);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.home-page .header--overlay:not(.is-scrolled):hover {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.home-page main {
  overflow: clip;
}

.landing-carousel {
  position: relative;
  height: clamp(620px, calc(100svh - var(--header-height)), 860px);
  min-height: 620px;
  overflow: hidden;
  background: var(--surface-alt);
}

.landing-slide {
  position: absolute;
  inset: 0;
  display: grid;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--motion), visibility var(--motion);
}

.landing-slide.active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.landing-slide--factory {
  background: url("assets/site-library/factory-pouring.webp") center / cover no-repeat;
  color: #fff;
}

.landing-slide--factory::before {
  position: absolute;
  inset: 0;
  background: rgba(23, 26, 32, 0.46);
  content: "";
}

.landing-slide--wear,
.landing-slide--oem {
  background: var(--surface-alt);
  color: var(--ink);
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--max-width), 100%);
  height: 100%;
  margin-inline: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-inline: var(--gutter);
}

.slide-content--center {
  align-items: center;
  padding-inline: max(var(--gutter), 8vw);
  text-align: center;
}

.slide-content > p {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
}

.slide-content--center > p,
.landing-slide--factory .slide-content > p {
  color: #fff;
}

.slide-content h1,
.slide-content h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: inherit;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
}

.slide-content > span {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.slide-content--center > span,
.landing-slide--factory .slide-content > span {
  color: rgba(255, 255, 255, 0.88);
}

.slide-content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.slide-content > div a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  transition: background-color var(--motion), border-color var(--motion), color var(--motion);
}

.slide-content > div a:hover {
  background: var(--accent-dark);
}

.slide-content > div a + a {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.slide-content--center > div a + a,
.landing-slide--factory .slide-content > div a + a {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.slide-product-image {
  position: absolute;
  z-index: 1;
  top: 5%;
  right: max(20px, calc((100% - 1383px) / 2));
  display: flex;
  width: min(58vw, 760px);
  height: 90%;
  align-items: center;
  justify-content: center;
}

.slide-product-image::before {
  display: none;
}

.slide-product-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.slide-product-image span {
  position: absolute;
  right: 0;
  bottom: 8%;
  color: var(--muted);
  font-size: 12px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--control-radius);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color var(--motion), color var(--motion);
}

.carousel-arrow:hover {
  background: #fff;
  color: var(--ink);
}

.carousel-arrow--prev {
  left: 20px;
}

.carousel-arrow--next {
  right: 20px;
}

.carousel-progress {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  left: var(--gutter);
  z-index: 5;
  display: flex;
  max-width: 560px;
  margin-inline: auto;
  gap: 8px;
}

.carousel-progress button {
  flex: 1;
  height: 18px;
  border: 0;
  padding: 8px 0;
  background: transparent;
}

.carousel-progress i {
  display: block;
  height: 2px;
  background: rgba(23, 26, 32, 0.24);
}

.landing-slide--factory ~ .carousel-progress i {
  background: rgba(255, 255, 255, 0.48);
}

.carousel-progress button.active i {
  background: var(--accent);
}

.buyer-check {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.buyer-check > div {
  min-height: 172px;
  border-left: 1px solid var(--line);
  padding: 28px var(--gutter);
}

.buyer-check > div:last-child {
  border-right: 1px solid var(--line);
}

.buyer-check span,
.service-strip span,
.commitment-steps span,
.approach-grid article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 12px;
}

.buyer-check strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

.buyer-check p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.home-intro,
.home-products,
.commitment-path {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  padding: 100px var(--gutter);
}

.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.intro-collage {
  min-height: 520px;
  position: relative;
}

.intro-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--card-radius);
}

.intro-photo--factory {
  top: 0;
  left: 0;
  width: 44%;
  height: 240px;
  background-size: cover;
  background-position: center;
}

.intro-photo--part {
  bottom: 0;
  left: 5%;
  width: 42%;
  height: 280px;
  object-fit: cover;
}

.intro-photo--catalogue {
  top: 60px;
  right: 0;
  width: 52%;
  height: 400px;
  object-fit: cover;
}

.intro-stat {
  position: absolute;
  right: 0;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  padding: 16px 20px;
  background: #fff;
}

.intro-stat strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.intro-stat span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.intro-copy h2,
.home-section-head h2,
.home-cta h2 {
  margin-bottom: 20px;
}

.intro-copy .lead {
  max-width: 560px;
}

.check-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--muted);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--accent);
  content: "✓";
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 max(var(--gutter), calc((100% - var(--max-width)) / 2));
  background: var(--dark-surface);
  color: #fff;
}

.service-strip a {
  min-height: 250px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 24px;
  transition: background-color var(--motion), color var(--motion);
}

.service-strip a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.service-strip a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.service-strip h3,
.service-strip p {
  color: #fff;
}

.service-strip h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.trust-structure {
  padding: 100px max(var(--gutter), calc((100% - var(--max-width)) / 2));
  background: var(--surface-alt);
}

.trust-heading,
.commitment-head,
.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.trust-heading h2,
.commitment-head h2,
.home-section-head h2 {
  margin: 0;
}

.trust-heading > p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-grid a {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border-radius: var(--card-radius);
  transition: color var(--motion), background-color var(--motion);
}

.trust-grid a:hover {
  background: var(--ink);
  color: #fff;
}

.trust-grid small,
.trust-grid span {
  color: var(--accent);
  font-size: 12px;
}

.trust-grid h3 {
  margin: 38px 0 12px;
  color: var(--ink);
  font-size: 20px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-grid span {
  margin-top: auto;
  padding-top: 24px;
}

.trust-grid a:hover h3,
.trust-grid a:hover p {
  color: #fff;
}

.home-section-head .outline-link,
.outline-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: var(--control-radius);
  padding: 10px 16px;
  font-size: 14px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
}

.showcase-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 70px 24px 24px;
  background: rgba(23, 26, 32, 0.76) !important;
  color: #fff;
}

.showcase-card small,
.showcase-card h3,
.showcase-card p {
  color: #fff;
}

.showcase-card small {
  font-size: 12px;
}

.showcase-card h3 {
  margin: 9px 0;
  font-size: 22px;
}

.showcase-card p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.showcase-card b {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.commitment-path {
  border-top: 1px solid var(--line);
}

.commitment-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.commitment-steps a {
  min-height: 210px;
  padding: 24px;
  background: #fff;
  transition: background-color var(--motion), color var(--motion);
}

.commitment-steps a:hover {
  background: var(--surface-alt);
}

.commitment-steps h3 {
  margin: 38px 0 10px;
  font-size: 21px;
}

.commitment-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.home-cta,
.solutions-cta,
.resources-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: 80px max(var(--gutter), calc((100% - var(--max-width)) / 2));
  background: var(--dark-surface);
  color: #fff;
}

.home-cta h2,
.home-cta p,
.solutions-cta h2,
.solutions-cta p,
.resources-cta h2,
.resources-cta p {
  color: #fff;
}

.home-cta p:not(.section-kicker),
.solutions-cta p:not(.eyebrow),
.resources-cta p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
}

.home-cta > .btn,
.solutions-cta > div:last-child,
.resources-cta > div:last-child {
  align-self: end;
}

/* Product catalogue */
.products-page,
.product-detail-page,
.dynamic-product-page {
  background: #fff;
}

.product-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: clamp(560px, calc(100svh - var(--header-height)), 780px);
  align-items: center;
  gap: 48px;
  padding: 70px max(var(--gutter), calc((100% - var(--max-width)) / 2));
  background: var(--surface-alt);
}

.product-feature__copy {
  max-width: 520px;
}

.product-feature h1 {
  margin-bottom: 20px;
}

.product-feature__copy > p:not(.product-index) {
  max-width: 440px;
  color: var(--muted);
}

.feature-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 12px;
  border-radius: var(--control-radius);
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  transition: background-color var(--motion);
}

.feature-btn:hover {
  background: var(--accent-dark);
}

.feature-text-link {
  display: inline-flex;
  margin-top: 22px;
  margin-left: 14px;
  font-size: 14px;
}

.product-feature__visual {
  position: relative;
  display: flex;
  min-height: 440px;
  align-items: center;
  justify-content: center;
}

.product-feature__visual img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-feature__visual span {
  position: absolute;
  right: 0;
  bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.product-catalogue {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: 90px var(--gutter) 120px;
}

.catalogue-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.catalogue-heading p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.catalogue-heading h2 {
  margin: 0;
}

.catalogue-heading > span {
  color: var(--muted);
  font-size: 12px;
}

.category-section {
  scroll-margin-top: 100px;
  margin-top: 72px;
}

.category-title {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px 0 28px;
}

.category-title > span {
  color: var(--accent);
  font-size: 16px;
}

.category-title h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.category-title p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalogue-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
  transition: background-color var(--motion);
}

.catalogue-card:hover {
  background: #ececec;
}

.catalogue-image {
  display: flex;
  height: 290px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.catalogue-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding: 20px 22px 23px;
}

.catalogue-meta h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.catalogue-meta p,
.catalogue-meta b {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.catalogue-inquiry {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 72px;
  border-radius: var(--card-radius);
  padding: 36px 40px;
  background: var(--dark-surface);
  color: #fff;
}

.catalogue-inquiry small,
.catalogue-inquiry h3,
.catalogue-inquiry p {
  color: #fff;
}

.catalogue-inquiry small {
  font-size: 12px;
}

.catalogue-inquiry h3 {
  margin: 12px 0 8px;
  font-size: 28px;
}

.catalogue-inquiry p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.catalogue-inquiry > span {
  flex: 0 0 auto;
  color: #fff;
  font-size: 14px;
}

/* Product detail pages */
.product-breadcrumb,
.collection-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.product-breadcrumb strong,
.collection-breadcrumb strong {
  overflow: hidden;
  color: var(--ink);
  font-weight: 500;
  text-overflow: ellipsis;
}

.product-breadcrumb a:hover,
.collection-breadcrumb a:hover {
  color: var(--accent);
}

.product-hero,
.dp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  min-height: clamp(520px, calc(100svh - var(--header-height) - 36px), 720px);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: 14px;
  padding-bottom: 72px;
}

.product-detail-visual,
.dp-main-image {
  display: flex;
  min-height: 460px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface-alt);
  border-radius: var(--card-radius);
  padding: 36px;
}

.product-detail-visual img,
.dp-main-image img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-hero-copy h1,
.dp-summary h1 {
  margin-bottom: 20px;
}

.product-hero-copy .lead,
.dp-lead {
  margin-bottom: 28px;
  color: var(--muted);
}

.product-facts,
.dp-facts {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.product-facts > div,
.dp-facts > div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.product-facts dt,
.dp-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.product-facts dd,
.dp-facts dd {
  margin: 0;
  color: var(--body);
  font-size: 14px;
}

.product-actions,
.dp-actions,
.dp-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-note,
.dp-microcopy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.product-media-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  padding-bottom: 80px;
}

.product-media-gallery figure {
  height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.product-media-gallery figure:first-child {
  height: 390px;
  grid-row: span 2;
}

.product-media-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section,
.dp-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.product-overview,
.dp-section.dp-soft,
.specs-section,
.related-band {
  background: var(--surface-alt);
}

.section-split,
.specs-grid,
.related-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 8vw, 110px);
}

.section-split > div:last-child > p,
.specs-grid > p,
.related-row p {
  color: var(--muted);
}

.challenge-grid,
.quality-step-grid,
.dp-feature-grid,
.dp-evidence-grid,
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.challenge-grid article,
.quality-step-grid article,
.dp-feature-grid article,
.dp-evidence-grid article,
.evidence-grid article {
  min-height: 190px;
  padding: 26px;
  background: #fff;
}

.challenge-grid h3,
.quality-step-grid h3,
.dp-feature-grid h3,
.dp-evidence-grid h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.challenge-grid p,
.quality-step-grid p,
.dp-feature-grid p,
.dp-evidence-grid p,
.evidence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.process-steps,
.solution-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.process-steps li,
.solution-steps li {
  min-height: 170px;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.process-steps li:last-child,
.solution-steps li:last-child {
  border-right: 0;
}

.process-steps span,
.solution-steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 12px;
}

.process-steps p,
.solution-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.quality-band,
.dp-section.dp-dark,
.solution-section.dark {
  background: var(--dark-surface);
  color: #fff;
}

.quality-band h2,
.quality-band p,
.dp-section.dp-dark h2,
.dp-section.dp-dark p,
.solution-section.dark h2,
.solution-section.dark p {
  color: #fff;
}

.spec-table,
.dp-spec-table {
  border-top: 1px solid var(--line-strong);
}

.spec-table > div,
.dp-spec-table > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.spec-table span,
.dp-spec-table span {
  color: var(--muted);
  font-size: 12px;
}

.spec-table strong,
.dp-spec-table strong {
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
}

.model-table-wrap,
.dp-range-scroll {
  overflow-x: auto;
}

.model-table,
.dp-range {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.model-table th,
.model-table td,
.dp-range th,
.dp-range td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.model-table th,
.dp-range th {
  color: var(--muted);
  font-weight: 500;
}

.evidence-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.evidence-list li::before {
  margin-right: 10px;
  color: var(--accent);
  content: "+";
}

.faq-list,
.contact-faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details,
.contact-faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary,
.contact-faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 20px 42px 20px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.faq-list summary::-webkit-details-marker,
.contact-faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after,
.contact-faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--accent);
  content: "+";
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after,
.contact-faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p,
.contact-faq-list details p {
  max-width: 850px;
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.detail-next-step,
.dp-final-cta,
.quality-next-step {
  margin-top: 64px;
  margin-bottom: 80px;
  border-radius: var(--card-radius);
  padding: 40px;
  background: var(--surface-alt);
}

.detail-next-step h2,
.dp-final-cta h2,
.quality-next-step h2 {
  margin-bottom: 16px;
}

.detail-next-step > p:not(.eyebrow),
.dp-final-cta > p:not(.eyebrow),
.quality-next-step > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.detail-inquiry-form {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.detail-inquiry-form .field-wide,
.detail-inquiry-form .form-submit {
  grid-column: 1 / -1;
}

.product-gallery-thumbs,
.dp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.product-gallery-thumb,
.dp-thumbs button,
.dp-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  padding: 6px;
  background: var(--surface-alt);
}

.product-gallery-thumb img,
.dp-thumbs img,
.dp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-gallery-thumb.is-active,
.dp-thumbs button.is-active,
.dp-thumb.is-active {
  border-color: var(--accent);
}

/* Capabilities, solutions and article families */
.solutions-page,
.solution-page,
.resources-page,
.resource-page {
  background: #fff;
}

.solutions-intro,
.solution-list,
.resources-intro,
.resource-feed {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.solutions-intro,
.resources-intro {
  padding-top: 88px;
  padding-bottom: 72px;
}

.solutions-intro-grid,
.resources-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}

.solutions-intro-grid {
  margin-top: 20px;
}

.solutions-intro-grid > div > p,
.resources-intro > p {
  color: var(--muted);
}

.solution-list {
  padding-bottom: 100px;
}

.solution-entry {
  border-top: 1px solid var(--line);
  padding: 64px 0 72px;
}

.solution-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.solution-heading h2 {
  margin: 0;
}

.solution-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.solution-meta li {
  border-right: 1px solid var(--line-strong);
  padding: 0 12px;
}

.solution-meta li:first-child {
  padding-left: 0;
}

.solution-meta li:last-child {
  border-right: 0;
  padding-right: 0;
}

.solution-visual {
  position: relative;
  height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.solution-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: #fff;
  font-size: 13px;
}

.solution-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 28px 8% 0;
}

.solution-summary p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.solution-link {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
  font-size: 14px;
  white-space: nowrap;
}

.resource-feed {
  padding-bottom: 100px;
}

.resource-entry {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 56px 0;
}

.resource-image {
  height: 340px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-copy h2 {
  margin-bottom: 14px;
  font-size: 32px;
}

.resource-copy > div > p:not(.resource-meta) {
  color: var(--muted);
}

.resource-meta span,
.resource-tags span {
  color: var(--muted);
  font-size: 12px;
}

.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.resource-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  padding: 10px 16px;
  font-size: 14px;
}

.collection-breadcrumb {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.article-page {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.article-header {
  max-width: 820px;
  padding: 36px 0 52px;
}

.article-header h1 {
  margin-bottom: 18px;
}

.article-lead {
  color: var(--muted);
  font-size: 18px;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

.article-main > figure {
  margin: 0 0 36px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.article-main > figure img {
  display: block;
  width: 100%;
}

.article-content {
  color: var(--body);
}

.article-content h2,
.article-content h3 {
  margin: 36px 0 14px;
}

.article-content p,
.article-content li {
  color: var(--body);
  line-height: 1.75;
}

.article-content ul,
.article-content ol {
  padding-left: 22px;
}

.article-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 104px;
}

.article-sidebar-card {
  border-radius: var(--card-radius);
  padding: 24px;
  background: var(--surface-alt);
}

.article-sidebar-card h2 {
  margin-bottom: 20px;
  font-size: 26px;
}

.article-share > div {
  display: grid;
  gap: 8px;
}

.article-share a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.article-share a:hover {
  color: var(--accent);
}

.article-share svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.related-articles {
  padding: 96px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.related-card {
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.related-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.related-card > span {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  padding: 18px;
}

.related-card strong {
  margin: 10px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

.related-card em {
  margin-top: auto;
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
}

.solution-page main {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
}

.solution-page .collection-breadcrumb {
  width: 100%;
}

.solution-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 70svh, 720px);
  gap: 60px;
  align-items: center;
  padding: 30px var(--gutter) 80px;
}

.solution-hero h1 {
  margin-bottom: 18px;
}

.solution-hero > div > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
}

.solution-hero figure {
  height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.solution-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-section {
  padding: 76px var(--gutter);
}

.solution-section.split,
.solution-section.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.solution-section.soft {
  background: var(--surface-alt);
}

.solution-section > p,
.solution-columns li,
.solution-section.faq p {
  color: var(--muted);
}

.solution-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 30px;
}

.solution-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-columns li {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.solution-final {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 72px var(--gutter);
  background: var(--surface-alt);
}

.solution-final h2 {
  margin-bottom: 14px;
}

.solution-final p {
  margin: 0;
  color: var(--muted);
}

/* About, quality and contact */
.about-page,
.quality-page,
.contact-page {
  background: #fff;
}

.about-portfolio,
.quality-page main,
.contact-page main {
  overflow: clip;
}

.about-showcase,
.about-profile,
.about-capabilities,
.about-approach,
.about-clients,
.about-evidence,
.about-faq {
  padding-top: 78px;
  padding-bottom: 88px;
}

.about-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.about-showcase__head h1 {
  margin: 0;
}

.about-showcase__head > p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-feature-card {
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.about-feature-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.about-feature-card div {
  padding: 18px;
}

.about-feature-card strong,
.about-feature-card span {
  display: block;
}

.about-feature-card strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.about-feature-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.about-profile {
  display: grid;
  grid-template-columns: 140px 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.about-profile__image {
  overflow: hidden;
  border-radius: var(--card-radius);
}

.about-profile__image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-profile__copy h2 {
  margin-bottom: 20px;
}

.about-profile__copy p,
.about-profile__copy li {
  color: var(--muted);
  font-size: 14px;
}

.about-profile__copy ul {
  margin: 24px 0;
  padding-left: 20px;
}

.about-profile__copy li {
  margin-bottom: 8px;
}

.about-capabilities,
.about-approach,
.about-faq {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 32px;
}

.capability-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.capability-tags a {
  min-height: 100px;
  padding: 18px;
  background: var(--surface-alt);
  color: var(--body);
  font-size: 14px;
  transition: background-color var(--motion), color var(--motion);
}

.capability-tags a:hover {
  background: var(--ink);
  color: #fff;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.approach-grid article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about-numbers {
  background: var(--surface-alt);
}

.about-numbers .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 48px;
  padding-bottom: 48px;
}

.about-numbers .inner > div {
  border-left: 1px solid var(--line-strong);
  padding: 0 24px;
}

.about-numbers strong,
.about-numbers span {
  display: block;
}

.about-numbers strong {
  color: var(--accent);
  font-size: 32px;
  font-weight: 500;
}

.about-numbers span,
.clients-intro {
  color: var(--muted);
  font-size: 13px;
}

.client-logo-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.client-logo-row img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
}

.evidence-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.evidence-grid article {
  min-height: 180px;
}

.evidence-grid span {
  display: block;
  margin-top: 30px;
  color: var(--accent);
  font-size: 12px;
}

.about-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 72px max(var(--gutter), calc((100% - var(--max-width)) / 2));
  background: var(--surface-alt);
}

.about-cta h2 {
  margin-top: 10px;
}

.quality-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 70svh, 720px);
  gap: 60px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 80px;
}

.quality-hero__copy .lead {
  max-width: 600px;
  color: var(--muted);
}

.quality-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quality-hero__visual {
  height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-alt);
}

.quality-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-control-path,
.quality-documents {
  padding-top: 88px;
  padding-bottom: 88px;
}

.quality-section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.quality-section-heading > p:last-child,
.quality-scope__intro > p:last-child {
  color: var(--muted);
}

.quality-step-grid {
  grid-template-columns: repeat(4, 1fr);
}

.quality-step-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 12px;
}

.quality-scope {
  padding: 88px 0;
  background: var(--surface-alt);
}

.quality-scope__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.quality-scope-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line-strong);
  padding: 16px 0;
  color: var(--muted);
  font-size: 13px;
}

.quality-scope-row--head {
  color: var(--ink);
  font-weight: 500;
}

.quality-document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quality-document-grid article {
  min-height: 150px;
  padding: 24px;
  background: var(--surface-alt);
}

.quality-document-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.quality-document-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-intro {
  max-width: 860px;
  padding-top: 82px;
  padding-bottom: 56px;
  text-align: center;
}

.contact-intro h1 {
  margin: 14px auto 18px;
}

.contact-intro > p:last-child {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 96px;
}

.inquiry-panel {
  padding: 32px;
  background: var(--surface-alt);
}

.panel-heading h2,
.contact-details h2 {
  margin-bottom: 20px;
}

.contact-form {
  grid-template-columns: 1fr 1fr;
}

.contact-details {
  padding-top: 26px;
}

.contact-details > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.contact-detail-grid article {
  min-height: 100px;
  border: 1px solid var(--line);
  padding: 18px;
}

.contact-detail-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
}

.contact-detail-grid h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.contact-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-prep {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.contact-prep h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.contact-prep ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.contact-map-section {
  padding: 88px 0;
  background: var(--surface-alt);
}

.contact-map-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 30px;
}

.contact-map-heading > p {
  margin: 0;
  color: var(--muted);
}

.contact-map-frame {
  height: 420px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-faq {
  padding: 88px 0 100px;
}

.faq-heading {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}

.faq-heading h2 {
  margin: 14px auto;
}

.faq-heading > p:last-child {
  color: var(--muted);
}

.contact-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.contact-faq-list {
  background: #fff;
}

.contact-faq-list summary {
  padding-inline: 20px 48px;
}

.contact-faq-list details p {
  padding-inline: 20px;
}

.contact-faq-visual {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: url("assets/site-library/factory-machined-parts.webp") center / cover no-repeat;
}

.contact-faq-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(23, 26, 32, 0.44);
  content: "";
}

.contact-faq-visual span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
}

/* Legal and 404 */
.legal-page {
  max-width: 1120px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.legal-page > h1 {
  margin-bottom: 16px;
}

.legal-date {
  color: var(--muted);
  font-size: 12px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 64px;
  margin-top: 56px;
}

.legal-layout aside {
  display: grid;
  align-content: start;
  gap: 10px;
}

.legal-layout aside a {
  color: var(--muted);
  font-size: 13px;
}

.legal-layout aside a:hover {
  color: var(--accent);
}

.legal-content section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.legal-content p,
.legal-content li {
  color: var(--body);
  font-size: 14px;
  line-height: 1.75;
}

.error-page {
  background: var(--surface-alt);
}

.error-main {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 80px var(--gutter);
}

.error-content {
  width: min(720px, 100%);
  text-align: center;
}

.error-code {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: clamp(64px, 11vw, 132px);
  font-weight: 500;
  line-height: 0.9;
}

.error-content h1 {
  margin-inline: auto;
}

.error-message {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .buyer-check,
  .service-strip,
  .trust-grid,
  .commitment-steps,
  .about-feature-grid,
  .quality-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-intro,
  .product-feature,
  .quality-hero,
  .contact-main,
  .solution-hero,
  .resource-entry {
    grid-template-columns: 1fr;
  }

  .product-feature__copy {
    max-width: 640px;
  }

  .product-feature__visual {
    min-height: 360px;
  }

  .home-intro {
    gap: 48px;
  }

  .trust-heading,
  .commitment-head,
  .home-section-head,
  .about-showcase__head,
  .catalogue-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-card--large {
    grid-column: 1 / -1;
  }

  .solution-heading,
  .solutions-intro-grid,
  .resources-intro,
  .quality-scope__inner,
  .contact-map-heading,
  .contact-faq-layout,
  .article-layout,
  .solution-section.split,
  .solution-section.faq,
  .section-split,
  .specs-grid,
  .related-row,
  .dp-hero,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .solution-meta {
    justify-self: start;
  }

  .solution-summary {
    padding-inline: 0;
  }

  .article-sidebar {
    position: static;
  }

  .article-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .about-profile {
    grid-template-columns: 120px 280px 1fr;
  }

  .about-capabilities,
  .about-approach,
  .about-faq {
    grid-template-columns: 120px 1fr;
  }

  .client-logo-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .landing-carousel {
    height: 720px;
    min-height: 720px;
  }

  .slide-content,
  .slide-content--center {
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: left;
  }

  .slide-content--center {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .slide-content > span {
    font-size: 15px;
  }

  .slide-content > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .slide-product-image {
    top: auto;
    right: 0;
    bottom: 16px;
    width: 100%;
    height: 310px;
  }

  .slide-product-image span {
    right: 20px;
    bottom: 0;
  }

  .carousel-arrow--prev {
    left: 12px;
  }

  .carousel-arrow--next {
    right: 12px;
  }

  .buyer-check,
  .service-strip,
  .trust-grid,
  .commitment-steps,
  .product-showcase,
  .catalogue-grid,
  .about-feature-grid,
  .quality-step-grid,
  .quality-document-grid,
  .evidence-grid,
  .capability-tags,
  .approach-grid,
  .client-logo-row,
  .contact-detail-grid,
  .contact-prep ul,
  .article-sidebar,
  .related-grid,
  .solution-columns,
  .detail-inquiry-form,
  .contact-form,
  .dp-feature-grid,
  .dp-evidence-grid,
  .challenge-grid,
  .process-steps,
  .solution-steps,
  .evidence-list {
    grid-template-columns: 1fr;
  }

  .buyer-check > div {
    min-height: 0;
    border-right: 1px solid var(--line);
  }

  .home-intro,
  .home-products,
  .commitment-path,
  .trust-structure,
  .product-catalogue,
  .solutions-intro,
  .solution-list,
  .resources-intro,
  .resource-feed,
  .about-showcase,
  .about-profile,
  .about-capabilities,
  .about-approach,
  .about-clients,
  .about-evidence,
  .about-faq,
  .quality-control-path,
  .quality-documents,
  .contact-main,
  .legal-page {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .intro-collage {
    min-height: 390px;
  }

  .intro-photo--factory {
    height: 170px;
  }

  .intro-photo--part {
    height: 210px;
  }

  .intro-photo--catalogue {
    height: 285px;
  }

  .service-strip a {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .trust-grid a,
  .commitment-steps a {
    min-height: 190px;
  }

  .showcase-card {
    min-height: 380px;
  }

  .showcase-card--large {
    grid-column: auto;
  }

  .product-feature {
    min-height: 0;
    padding-top: 60px;
    padding-bottom: 36px;
  }

  .product-feature__visual {
    min-height: 290px;
  }

  .feature-text-link {
    margin-left: 0;
  }

  .catalogue-grid {
    gap: 14px;
  }

  .catalogue-image {
    height: 280px;
  }

  .catalogue-inquiry {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }

  .product-hero,
  .dp-hero {
    min-height: 0;
    padding-top: 4px;
    padding-bottom: 56px;
  }

  .product-detail-visual,
  .dp-main-image {
    min-height: 310px;
    padding: 24px;
  }

  .product-facts > div,
  .dp-facts > div,
  .spec-table > div,
  .dp-spec-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-actions,
  .dp-actions,
  .dp-final-actions,
  .quality-actions,
  .error-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-actions .btn,
  .dp-actions .btn,
  .dp-final-actions .btn,
  .quality-actions .btn,
  .error-actions .btn {
    width: 100%;
  }

  .product-media-gallery {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 56px;
  }

  .product-media-gallery figure,
  .product-media-gallery figure:first-child {
    height: 220px;
    grid-row: auto;
  }

  .product-media-gallery figure:first-child {
    height: 290px;
    grid-column: 1 / -1;
  }

  .product-section,
  .dp-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .challenge-grid article,
  .quality-step-grid article,
  .dp-feature-grid article,
  .dp-evidence-grid article,
  .evidence-grid article {
    min-height: 0;
  }

  .process-steps li,
  .solution-steps li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-heading {
    display: block;
  }

  .solution-meta {
    margin-top: 20px;
  }

  .solution-meta li {
    border-right: 0;
    padding-inline: 0 12px;
  }

  .solution-visual {
    height: 270px;
  }

  .solution-summary {
    display: block;
  }

  .solution-link {
    display: inline-flex;
    margin-top: 22px;
  }

  .resource-entry {
    gap: 28px;
  }

  .resource-image {
    height: 250px;
  }

  .about-profile,
  .about-capabilities,
  .about-approach,
  .about-faq {
    display: block;
  }

  .about-profile__image {
    margin: 24px 0;
  }

  .about-profile__image img {
    height: 300px;
  }

  .about-numbers .inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .about-numbers .inner > div {
    padding-inline: 18px;
  }

  .quality-hero,
  .quality-scope__inner,
  .contact-map-heading,
  .contact-faq-layout,
  .solution-hero,
  .solution-section.split,
  .solution-section.faq {
    gap: 28px;
  }

  .quality-hero {
    padding-top: 52px;
  }

  .quality-hero__visual,
  .contact-faq-visual,
  .solution-hero figure {
    height: 300px;
    min-height: 0;
  }

  .quality-scope,
  .contact-map-section,
  .contact-faq {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .quality-scope-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .inquiry-panel {
    padding: 24px 20px;
  }

  .contact-intro {
    padding-top: 60px;
    padding-bottom: 42px;
  }

  .contact-map-frame {
    height: 320px;
  }

  .solution-final,
  .about-cta {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .legal-layout {
    margin-top: 36px;
  }

  .error-main {
    min-height: calc(100svh - var(--header-height));
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .error-links {
    gap: 12px;
  }
}

/* Green Sand Casting Line */
.gsl-flow-legend,
.gsl-layout-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gsl-flow-legend span,
.gsl-layout-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.gsl-flow-legend__line {
  display: inline-block;
  width: 25px;
  border-top: 2px solid currentColor;
}

.gsl-flow-legend__line--sand {
  color: var(--accent);
  border-top-style: dashed;
}

.gsl-flow-legend__line--mold {
  color: #6d727b;
}

.gsl-flow-legend__line--casting {
  color: var(--ink);
  border-top-style: dotted;
}

.gsl-optional-section {
  background: linear-gradient(90deg, rgba(62, 106, 225, .035), transparent 38%);
}

.gsl-optional-section .lf-section-number {
  color: var(--accent);
}

.gsl-layout-legend {
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
}

.gsl-layout-legend .gsl-flow-legend__line--mold {
  color: #fff;
}

.gsl-layout-legend .gsl-flow-legend__line--casting {
  color: #aebeff;
}

.green-sand-casting-line-page .lf-rfq-panel small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.green-sand-casting-line-page [id] {
  scroll-margin-top: calc(var(--header-height) + 64px);
}

@media (max-width: 767px) {
  .gsl-flow-legend,
  .gsl-layout-legend {
    gap: 8px 13px;
    font-size: 10px;
  }
}

/* Lost Foam Casting process guide. Process visuals are deliberately rendered
   as labelled placeholders until approved photography and diagrams are ready. */
.lost-foam-process-page {
  background: #fff;
  color: var(--body);
}

.lost-foam-process-page main {
  overflow: clip;
}

.lff-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.lff-breadcrumb strong {
  overflow: hidden;
  color: var(--ink);
  font-weight: 500;
  text-overflow: ellipsis;
}

.lff-breadcrumb a:hover,
.lff-breadcrumb a:focus-visible {
  color: var(--accent);
}

.lff-hero {
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.lff-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  min-height: 570px;
  align-items: center;
  gap: clamp(38px, 6vw, 96px);
  padding-top: 70px;
  padding-bottom: 82px;
}

.lff-hero-copy {
  min-width: 0;
}

.lff-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 74px);
  letter-spacing: -.035em;
  line-height: 1.04;
}

.lff-hero-lead {
  max-width: 680px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.lff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 17px;
}

.lff-actions .btn {
  min-height: 46px;
}

.lff-actions .btn span,
.lff-text-link span,
.lff-flow-grid i,
.lff-stage-links span,
.lff-equipment-body a span,
.lff-material-grid a span,
.lff-cta-actions span {
  display: inline-block;
  transition: transform 180ms ease;
}

.lff-actions .btn:hover span,
.lff-actions .btn:focus-visible span,
.lff-text-link:hover span,
.lff-text-link:focus-visible span,
.lff-stage-links a:hover span,
.lff-stage-links a:focus-visible span,
.lff-equipment-body a:hover span,
.lff-equipment-body a:focus-visible span,
.lff-material-grid a:hover span,
.lff-material-grid a:focus-visible span,
.lff-cta-actions a:hover span,
.lff-cta-actions a:focus-visible span {
  transform: translateX(3px);
}

.lff-text-link,
.lff-stage-links a,
.lff-equipment-body a,
.lff-material-grid a {
  color: var(--body);
  font-size: 13px;
  transition: color 180ms ease;
}

.lff-text-link:hover,
.lff-text-link:focus-visible,
.lff-stage-links a:hover,
.lff-stage-links a:focus-visible,
.lff-equipment-body a:hover,
.lff-equipment-body a:focus-visible,
.lff-material-grid a:hover,
.lff-material-grid a:focus-visible {
  color: var(--accent);
}

.lff-hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #c9ccd1;
  background: #e2e4e7;
}

.lff-image-placeholder {
  display: block;
  min-height: 220px;
  border: 1px dashed #afb3ba;
  padding: 20px;
  background: linear-gradient(135deg, #f7f7f7 0%, #e9eaec 100%);
  color: #656a72;
  font-size: 13px;
  line-height: 1.65;
}

.lff-image-placeholder > span {
  color: var(--accent);
  font-weight: 600;
}

.lff-image-placeholder--hero {
  aspect-ratio: 16 / 10;
  min-height: 420px;
  padding: 135px 34px 70px;
  background: #dfe1e4;
  color: #555b64;
  text-align: center;
}

.lff-hero-svg {
  position: absolute;
  inset: 12% 5% auto;
  width: 90%;
  height: auto;
  color: rgba(62, 106, 225, .5);
}

.lff-hero-route {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.lff-hero-route i {
  color: var(--accent);
  font-style: normal;
}

.lff-anchor-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 14px rgba(23, 26, 32, .04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lff-anchor-bar .inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  overflow-x: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  white-space: nowrap;
  scrollbar-width: thin;
}

.lff-anchor-bar a {
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.lff-anchor-bar a:hover,
.lff-anchor-bar a:focus-visible {
  color: var(--accent);
}

.lff-section {
  padding: clamp(74px, 9vw, 126px) 0;
}

.lff-section--soft {
  background: var(--surface-alt);
}

.lff-section-heading {
  max-width: 840px;
  margin-bottom: 46px;
}

.lff-section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.02em;
}

.lff-section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lff-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: start;
}

.lff-intro-grid .lff-section-heading {
  margin-bottom: 0;
}

.lff-intro-copy {
  max-width: 720px;
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.lff-principle-list {
  margin: 0;
  border-top: 1px solid var(--line-strong);
  padding: 0;
  list-style: none;
}

.lff-principle-list li {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.lff-principle-list li > span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .08em;
}

.lff-principle-list strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.lff-principle-list p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lff-image-placeholder--wide {
  aspect-ratio: 16 / 6;
  min-height: 180px;
  margin-top: 48px;
  padding-top: 63px;
  padding-bottom: 63px;
  text-align: center;
}

.lff-principle-svg {
  display: block;
  width: 100%;
  height: 70px;
  margin-top: -125px;
  margin-bottom: 55px;
  color: rgba(62, 106, 225, .5);
  pointer-events: none;
}

.lff-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-strong);
}

.lff-flow-grid li {
  background: #fff;
}

.lff-flow-grid a {
  display: grid;
  min-height: 132px;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: start;
  padding: 20px;
  color: var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.lff-flow-grid a > div {
  min-width: 0;
}

.lff-flow-grid a:hover,
.lff-flow-grid a:focus-visible {
  background: #f7f8ff;
  color: var(--accent);
}

.lff-flow-grid a > span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .08em;
}

.lff-flow-grid strong {
  max-width: 180px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.lff-flow-grid p {
  max-width: 250px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.lff-flow-grid i {
  color: var(--accent);
  font-size: 17px;
  font-style: normal;
}

.lff-flow-grid a:hover i,
.lff-flow-grid a:focus-visible i {
  transform: translateX(3px);
}

.lff-flow-note {
  display: flex;
  max-width: 760px;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
}

.lff-flow-note svg {
  width: 80px;
  flex: 0 0 auto;
  color: var(--accent);
}

.lff-flow-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.lff-stage-layout {
  display: grid;
  grid-template-columns: minmax(200px, .32fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 104px);
  align-items: start;
}

.lff-stage-nav {
  position: sticky;
  top: calc(var(--header-height) + 23px);
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line-strong);
}

.lff-stage-nav > span {
  padding: 16px 0 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lff-stage-nav a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  padding: 11px 8px 11px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  transition: border-color 180ms ease, color 180ms ease, padding 180ms ease;
}

.lff-stage-nav a:hover,
.lff-stage-nav a:focus-visible,
.lff-stage-nav a.is-active {
  border-color: var(--accent);
  color: var(--accent);
  padding-left: 7px;
}

.lff-stage-nav i {
  color: var(--accent);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .07em;
}

.lff-stage-list {
  border-top: 1px solid var(--line-strong);
}

.lff-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, .92fr);
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid var(--line-strong);
  padding: 48px 0 54px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.lff-stage-copy,
.lff-stage-visual {
  min-width: 0;
}

.lff-number {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lff-stage h3 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 2.7vw, 32px);
}

.lff-stage-summary {
  margin-bottom: 25px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

.lff-stage-block {
  margin-bottom: 19px;
}

.lff-stage-block > strong,
.lff-stage-columns strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lff-stage-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lff-stage-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
}

.lff-stage-columns ul,
.lff-equipment-body ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lff-stage-columns li,
.lff-equipment-body li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lff-stage-columns li::before,
.lff-equipment-body li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.lff-stage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
}

.lff-stage-links a,
.lff-equipment-body a,
.lff-material-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 500;
}

.lff-stage-visual {
  position: relative;
  align-self: start;
}

.lff-stage-visual .lff-image-placeholder {
  aspect-ratio: 4 / 3;
}

.lff-stage-visual svg {
  position: absolute;
  right: 23px;
  bottom: 21px;
  width: 54px;
  color: rgba(62, 106, 225, .66);
}

.lff-control-grid,
.lff-equipment-grid,
.lff-applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lff-control-grid article {
  min-height: 286px;
  padding: 24px;
  background: #fff;
}

.lff-control-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 23px;
  color: var(--accent);
}

.lff-control-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lff-control-grid h3 {
  margin: 12px 0 9px;
  font-size: 20px;
}

.lff-control-grid article > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.lff-control-grid dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.lff-control-grid dl > div {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.lff-control-grid dt {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.lff-control-grid dd {
  margin: 3px 0 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.45;
}

.lff-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line-strong);
}

.lff-table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.lff-table-wrap caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.lff-table-wrap th,
.lff-table-wrap td {
  border-bottom: 1px solid var(--line);
  padding: 17px 18px 17px 0;
  vertical-align: top;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.lff-table-wrap th {
  color: var(--ink);
  font-weight: 500;
}

.lff-table-wrap thead th {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.lff-table-wrap tbody th {
  width: 19%;
}

.lff-table-wrap td a,
.lff-comparison-table a {
  color: var(--accent);
  font-weight: 500;
}

.lff-material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lff-material-grid article {
  min-height: 240px;
  padding: 27px;
  background: #fff;
}

.lff-material-grid h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.lff-material-grid article > p {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lff-equipment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lff-equipment-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
}

.lff-image-placeholder--equipment,
.lff-image-placeholder--application {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.lff-equipment-body {
  display: flex;
  min-height: 267px;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.lff-equipment-body h3 {
  margin: 12px 0 9px;
  font-size: 21px;
}

.lff-equipment-body > p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.lff-equipment-body ul {
  margin-bottom: 21px;
}

.lff-equipment-body a {
  margin-top: auto;
}

.lff-applications-grid {
  margin-bottom: 42px;
}

.lff-applications-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
}

.lff-applications-grid .lff-number,
.lff-applications-grid h3,
.lff-applications-grid article > p {
  margin-right: 22px;
  margin-left: 22px;
}

.lff-applications-grid .lff-number {
  margin-top: 21px;
}

.lff-applications-grid h3 {
  margin-top: 11px;
  margin-bottom: 8px;
  font-size: 20px;
}

.lff-applications-grid article > p {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.lff-applications-grid article > p strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lff-choose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 104px);
  align-items: start;
  margin-bottom: 49px;
}

.lff-choose-grid > div:first-child {
  border-top: 1px solid var(--line-strong);
  padding-top: 19px;
}

.lff-choose-grid .lff-section-heading {
  margin-bottom: 0;
}

.lff-choose-grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 20px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.lff-choose-grid li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--body);
  font-size: 14px;
}

.lff-choose-grid li span {
  margin-right: 8px;
  color: var(--accent);
}

.lff-comparison-table {
  min-width: 860px !important;
}

.lff-comparison-table th:first-child,
.lff-comparison-table td:first-child {
  width: 18%;
}

.lff-faq-resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: clamp(34px, 7vw, 105px);
  align-items: start;
}

.lff-faq-list {
  border-top: 1px solid var(--line-strong);
}

.lff-faq-item {
  border-bottom: 1px solid var(--line);
}

.lff-faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 18px 4px 18px 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.lff-faq-toggle:hover,
.lff-faq-toggle:focus-visible {
  color: var(--accent);
}

.lff-faq-toggle > span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.lff-faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lff-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lff-resource-label {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--line-strong);
  padding: 0 0 14px;
  background: var(--surface-alt);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .08em;
}

.lff-resource-grid a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  min-width: 0;
  padding: 0 14px 17px;
  background: var(--surface-alt);
  transition: color 180ms ease;
}

.lff-resource-grid a:hover strong,
.lff-resource-grid a:focus-visible strong {
  color: var(--accent);
}

.lff-resource-grid .lff-image-placeholder {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 2.2;
  min-height: 0;
  margin: 0 -14px 5px;
  padding: 13px;
  font-size: 11px;
}

.lff-resource-grid a strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.lff-resource-grid a > span {
  grid-column: 1;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.lff-resource-grid a b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--accent);
  font-size: 16px;
  font-weight: 400;
}

.lff-cta {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, .74);
}

.lff-cta h2,
.lff-cta h3 {
  color: #fff;
}

.lff-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
}

.lff-cta h2 {
  margin-bottom: 17px;
  font-size: clamp(30px, 4vw, 48px);
}

.lff-cta-copy,
.lff-cta-grid > div:first-child > p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.lff-cta-grid > div:first-child > ul,
.lff-cta-panel ul {
  display: grid;
  gap: 9px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.lff-cta-grid > div:first-child > li,
.lff-cta-panel li {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.lff-cta-grid > div:first-child > ul li::before,
.lff-cta-panel li::before {
  margin-right: 9px;
  color: #aebeff;
  content: "+";
}

.lff-cta-grid > div:first-child > svg {
  display: block;
  width: 180px;
  margin-top: 37px;
  color: rgba(174, 190, 255, .58);
}

.lff-cta-panel {
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  color: var(--body);
}

.lff-cta-panel h3 {
  margin: 13px 0 16px;
  color: var(--ink);
  font-size: 25px;
}

.lff-cta-panel ul {
  margin: 0 0 28px;
}

.lff-cta-panel li {
  color: var(--muted);
}

.lff-cta-panel li::before {
  color: var(--accent);
}

.lff-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1100px) {
  .lff-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
    gap: 40px;
  }

  .lff-control-grid,
  .lff-equipment-grid,
  .lff-applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lff-stage-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lff-stage-nav {
    position: static;
    display: flex;
    gap: 0;
    overflow-x: auto;
    border-top: 1px solid var(--line-strong);
    padding-bottom: 1px;
    white-space: nowrap;
    scrollbar-width: thin;
  }

  .lff-stage-nav > span {
    flex: 0 0 auto;
    padding: 14px 20px 11px 0;
  }

  .lff-stage-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 8px;
    border-bottom: 0;
    border-top: 2px solid transparent;
    padding: 14px 14px 11px;
  }

  .lff-stage-nav a:hover,
  .lff-stage-nav a:focus-visible,
  .lff-stage-nav a.is-active {
    border-color: var(--accent);
    padding-left: 14px;
  }

  .lff-cta-grid {
    gap: 44px;
  }
}

@media (max-width: 767px) {
  .lff-breadcrumb {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .lff-hero-grid,
  .lff-intro-grid,
  .lff-stage,
  .lff-choose-grid,
  .lff-faq-resource-grid,
  .lff-cta-grid {
    grid-template-columns: 1fr;
  }

  .lff-hero-grid {
    min-height: 0;
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .lff-hero h1 {
    font-size: clamp(39px, 11vw, 53px);
  }

  .lff-hero-lead {
    font-size: 16px;
  }

  .lff-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lff-actions .btn {
    width: 100%;
  }

  .lff-image-placeholder--hero {
    min-height: 265px;
    padding: 54px 22px 86px;
  }

  .lff-image-placeholder--hero p {
    position: relative;
    z-index: 1;
    margin: 0;
  }

  .lff-hero-svg {
    inset: auto 5% 52px;
  }

  .lff-hero-route {
    font-size: 9px;
  }

  .lff-anchor-bar .inner {
    gap: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .lff-section {
    padding: 66px 0;
  }

  .lff-section-heading {
    margin-bottom: 34px;
  }

  .lff-section-heading h2 {
    font-size: 30px;
  }

  .lff-intro-grid {
    gap: 32px;
  }

  .lff-intro-copy {
    font-size: 16px;
  }

  .lff-image-placeholder--wide {
    min-height: 165px;
    margin-top: 35px;
    padding-top: 49px;
    padding-bottom: 49px;
  }

  .lff-principle-svg {
    height: 42px;
    margin-top: -90px;
    margin-bottom: 38px;
  }

  .lff-flow-grid,
  .lff-control-grid,
  .lff-material-grid,
  .lff-equipment-grid,
  .lff-applications-grid,
  .lff-resource-grid {
    grid-template-columns: 1fr;
  }

  .lff-flow-grid a {
    min-height: 0;
    padding: 16px 17px;
  }

  .lff-flow-grid strong {
    max-width: none;
  }

  .lff-flow-note {
    align-items: flex-start;
  }

  .lff-flow-note svg {
    width: 58px;
  }

  .lff-stage-layout {
    gap: 24px;
  }

  .lff-stage-nav a {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 12px;
  }

  .lff-stage-nav a:first-of-type {
    padding-left: 0;
  }

  .lff-stage-nav a:hover,
  .lff-stage-nav a:focus-visible,
  .lff-stage-nav a.is-active {
    padding-left: 11px;
  }

  .lff-stage-nav a:first-of-type:hover,
  .lff-stage-nav a:first-of-type:focus-visible,
  .lff-stage-nav a:first-of-type.is-active {
    padding-left: 0;
  }

  .lff-stage {
    gap: 28px;
    padding: 38px 0 43px;
  }

  .lff-stage h3 {
    font-size: 26px;
  }

  .lff-stage-columns,
  .lff-choose-grid ul {
    grid-template-columns: 1fr;
  }

  .lff-control-grid article,
  .lff-material-grid article {
    min-height: 0;
    padding: 22px 20px;
  }

  .lff-equipment-body {
    min-height: 0;
    padding: 22px 20px 24px;
  }

  .lff-applications-grid .lff-number,
  .lff-applications-grid h3,
  .lff-applications-grid article > p {
    margin-right: 20px;
    margin-left: 20px;
  }

  .lff-resource-label {
    padding-top: 0;
  }

  .lff-resource-grid a {
    padding-right: 13px;
    padding-left: 13px;
  }

  .lff-resource-grid .lff-image-placeholder {
    margin-right: -13px;
    margin-left: -13px;
  }

  .lff-cta {
    padding-bottom: 76px;
  }

  .lff-cta-grid {
    gap: 40px;
  }

  .lff-cta-panel {
    padding: 23px 20px 25px;
  }

  .lff-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lff-cta-actions .btn {
    width: 100%;
  }
}

/* Foundry equipment homepage hero */
.home-hero {
  position: relative;
  display: grid;
  height: 100vh;
  min-height: 100vh;
  max-height: none;
  overflow: hidden;
  background: var(--dark-surface);
  color: #fff;
  isolation: isolate;
}

.home-hero-image,
.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 45%;
}

.home-hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 26, 32, 0.54), rgba(23, 26, 32, 0.64));
}

.home-hero-content {
  display: flex;
  width: min(1440px, 100%);
  min-width: 0;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 88px var(--gutter) 44px;
  text-align: center;
}

.home-hero-content .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.home-hero h1 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.12;
}

.home-hero-description {
  max-width: 660px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.6;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.home-hero-actions .btn {
  min-height: 46px;
  padding-inline: 22px;
}

.btn-hero-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.home-hero-processes {
  width: min(1060px, 100%);
  min-width: 0;
  margin-top: 42px;
}

.home-hero-processes-label {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-hero-process-links {
  display: flex;
  min-width: 0;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.home-hero-process-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  white-space: nowrap;
  transition: color var(--motion), padding-inline var(--motion);
}

.home-hero-process-links a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.home-hero-process-links a span {
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--motion), transform var(--motion);
}

.home-hero-process-links a:hover,
.home-hero-process-links a:focus-visible {
  color: #fff;
}

.home-hero-process-links a:hover span,
.home-hero-process-links a:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.home-hero-process-links a:last-child span {
  opacity: 0.9;
  transform: translateX(0);
}

.directory-page {
  background: #fff;
}

.directory-hero,
.directory-content {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.directory-hero {
  padding-top: 92px;
  padding-bottom: 74px;
}

.directory-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.directory-hero > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.directory-content {
  padding-bottom: 104px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.directory-card {
  min-height: 220px;
  padding: 30px;
  background: #fff;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.directory-card--featured {
  background: var(--dark-surface);
}

.directory-card .directory-index {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.directory-card h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.directory-card--featured h2,
.directory-card--featured p,
.directory-card--featured .directory-item-link {
  color: #fff;
}

.directory-card > p {
  max-width: 600px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.directory-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.directory-item-link {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--body);
  font-size: 14px;
  transition: color var(--motion);
}

.directory-item-link::after {
  color: var(--accent);
  content: "→";
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--motion), transform var(--motion);
}

.directory-item-link:hover,
.directory-item-link:focus-visible {
  color: var(--accent);
}

.directory-item-link:hover::after,
.directory-item-link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .home-hero {
    height: 100vh;
    min-height: 100vh;
  }

  .home-hero-content {
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 4px;
    text-align: left;
  }

  .home-hero-content .eyebrow {
    margin-bottom: 14px;
  }

  .home-hero h1 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .home-hero-description {
    margin-top: 18px;
    font-size: 16px;
  }

  .home-hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .home-hero-actions .btn {
    width: 100%;
  }

  .home-hero-processes {
    width: calc(100% + var(--gutter));
    margin-top: 30px;
  }

  .home-hero-processes-label {
    margin-bottom: 10px;
  }

  .home-hero-process-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .home-hero-process-links a {
    padding-inline: 13px;
  }

  .home-hero-process-links a:first-child {
    padding-left: 0;
  }

  .directory-hero {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .directory-hero > p:last-child {
    font-size: 16px;
  }

  .directory-content {
    padding-bottom: 72px;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-card {
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .directory-card h2 {
    font-size: 24px;
  }
}

/* Dynamic product SEO detail page: product-first, flat and content-led. */
.dynamic-product-page { background: #fff; color: var(--ink); }
.dynamic-product-page h1 { max-width: 720px; margin-bottom: 18px; font-size: clamp(30px, 4vw, 40px); font-weight: 500; line-height: 1.2; }
.dynamic-product-page .dp-section { padding: 84px 0; background: #fff; }
.dynamic-product-page .dp-section.dp-soft,
.dynamic-product-page .dp-request-section { background: var(--surface-alt); }
.dynamic-product-page .dp-overview-section { padding-top: 10px; padding-bottom: 54px; }
.dynamic-product-page .dp-hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); min-height: 0; align-items: center; gap: clamp(34px, 6vw, 88px); padding-top: 0; padding-bottom: 0; }
.dynamic-product-page .dp-gallery,
.dynamic-product-page .dp-summary { min-width: 0; }
.dynamic-product-page .dp-main-image { min-height: clamp(360px, 48vw, 620px); padding: 28px; border: 0; border-radius: 0; background: #f4f4f4; box-shadow: none; }
.dynamic-product-page .dp-main-image img { max-height: 580px; mix-blend-mode: multiply; }
.dynamic-product-page .dp-summary .eyebrow { margin-bottom: 14px; }
.dynamic-product-page .dp-lead { max-width: 640px; margin-bottom: 26px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.dynamic-product-page .dp-facts { border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-facts > div { grid-template-columns: minmax(120px, .35fr) 1fr; gap: 20px; padding: 13px 0; }
.dynamic-product-page .dp-facts dt { color: var(--muted); font-size: 12px; }
.dynamic-product-page .dp-facts dd { margin: 0; color: var(--body); font-size: 14px; line-height: 1.55; }
.dynamic-product-page .dp-actions { margin-top: 24px; }
.dynamic-product-page .dp-microcopy { max-width: 560px; color: var(--muted); line-height: 1.55; }
.dynamic-product-page .dp-anchor-bar { position: sticky; top: var(--header-height); z-index: 3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .96); }
.dynamic-product-page .dp-anchor-bar .inner { display: flex; gap: 22px; overflow-x: auto; padding-top: 14px; padding-bottom: 14px; white-space: nowrap; }
.dynamic-product-page .dp-anchor-bar a { color: var(--muted); font-size: 12px; }
.dynamic-product-page .dp-anchor-bar a:hover { color: var(--accent); }
.dynamic-product-page .dp-content-layout { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); align-items: start; gap: clamp(32px, 7vw, 110px); }
.dynamic-product-page .dp-section-heading { margin-bottom: 30px; }
.dynamic-product-page .dp-content-layout > .dp-section-heading { margin-bottom: 0; }
.dynamic-product-page .dp-section-heading h2 { max-width: 620px; margin-bottom: 12px; font-size: clamp(26px, 3vw, 34px); font-weight: 500; line-height: 1.25; }
.dynamic-product-page .dp-section-heading > p:not(.eyebrow) { max-width: 680px; color: var(--muted); line-height: 1.65; }
.dynamic-product-page .dp-spec-table { border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-spec-table > div { grid-template-columns: minmax(150px, .55fr) 1fr; gap: 24px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.dynamic-product-page .dp-spec-table dt { color: var(--muted); font-size: 12px; }
.dynamic-product-page .dp-spec-table dd { margin: 0; color: var(--body); font-size: 14px; line-height: 1.55; }
.dynamic-product-page .dp-data-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.dynamic-product-page .dp-data-grid article { min-width: 0; padding: 22px 0 0; border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-data-grid h3,
.dynamic-product-page .dp-document-item h3,
.dynamic-product-page .dp-comparison-list h3,
.dynamic-product-page .dp-guide-list h3 { margin: 10px 0 10px; font-size: 18px; font-weight: 500; line-height: 1.35; }
.dynamic-product-page .dp-data-grid p,
.dynamic-product-page .dp-document-item p,
.dynamic-product-page .dp-related-grid p,
.dynamic-product-page .dp-guide-list p,
.dynamic-product-page .dp-comparison-list p { margin: 0 0 8px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.dynamic-product-page .dp-index { display: block; color: var(--accent); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.dynamic-product-page .dp-data-grid dl { margin: 14px 0 0; }
.dynamic-product-page .dp-data-grid dl > div { display: grid; grid-template-columns: 82px 1fr; gap: 12px; padding: 7px 0; border-top: 1px solid var(--line); }
.dynamic-product-page .dp-data-grid dt { color: var(--muted); font-size: 11px; }
.dynamic-product-page .dp-data-grid dd { margin: 0; color: var(--body); font-size: 13px; line-height: 1.5; }
.dynamic-product-page .dp-process-flow { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-process-flow li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.dynamic-product-page .dp-process-flow li > span { color: var(--accent); font-size: 12px; }
.dynamic-product-page .dp-process-flow h3 { margin: 0 0 6px; font-size: 16px; font-weight: 500; }
.dynamic-product-page .dp-process-flow p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.dynamic-product-page .dp-range { margin-top: 32px; }
.dynamic-product-page .dp-range h3 { margin-bottom: 12px; font-size: 18px; font-weight: 500; }
.dynamic-product-page .dp-range-scroll,
.dynamic-product-page .dp-table-scroll { overflow-x: auto; }
.dynamic-product-page .dp-range table,
.dynamic-product-page .dp-comparison-table { width: 100%; min-width: 620px; border-collapse: collapse; }
.dynamic-product-page .dp-range th,
.dynamic-product-page .dp-range td,
.dynamic-product-page .dp-comparison-table th,
.dynamic-product-page .dp-comparison-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 13px; line-height: 1.5; }
.dynamic-product-page .dp-range th,
.dynamic-product-page .dp-comparison-table th { color: var(--muted); font-weight: 500; background: var(--surface-alt); }
.dynamic-product-page .dp-comparison-list { display: grid; gap: 34px; }
.dynamic-product-page .dp-comparison-list article { padding-top: 22px; border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-compare-against { margin-top: -4px; }
.dynamic-product-page .dp-capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-capability-grid > div { padding: 18px 20px 18px 0; border-bottom: 1px solid var(--line); }
.dynamic-product-page .dp-capability-grid dt { color: var(--muted); font-size: 12px; }
.dynamic-product-page .dp-capability-grid dd { margin: 8px 0 0; font-size: 19px; font-weight: 500; }
.dynamic-product-page .dp-quality-images { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.dynamic-product-page .dp-quality-images img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #fff; }
.dynamic-product-page .dp-document-list { border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-document-item { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); gap: 34px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.dynamic-product-page .dp-document-request-form,
.dynamic-product-page .dp-request-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; min-width: 0; }
.dynamic-product-page .dp-document-request-form label,
.dynamic-product-page .dp-request-form label { display: grid; gap: 6px; color: var(--muted); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.dynamic-product-page .dp-document-request-form input,
.dynamic-product-page .dp-request-form input,
.dynamic-product-page .dp-request-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 0; padding: 11px 12px; background: #fff; color: var(--ink); font: inherit; font-size: 14px; letter-spacing: normal; text-transform: none; }
.dynamic-product-page .dp-document-request-form input:focus,
.dynamic-product-page .dp-request-form input:focus,
.dynamic-product-page .dp-request-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.dynamic-product-page .dp-document-request-form .btn,
.dynamic-product-page .dp-document-request-form .dp-form-status { grid-column: 1 / -1; }
.dynamic-product-page .dp-form-status { margin: 0; color: var(--body); font-size: 13px; line-height: 1.5; }
.dynamic-product-page .dp-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.dynamic-product-page .dp-related-grid > a { display: block; padding-top: 14px; border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-related-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #fff; mix-blend-mode: multiply; }
.dynamic-product-page .dp-related-grid span,
.dynamic-product-page .dp-guide-list > a > span { display: block; margin-top: 14px; color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.dynamic-product-page .dp-related-grid h3 { margin: 7px 0 0; font-size: 18px; font-weight: 500; }
.dynamic-product-page .dp-guide-list { border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-guide-list > a { display: grid; grid-template-columns: 100px 1fr 28px; gap: 22px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.dynamic-product-page .dp-guide-list > a > span { margin-top: 3px; }
.dynamic-product-page .dp-guide-list h3 { margin: 0 0 5px; }
.dynamic-product-page .dp-guide-list b { color: var(--accent); font-size: 18px; font-weight: 400; text-align: right; }
.dynamic-product-page .dp-request-section { padding-bottom: 100px; }
.dynamic-product-page .dp-request-section .dp-section-heading { max-width: 780px; }
.dynamic-product-page .dp-request-form { max-width: 960px; margin-top: 30px; }
.dynamic-product-page .dp-request-wide,
.dynamic-product-page .dp-request-actions,
.dynamic-product-page .dp-email-note,
.dynamic-product-page .dp-request-form > .dp-form-status { grid-column: 1 / -1; }

/* Lost Foam Casting Line engineering page. Content visuals remain explicit
   placeholders until approved project photography and drawings are available. */
.lost-foam-page {
  background: #fff;
  color: var(--body);
}

.lost-foam-page main {
  overflow: clip;
}

.lf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.lf-breadcrumb strong {
  overflow: hidden;
  color: var(--ink);
  font-weight: 500;
  text-overflow: ellipsis;
}

.lf-breadcrumb a:hover,
.lf-breadcrumb a:focus-visible {
  color: var(--accent);
}

.lf-hero {
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.lf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  min-height: 610px;
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding-top: 72px;
  padding-bottom: 84px;
}

.lf-hero-copy {
  min-width: 0;
}

.lf-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.035em;
  line-height: 1.04;
}

.lf-hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.lf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 17px;
}

.lf-actions .btn {
  min-height: 46px;
}

.lf-actions .btn span,
.lf-anchor-cta span,
.lf-text-link span,
.lf-arrow-link span,
.lf-card-actions span {
  display: inline-block;
  transition: transform 180ms ease;
}

.lf-actions .btn:hover span,
.lf-actions .btn:focus-visible span,
.lf-anchor-cta:hover span,
.lf-anchor-cta:focus-visible span,
.lf-text-link:hover span,
.lf-text-link:focus-visible span,
.lf-arrow-link:hover span,
.lf-arrow-link:focus-visible span,
.lf-card-actions a:hover span,
.lf-card-actions a:focus-visible span {
  transform: translateX(3px);
}

.lf-text-link,
.lf-arrow-link,
.lf-card-actions a {
  color: var(--body);
  font-size: 13px;
  transition: color 180ms ease;
}

.lf-text-link:hover,
.lf-text-link:focus-visible,
.lf-arrow-link:hover,
.lf-arrow-link:focus-visible,
.lf-card-actions a:hover,
.lf-card-actions a:focus-visible {
  color: var(--accent);
}

.lf-chip-list,
.lf-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.lf-chip-list li,
.lf-tag-list li {
  border: 1px solid var(--line-strong);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .03em;
}

.lf-hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #c9ccd1;
  background: #e8e9eb;
}

.lf-image-placeholder {
  display: block;
  min-height: 220px;
  border: 1px dashed #afb3ba;
  padding: 20px;
  background: linear-gradient(135deg, #f7f7f7 0%, #e9eaec 100%);
  color: #656a72;
  font-size: 13px;
  line-height: 1.65;
}

.lf-image-placeholder span {
  color: var(--accent);
  font-weight: 600;
}

.lf-image-placeholder--hero {
  aspect-ratio: 16 / 10;
  min-height: 440px;
  padding: 145px 34px 72px;
  background: #dfe1e4;
  color: #555b64;
  text-align: center;
}

.lf-hero-svg {
  position: absolute;
  inset: 12% 5% auto;
  width: 90%;
  height: auto;
  color: rgba(62, 106, 225, .48);
}

.lf-hero-route {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lf-hero-route i {
  color: var(--accent);
  font-style: normal;
}

.lf-anchor-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 14px rgba(23, 26, 32, .04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lf-anchor-bar .inner {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.8vw, 36px);
  overflow-x: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  white-space: nowrap;
  scrollbar-width: thin;
}

.lf-anchor-bar a {
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.lf-anchor-bar a:hover,
.lf-anchor-bar a:focus-visible {
  color: var(--accent);
}

.lf-anchor-bar .lf-anchor-cta {
  margin-left: auto;
  color: var(--accent);
  font-weight: 500;
}

.lf-section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.lf-section--soft {
  background: var(--surface-alt);
}

.lf-section--dark,
.lf-rfq {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, .76);
}

.lf-section--dark h2,
.lf-section--dark h3,
.lf-rfq h2,
.lf-rfq h3 {
  color: #fff;
}

.lf-heading-light > p:not(.eyebrow),
.lf-section--dark .lf-section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .68);
}

.lf-section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.lf-heading-wide {
  max-width: 930px;
}

.lf-section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.02em;
}

.lf-section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lf-overview-graphic {
  height: 76px;
  margin: 18px 0 -8px;
  color: rgba(62, 106, 225, .7);
}

.lf-overview-graphic svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lf-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-strong);
}

.lf-flow-card {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  background: #fff;
}

.lf-flow-number,
.lf-section-number,
.lf-aside-label {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lf-flow-card strong {
  margin: 14px 0 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.lf-flow-card small {
  color: var(--muted);
  font-size: 11px;
}

.lf-cycle-note {
  display: flex;
  max-width: 760px;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  border-left: 2px solid var(--accent);
  padding: 2px 0 2px 18px;
}

.lf-cycle-icon {
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

.lf-cycle-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lf-cycle-note strong {
  color: var(--ink);
  font-weight: 500;
}

.lf-line-sections {
  border-top: 1px solid var(--line-strong);
}

.lf-line-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(30px, 6vw, 86px);
  border-bottom: 1px solid var(--line-strong);
  padding: 54px 0;
}

.lf-line-section-copy {
  min-width: 0;
}

.lf-line-section h3 {
  margin: 13px 0 18px;
  font-size: clamp(23px, 2.5vw, 31px);
}

.lf-role,
.lf-connection {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.65;
}

.lf-role strong,
.lf-connection strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.lf-subheading {
  margin: 27px 0 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.lf-equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 20px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.lf-equipment-list li {
  position: relative;
  padding-left: 16px;
  color: var(--body);
  font-size: 14px;
}

.lf-equipment-list li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.lf-factor-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 24px 0 26px;
}

.lf-factor-row > span {
  flex-basis: 100%;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.lf-factor-row b {
  border: 1px solid var(--line-strong);
  padding: 5px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.lf-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-weight: 500;
}

.lf-line-section-visual {
  position: relative;
  align-self: start;
}

.lf-line-section-visual .lf-image-placeholder {
  aspect-ratio: 4 / 3;
}

.lf-section-mark {
  position: absolute;
  right: 25px;
  bottom: 24px;
  width: 55px;
  color: rgba(62, 106, 225, .7);
}

.lf-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lf-core-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
}

.lf-image-placeholder--equipment {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.lf-core-card-body {
  display: flex;
  min-height: 262px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.lf-core-card h3 {
  margin: 12px 0 9px;
  font-size: 22px;
}

.lf-core-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lf-core-card .lf-tag-list {
  margin-top: 18px;
}

.lf-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 25px;
}

.lf-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 12px;
}

.lf-config-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.lf-config-card {
  display: flex;
  min-height: 362px;
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 255, 255, .06);
}

.lf-config-card--featured {
  background: var(--accent);
}

.lf-config-card .lf-section-number {
  color: #aebeff;
}

.lf-config-card h3 {
  margin: 24px 0 13px;
  font-size: 24px;
}

.lf-config-card > p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.lf-config-card .lf-tag-list {
  margin-top: 2px;
}

.lf-config-card .lf-tag-list li {
  border-color: rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .8);
}

.lf-config-detail {
  margin-top: auto;
  margin-bottom: 20px;
}

.lf-config-card .lf-arrow-link {
  color: #c8d2ff;
}

.lf-config-card--featured .lf-arrow-link {
  color: #fff;
}

.lf-input-output-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
}

.lf-input-column h3,
.lf-output-column h3 {
  margin-bottom: 22px;
  font-size: 24px;
}

.lf-input-list,
.lf-output-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lf-input-list {
  border-top: 1px solid var(--line-strong);
}

.lf-input-list li {
  display: flex;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.lf-list-mark {
  color: var(--accent);
  font-size: 19px;
  line-height: 1.15;
}

.lf-input-list strong,
.lf-output-list strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.lf-input-list p,
.lf-output-list p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lf-output-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lf-output-list article {
  min-height: 118px;
  padding: 18px;
  background: #fff;
}

.lf-output-list article > span {
  display: block;
  margin-bottom: 15px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .08em;
}

.lf-configured-note {
  margin-top: 18px;
  border-left: 2px solid var(--accent);
  padding: 3px 0 3px 15px;
}

.lf-configured-note span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .07em;
}

.lf-configured-note p {
  max-width: 610px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.lf-image-placeholder--wide {
  aspect-ratio: 16 / 6;
  min-height: 190px;
  margin-top: 52px;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: center;
}

.lf-split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 44px;
}

.lf-split-heading .lf-section-heading {
  margin-bottom: 0;
}

.lf-split-heading > p {
  max-width: 310px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.lf-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: 1px;
  background: var(--line-strong);
}

.lf-layout-schematic {
  position: relative;
  min-width: 0;
  padding: clamp(18px, 3vw, 34px);
  background: #20242c;
  color: #91a8f4;
}

.lf-layout-schematic svg {
  display: block;
  width: 100%;
  height: auto;
}

.lf-layout-blocks rect {
  fill: #2b313b;
  stroke: #7085c4;
  stroke-width: 2;
}

.lf-layout-labels text {
  fill: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  text-anchor: middle;
}

.lf-schematic-note {
  display: block;
  margin-top: 10px;
  color: #aebeff;
  font-size: 10px;
  letter-spacing: .1em;
}

.lf-layout-side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  background: #fff;
}

.lf-layout-preview {
  position: relative;
}

.lf-image-placeholder--layout {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.lf-layout-open {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(23, 26, 32, .2);
  padding: 8px 10px;
  background: rgba(255, 255, 255, .9);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.lf-layout-open:hover,
.lf-layout-open:focus-visible {
  border-color: var(--accent);
  background: #fff;
}

.lf-layout-open span {
  font-size: 15px;
  line-height: 1;
}

.lf-layout-dialog {
  width: min(900px, calc(100vw - 40px));
  max-width: 900px;
  border: 1px solid var(--line-strong);
  padding: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 70px rgba(23, 26, 32, .25);
}

.lf-layout-dialog::backdrop {
  background: rgba(23, 26, 32, .72);
}

.lf-layout-dialog-body {
  padding: clamp(22px, 4vw, 38px);
}

.lf-layout-dialog-body h2 {
  margin-bottom: 24px;
  font-size: clamp(25px, 4vw, 38px);
}

.lf-layout-dialog-body .lf-image-placeholder {
  min-height: 300px;
}

.lf-layout-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 13px;
}

.lf-layout-close span {
  font-size: 19px;
  line-height: 1;
}

.lf-zone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  margin: 24px 0 26px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.lf-zone-list > span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.lf-zone-list b {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--body);
  font-size: 12px;
  font-weight: 400;
}

.lf-zone-list i {
  color: var(--accent);
  font-size: 10px;
  font-style: normal;
}

.lf-layout-side .lf-arrow-link {
  margin-top: auto;
}

.lf-automation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.lf-automation-grid article {
  min-height: 244px;
  padding: 24px;
  background: #fff;
}

.lf-step-icon,
.lf-delivery-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 23px;
  color: var(--accent);
}

.lf-step-icon svg,
.lf-delivery-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lf-automation-grid h3 {
  margin: 11px 0 9px;
  font-size: 20px;
}

.lf-automation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.lf-flow-panel {
  position: relative;
  margin-top: 34px;
}

.lf-image-placeholder--flow {
  aspect-ratio: 16 / 7;
  min-height: 180px;
  padding: 72px 28px;
  text-align: center;
}

.lf-flow-panel-svg {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: auto;
  color: rgba(62, 106, 225, .45);
  transform: translateY(-50%);
}

.lf-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, .16);
}

.lf-delivery-grid li {
  min-height: 350px;
  padding: 24px;
  background: rgba(255, 255, 255, .06);
}

.lf-delivery-grid li:nth-child(n + 5) {
  background: rgba(255, 255, 255, .1);
}

.lf-delivery-icon {
  color: #9eb2ff;
}

.lf-delivery-grid h3 {
  margin: 12px 0 9px;
  font-size: 19px;
}

.lf-delivery-grid > li > p {
  min-height: 69px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.6;
}

.lf-delivery-grid dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.lf-delivery-grid dl > div {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.lf-delivery-grid dt {
  color: #aebeff;
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.lf-delivery-grid dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.45;
}

.lf-engineering-visual {
  position: relative;
  margin-top: 34px;
}

.lf-engineering-visual .lf-image-placeholder {
  aspect-ratio: 16 / 6;
  padding-top: 64px;
  padding-bottom: 64px;
  background: #252a34;
  border-color: rgba(174, 190, 255, .35);
  color: rgba(255, 255, 255, .68);
  text-align: center;
}

.lf-engineering-visual svg {
  position: absolute;
  right: 7%;
  bottom: 18%;
  width: 180px;
  color: rgba(174, 190, 255, .55);
}

.lf-applications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 1px;
  background: var(--line-strong);
}

.lf-applications-grid > div {
  padding: 28px;
  background: #fff;
}

.lf-applications-grid h3 {
  margin-bottom: 19px;
  font-size: 22px;
}

.lf-project-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lf-project-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  color: var(--body);
  font-size: 14px;
}

.lf-project-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.lf-project-list li > span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .08em;
}

.lf-project-list b {
  margin-left: auto;
  color: var(--accent);
  font-size: 16px;
  font-weight: 400;
}

.lf-project-list--quiet b {
  color: var(--muted);
}

.lf-faq-resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(34px, 7vw, 102px);
  align-items: start;
}

.lf-faq-list {
  border-top: 1px solid var(--line-strong);
}

.lf-faq-item {
  border-bottom: 1px solid var(--line);
}

.lf-faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 18px 4px 18px 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.lf-faq-toggle > span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.lf-faq-toggle:hover,
.lf-faq-toggle:focus-visible {
  color: var(--accent);
}

.lf-faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 19px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lf-resource-aside {
  display: grid;
  gap: 38px;
}

.lf-resource-aside > div {
  border-top: 1px solid var(--line-strong);
}

.lf-aside-label {
  margin: 16px 0 9px;
}

.lf-resource-aside a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 12px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  transition: color 180ms ease;
}

.lf-resource-aside a strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.lf-resource-aside a > span {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.lf-resource-aside a b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--accent);
  font-size: 16px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.lf-resource-aside a:hover strong,
.lf-resource-aside a:focus-visible strong {
  color: var(--accent);
}

.lf-resource-aside a:hover b,
.lf-resource-aside a:focus-visible b {
  transform: translateX(3px);
}

.lf-rfq {
  padding-bottom: clamp(90px, 11vw, 150px);
}

.lf-rfq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: start;
}

.lf-rfq-copy h2 {
  margin-bottom: 17px;
  font-size: clamp(30px, 4vw, 48px);
}

.lf-rfq-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.lf-rfq-copy ul {
  display: grid;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.lf-rfq-copy li {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.lf-rfq-copy li::before {
  margin-right: 9px;
  color: #aebeff;
  content: "+";
}

.lf-rfq-route {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
  color: #aebeff;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lf-rfq-route svg {
  width: 110px;
  flex: 0 0 auto;
}

.lf-rfq-panel {
  min-width: 0;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
}

.lf-rfq-panel .contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lf-rfq-panel .form-submit {
  grid-column: 1 / -1;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.lf-rfq-panel .email-route {
  flex: 1 1 280px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.lf-rfq-panel .email-route-link {
  color: var(--accent);
}

.lf-rfq-panel .success {
  flex-basis: 100%;
}

@media (max-width: 1100px) {
  .lf-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
    gap: 40px;
  }

  .lf-core-grid,
  .lf-config-grid,
  .lf-automation-grid,
  .lf-delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lf-delivery-grid li {
    min-height: 0;
  }

  .lf-rfq-grid {
    gap: 42px;
  }
}

@media (max-width: 767px) {
  .lf-breadcrumb {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .lf-hero-grid,
  .lf-line-section,
  .lf-input-output-grid,
  .lf-layout-grid,
  .lf-faq-resource-grid,
  .lf-rfq-grid {
    grid-template-columns: 1fr;
  }

  .lf-hero-grid {
    min-height: 0;
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .lf-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .lf-hero-lead {
    font-size: 16px;
  }

  .lf-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lf-actions .btn {
    width: 100%;
  }

  .lf-image-placeholder--hero {
    min-height: 270px;
    padding: 84px 24px 52px;
  }

  .lf-hero-route {
    font-size: 9px;
  }

  .lf-anchor-bar .inner {
    gap: 19px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .lf-anchor-bar .lf-anchor-cta {
    margin-left: 0;
  }

  .lf-section {
    padding: 66px 0;
  }

  .lf-section-heading {
    margin-bottom: 34px;
  }

  .lf-section-heading h2 {
    font-size: 30px;
  }

  .lf-overview-graphic {
    height: 38px;
    margin-bottom: -4px;
  }

  .lf-flow-grid,
  .lf-core-grid,
  .lf-config-grid,
  .lf-output-list,
  .lf-automation-grid,
  .lf-delivery-grid,
  .lf-applications-grid {
    grid-template-columns: 1fr;
  }

  .lf-flow-grid {
    gap: 0;
  }

  .lf-flow-card {
    min-height: 0;
    padding: 15px 17px;
  }

  .lf-flow-card strong {
    margin-top: 8px;
  }

  .lf-line-section {
    gap: 28px;
    padding: 38px 0;
  }

  .lf-equipment-list {
    grid-template-columns: 1fr;
  }

  .lf-line-section-visual .lf-image-placeholder {
    min-height: 0;
  }

  .lf-core-card-body {
    min-height: 0;
    padding: 22px 20px 24px;
  }

  .lf-card-actions {
    margin-top: 21px;
    padding-top: 0;
  }

  .lf-config-card {
    min-height: 0;
    padding: 24px 20px 27px;
  }

  .lf-config-detail {
    margin-top: 22px;
  }

  .lf-image-placeholder--wide {
    min-height: 170px;
    margin-top: 36px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .lf-split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .lf-split-heading > p {
    margin: 0;
    text-align: left;
  }

  .lf-layout-side {
    padding: 20px;
  }

  .lf-layout-schematic {
    padding: 18px 12px;
  }

  .lf-layout-labels text {
    font-size: 9px;
  }

  .lf-automation-grid article,
  .lf-delivery-grid li {
    min-height: 0;
    padding: 22px 20px;
  }

  .lf-delivery-grid > li > p {
    min-height: 0;
  }

  .lf-flow-panel-svg {
    width: 86%;
    left: 7%;
  }

  .lf-engineering-visual .lf-image-placeholder {
    min-height: 170px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .lf-engineering-visual svg {
    right: 6%;
    bottom: 11%;
    width: 120px;
  }

  .lf-applications-grid > div {
    padding: 22px 20px;
  }

  .lf-faq-resource-grid {
    gap: 44px;
  }

  .lf-rfq {
    padding-bottom: 74px;
  }

  .lf-rfq-route {
    margin-top: 31px;
  }

  .lf-rfq-panel .contact-form {
    grid-template-columns: 1fr;
  }

  .lf-rfq-panel .field-wide,
  .lf-rfq-panel .form-submit {
    grid-column: 1;
  }

  .lf-rfq-panel .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .lf-rfq-panel .form-submit .btn {
    width: 100%;
  }
}
.dynamic-product-page .dp-request-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 4px; }
.dynamic-product-page .dp-email-note { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.dynamic-product-page .dp-text-link { display: inline-block; margin-top: 10px; color: var(--accent); font-size: 13px; }
.dynamic-product-page .dp-faq-list { border-top: 1px solid var(--line-strong); }
.dynamic-product-page .dp-faq-list details { border-bottom: 1px solid var(--line); }
.dynamic-product-page .dp-faq-list summary { padding: 17px 32px 17px 0; color: var(--ink); font-size: 16px; font-weight: 500; }
.dynamic-product-page .dp-faq-list details p { max-width: 780px; margin: 0; padding: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* About Us */
.about-us-page { background: #fff; }
.about-us-page main { overflow: clip; }
.image-placeholder {
  display: flex;
  width: 100%;
  min-height: 220px;
  min-width: 0;
  box-sizing: border-box;
  aspect-ratio: var(--placeholder-ratio, 4 / 3);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(23, 26, 32, .34);
  border-radius: 12px;
  padding: 24px;
  background: #f1f3f5;
  color: #48515e;
  text-align: center;
}
.image-placeholder p { max-width: 540px; margin: 0; font-size: 13px; line-height: 1.65; }
.image-placeholder p + p { margin-top: 8px; color: #6b7380; }
.au-hero { background: #f5f7fa; }
.au-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); min-height: clamp(600px, calc(100svh - var(--header-height)), 780px); align-items: center; gap: clamp(48px, 7vw, 112px); padding-top: clamp(64px, 8vw, 124px); padding-bottom: clamp(68px, 8vw, 122px); }
.au-hero-copy { max-width: 590px; }
.au-hero h1 { max-width: 640px; margin: 14px 0 22px; font-size: clamp(42px, 4.4vw, 68px); line-height: 1.05; letter-spacing: -.035em; }
.au-lead { max-width: 540px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.au-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.au-actions .btn { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; }
.au-actions .btn span { transition: transform 180ms ease; }
.au-actions .btn:hover span, .au-actions .btn:focus-visible span { transform: translateX(3px); }
.au-hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 36px 0 0; padding: 17px 0 0; border-top: 1px solid var(--line-strong); list-style: none; }
.au-hero-points li { color: var(--body); font-size: 13px; }
.au-hero-points li::before { margin-right: 8px; color: var(--accent); content: "•"; }
.au-hero-visual { min-height: 400px; }
.au-anchor-nav { border-bottom: 1px solid var(--line); background: #fff; }
.au-anchor-nav .inner { display: flex; gap: clamp(16px, 3vw, 44px); overflow-x: auto; padding-top: 16px; padding-bottom: 16px; }
.au-anchor-nav a { flex: 0 0 auto; color: var(--muted); font-size: 12px; font-weight: 500; white-space: nowrap; transition: color 180ms ease; }
.au-anchor-nav a:hover, .au-anchor-nav a:focus-visible { color: var(--accent); }
.au-section { padding: clamp(78px, 9vw, 138px) 0; }
.au-section--soft { background: var(--surface-alt); }
.au-section--dark { background: var(--dark-surface); color: #fff; }
.au-section-heading { max-width: 760px; margin-bottom: 46px; }
.au-section-heading h2 { max-width: 730px; margin: 10px 0 16px; font-size: clamp(31px, 3.3vw, 48px); line-height: 1.16; letter-spacing: -.025em; }
.au-section-heading > p:not(.eyebrow) { max-width: 630px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.au-section--dark .au-section-heading h2 { color: #fff; }
.au-section--dark .au-section-heading > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.au-section--dark .eyebrow { color: #aebeff; }
.au-intro-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr); gap: clamp(56px, 11vw, 168px); }
.au-intro-grid .au-section-heading { margin-bottom: 0; }
.au-intro-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.76; }
.au-intro-copy > p + p { margin-top: 18px; }
.au-client-list { margin-top: 34px; border-top: 1px solid var(--line-strong); padding-top: 18px; }
.au-client-list > span { color: var(--accent); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.au-client-list ul { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 12px 0 0; padding: 0; list-style: none; }
.au-client-list li { color: var(--body); font-size: 14px; }
.au-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.au-service-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--card-radius); background: #fff; transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.au-service-card:hover { border-color: rgba(62,106,225,.5); box-shadow: 0 18px 36px rgba(24, 31, 46, .09); transform: translateY(-4px); }
.au-service-image { min-height: 235px; border-width: 0 0 1px; border-radius: 0; }
.au-service-card > div:last-child { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.au-service-card h3 { margin: 0 0 12px; font-size: 24px; }
.au-service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.au-service-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 21px 0 28px; padding: 0; list-style: none; }
.au-service-card li { border: 1px solid var(--line); border-radius: 100px; padding: 5px 8px; color: var(--muted); font-size: 11px; }
.au-service-card a, .au-industry-grid a { display: inline-flex; width: fit-content; align-items: center; gap: 8px; margin-top: auto; color: var(--accent); font-size: 13px; font-weight: 500; }
.au-service-card a span, .au-industry-grid a span { transition: transform 180ms ease; }
.au-service-card a:hover span, .au-service-card a:focus-visible span, .au-industry-grid a:hover span, .au-industry-grid a:focus-visible span { transform: translateX(3px); }
.au-process-flow { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; background: rgba(255,255,255,.18); }
.au-process-flow li { min-width: 0; background: rgba(255,255,255,.055); }
.au-process-flow a { display: flex; min-height: 196px; flex-direction: column; padding: 18px 16px; color: #fff; transition: background-color 180ms ease; }
.au-process-flow a:hover, .au-process-flow a:focus-visible { background: rgba(255,255,255,.11); }
.au-process-flow span { color: #aebeff; font-size: 11px; letter-spacing: .08em; }
.au-process-flow strong { margin-top: auto; color: #fff; font-size: 15px; line-height: 1.25; }
.au-process-flow small { display: block; min-height: 42px; margin-top: 10px; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.45; }
.au-process-visual { min-height: 210px; margin-top: 36px; border-color: rgba(174,190,255,.35); background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); }
.au-process-visual p + p { color: rgba(255,255,255,.58); }
.au-engineering-grid { display: grid; grid-template-columns: minmax(330px, .77fr) minmax(0, 1.23fr); gap: clamp(50px, 8vw, 122px); align-items: center; }
.au-engineering-image { min-height: 460px; }
.au-engineering-grid .au-section-heading { margin-bottom: 35px; }
.au-capability-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line-strong); }
.au-capability-grid article { min-height: 206px; padding: 23px; background: #fff; }
.au-capability-grid span { color: var(--accent); font-size: 11px; letter-spacing: .09em; }
.au-capability-grid h3 { margin: 32px 0 9px; font-size: 19px; }
.au-capability-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.au-heading-row { display: flex; max-width: none; align-items: flex-end; justify-content: space-between; gap: 46px; }
.au-heading-row > div { max-width: 720px; }
.au-heading-row > p { max-width: 360px !important; margin-bottom: 7px !important; }
.au-quality-layout { display: grid; grid-template-columns: minmax(330px, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 10vw, 150px); align-items: start; }
.au-quality-image { min-height: 460px; }
.au-quality-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; background: var(--line-strong); }
.au-quality-steps li { display: flex; gap: 18px; min-height: 152px; padding: 24px; background: #fff; }
.au-quality-steps span { color: var(--accent); font-size: 11px; letter-spacing: .08em; }
.au-quality-steps h3 { margin: 0 0 8px; font-size: 17px; }
.au-quality-steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.au-industries-visual { min-height: 220px; margin-bottom: 20px; }
.au-industry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line-strong); }
.au-industry-grid article { display: flex; min-height: 208px; flex-direction: column; padding: 24px; background: #fff; }
.au-industry-grid h3 { margin: 0 0 12px; font-size: 19px; }
.au-industry-grid p { margin: 0 0 22px; color: var(--muted); font-size: 13px; line-height: 1.58; }
.au-industry-grid a { font-size: 12px; }
.au-supply-grid { display: grid; grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr); gap: clamp(56px, 10vw, 154px); align-items: center; }
.au-supply-image { min-height: 370px; }
.au-supply-grid .au-section-heading { margin-bottom: 30px; }
.au-supply-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.au-supply-list li { display: flex; gap: 15px; border-bottom: 1px solid var(--line); padding: 16px 0; }
.au-supply-list > li > span { color: var(--accent); font-size: 19px; line-height: 1.2; }
.au-supply-list h3 { margin: 0 0 5px; font-size: 16px; }
.au-supply-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.au-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.au-gallery-image { min-height: 205px; }
.au-gallery-image--1 { grid-column: span 2; }
.au-gallery-image--4 { grid-column: span 2; }
.au-final-cta { padding: clamp(76px, 9vw, 130px) 0; background: var(--dark-surface); color: #fff; }
.au-final-cta-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(56px, 9vw, 132px); align-items: center; }
.au-final-cta h2 { max-width: 650px; margin: 12px 0 16px; color: #fff; font-size: clamp(34px, 4vw, 54px); line-height: 1.1; letter-spacing: -.025em; }
.au-final-cta > .inner > div > p:not(.eyebrow) { max-width: 620px; margin: 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; }
.au-final-cta ul { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 30px 0 0; padding: 0; list-style: none; }
.au-final-cta li { color: rgba(255,255,255,.76); font-size: 13px; }
.au-final-cta li::before { margin-right: 8px; color: #aebeff; content: "•"; }
.au-cta-panel { padding: 24px; background: #fff; }
.au-cta-image { min-height: 200px; }
.au-cta-panel .au-actions { margin-top: 20px; }
.au-cta-panel .btn-outline { border-color: var(--line-strong); color: var(--ink); }
@media (max-width: 900px) {
  .dynamic-product-page .dp-hero,
  .dynamic-product-page .dp-content-layout { grid-template-columns: 1fr; }
  .dynamic-product-page .dp-summary { order: 2; }
  .dynamic-product-page .dp-gallery { order: 1; }
  .dynamic-product-page .dp-data-grid,
  .dynamic-product-page .dp-capability-grid,
  .dynamic-product-page .dp-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dynamic-product-page .dp-document-item { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .dynamic-product-page .dp-section { padding: 60px 0; }
  .dynamic-product-page .dp-overview-section { padding-top: 4px; padding-bottom: 34px; }
  .dynamic-product-page .dp-main-image { min-height: 280px; padding: 18px; }
  .dynamic-product-page .dp-anchor-bar { top: 0; }
  .dynamic-product-page .dp-facts > div,
  .dynamic-product-page .dp-spec-table > div { grid-template-columns: 1fr; gap: 5px; }
  .dynamic-product-page .dp-actions,
  .dynamic-product-page .dp-request-actions { align-items: stretch; flex-direction: column; }
  .dynamic-product-page .dp-actions .btn,
  .dynamic-product-page .dp-request-actions .btn { width: 100%; }
  .dynamic-product-page .dp-data-grid,
  .dynamic-product-page .dp-capability-grid,
  .dynamic-product-page .dp-related-grid,
  .dynamic-product-page .dp-quality-images { grid-template-columns: 1fr; }
  .dynamic-product-page .dp-document-request-form,
  .dynamic-product-page .dp-request-form { grid-template-columns: 1fr; }
  .dynamic-product-page .dp-request-wide,
  .dynamic-product-page .dp-request-actions,
  .dynamic-product-page .dp-email-note,
  .dynamic-product-page .dp-request-form > .dp-form-status,
  .dynamic-product-page .dp-document-request-form .btn,
  .dynamic-product-page .dp-document-request-form .dp-form-status { grid-column: 1; }
  .dynamic-product-page .dp-guide-list > a { grid-template-columns: 84px 1fr 20px; gap: 12px; }
}

@media (max-width: 1100px) {
  .au-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr); gap: 46px; }
  .au-process-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .au-process-flow a { min-height: 160px; }
  .au-engineering-grid, .au-quality-layout, .au-supply-grid { gap: 52px; }
  .au-industry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .image-placeholder { min-height: 190px; padding: 20px; }
  .au-hero-grid, .au-intro-grid, .au-engineering-grid, .au-quality-layout, .au-supply-grid, .au-final-cta-grid { grid-template-columns: 1fr; }
  .au-hero-grid { min-height: 0; gap: 34px; padding-top: 56px; padding-bottom: 60px; }
  .au-hero h1 { font-size: clamp(40px, 11vw, 55px); }
  .au-lead { font-size: 16px; }
  .au-hero-visual { min-height: 260px; }
  .au-anchor-nav .inner { gap: 22px; }
  .au-section { padding: 68px 0; }
  .au-section-heading { margin-bottom: 32px; }
  .au-section-heading h2 { font-size: 30px; }
  .au-intro-grid { gap: 24px; }
  .au-service-grid { grid-template-columns: 1fr; }
  .au-service-image { min-height: 220px; }
  .au-process-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .au-process-flow a { min-height: 145px; }
  .au-process-flow small { min-height: 0; }
  .au-engineering-image, .au-quality-image, .au-supply-image { min-height: 290px; }
  .au-engineering-grid, .au-quality-layout, .au-supply-grid { gap: 34px; }
  .au-capability-grid, .au-quality-steps { grid-template-columns: 1fr; }
  .au-capability-grid article, .au-quality-steps li { min-height: 0; }
  .au-heading-row { display: block; }
  .au-heading-row > p { margin-bottom: 0 !important; }
  .au-industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .au-industry-grid article { min-height: 190px; padding: 20px; }
  .au-gallery-grid { grid-template-columns: 1fr; }
  .au-gallery-image--1, .au-gallery-image--4 { grid-column: auto; }
  .au-cta-panel { padding: 18px; }
}

@media (max-width: 430px) {
  .au-actions { align-items: stretch; flex-direction: column; }
  .au-actions .btn { justify-content: center; width: 100%; }
  .au-hero-points { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .au-process-flow { grid-template-columns: 1fr; }
  .au-process-flow a { min-height: 0; }
  .au-industry-grid { grid-template-columns: 1fr; }
  .au-industry-grid article { min-height: 0; }
}

/* Investment Casting process guide */
.investment-casting-page { background: #fff; }
.investment-casting-page main { overflow: clip; }
.ic-breadcrumb { display: flex; gap: 9px; padding-top: 16px; padding-bottom: 16px; color: var(--muted); font-size: 12px; }
.ic-breadcrumb a { color: var(--muted); transition: color 180ms ease; }
.ic-breadcrumb a:hover, .ic-breadcrumb a:focus-visible { color: var(--accent); }
.ic-breadcrumb strong { color: var(--body); font-weight: 500; }
.ic-hero { background: #f4f6fa; }
.ic-hero-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(390px, 1.07fr); min-height: clamp(520px, calc(100svh - var(--header-height) - 46px), 720px); align-items: center; gap: clamp(48px, 7vw, 112px); padding-top: 34px; padding-bottom: 72px; }
.ic-hero h1 { margin: 10px 0 5px; font-size: clamp(43px, 4.6vw, 68px); line-height: 1.04; letter-spacing: -.035em; }
.ic-subtitle { margin: 0; color: var(--accent); font-size: 14px; font-weight: 500; }
.ic-lead { max-width: 590px; margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.68; }
.ic-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.ic-actions .btn { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; }
.ic-actions .btn span, .ic-arrow-link span { transition: transform 180ms ease; }
.ic-actions .btn:hover span, .ic-actions .btn:focus-visible span, .ic-arrow-link:hover span, .ic-arrow-link:focus-visible span { transform: translateX(3px); }
.ic-text-link, .ic-arrow-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 13px; font-weight: 500; }
.ic-text-link { margin-top: 20px; }
.ic-hero-visual { position: relative; min-width: 0; }
.ic-hero-visual .image-placeholder { min-height: 350px; }
.ic-hero-visual svg { position: absolute; right: 7%; bottom: 21%; width: 84%; color: rgba(62, 106, 225, .38); pointer-events: none; }
.ic-hero-route { position: absolute; right: 10%; bottom: 9%; left: 10%; display: flex; align-items: center; justify-content: space-between; color: #6d7690; font-size: 10px; letter-spacing: .055em; text-transform: uppercase; }
.ic-hero-route i { color: var(--accent); font-size: 16px; font-style: normal; }
.ic-anchor-bar { position: sticky; top: var(--header-height); z-index: 4; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.95); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.ic-anchor-bar .inner { display: flex; gap: clamp(17px, 2.8vw, 38px); overflow-x: auto; padding-top: 14px; padding-bottom: 14px; }
.ic-anchor-bar a { flex: 0 0 auto; color: var(--muted); font-size: 12px; white-space: nowrap; transition: color 180ms ease; }
.ic-anchor-bar a:hover, .ic-anchor-bar a:focus-visible { color: var(--accent); }
.ic-section { padding: clamp(76px, 9vw, 132px) 0; }
.ic-section--soft { background: var(--surface-alt); }
.ic-section--shell, .ic-cta { background: var(--dark-surface); color: #fff; }
.ic-section-heading { max-width: 770px; margin-bottom: 44px; }
.ic-section-heading h2 { max-width: 760px; margin: 11px 0 16px; font-size: clamp(31px, 3.5vw, 50px); line-height: 1.14; letter-spacing: -.025em; }
.ic-section-heading > p:not(.eyebrow) { max-width: 650px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.68; }
.ic-overview-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(350px, 1.1fr); gap: clamp(54px, 11vw, 166px); }
.ic-overview-grid .ic-section-heading { margin-bottom: 0; }
.ic-overview-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.76; }
.ic-overview-copy > p + p { margin-top: 17px; }
.ic-lost-wax-note { margin-top: 31px; border-left: 2px solid var(--accent); padding: 3px 0 3px 16px; }
.ic-lost-wax-note span, .ic-number { display: block; color: var(--accent); font-size: 10px; letter-spacing: .1em; }
.ic-lost-wax-note p { margin: 5px 0 0; color: var(--body); font-size: 14px; line-height: 1.62; }
.ic-wide-visual { min-height: 190px; margin-top: 46px; }
.ic-flow-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; background: var(--line-strong); }
.ic-flow-grid li { min-width: 0; background: #fff; }
.ic-flow-grid a { display: flex; min-height: 208px; flex-direction: column; padding: 21px 19px; color: var(--ink); transition: background-color 180ms ease, color 180ms ease; }
.ic-flow-grid a:hover, .ic-flow-grid a:focus-visible { background: #252a34; color: #fff; }
.ic-flow-grid span { color: var(--accent); font-size: 11px; letter-spacing: .08em; }
.ic-flow-grid strong { margin-top: auto; color: inherit; font-size: 16px; line-height: 1.25; }
.ic-flow-grid small { display: block; min-height: 50px; margin-top: 10px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.ic-flow-grid a:hover small, .ic-flow-grid a:focus-visible small { color: rgba(255,255,255,.66); }
.ic-shell-cycle { display: grid; grid-template-columns: auto minmax(180px, .8fr) auto; align-items: center; gap: 24px; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 22px; }
.ic-shell-cycle > span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.ic-shell-cycle svg { width: 100%; color: var(--accent); }
.ic-shell-cycle ol { display: flex; gap: 13px; margin: 0; padding: 0; list-style: none; }
.ic-shell-cycle li { color: var(--body); font-size: 12px; }
.ic-shell-cycle li + li::before { margin-right: 13px; color: var(--accent); content: '→'; }
.ic-stage-layout { display: grid; grid-template-columns: minmax(190px, .26fr) minmax(0, .74fr); gap: clamp(32px, 6vw, 84px); align-items: start; }
.ic-stage-nav { position: sticky; top: calc(var(--header-height) + 60px); display: grid; border-top: 1px solid var(--line-strong); }
.ic-stage-nav > span { padding: 15px 0; color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.ic-stage-nav a { display: grid; grid-template-columns: 26px 1fr; gap: 7px; border-top: 1px solid var(--line); padding: 10px 0; color: var(--muted); font-size: 12px; line-height: 1.35; transition: color 180ms ease; }
.ic-stage-nav a:last-child { border-bottom: 1px solid var(--line); }
.ic-stage-nav i { color: var(--accent); font-size: 10px; font-style: normal; }
.ic-stage-nav a:hover, .ic-stage-nav a:focus-visible, .ic-stage-nav a.is-active { color: var(--accent); }
.ic-stage-list { display: grid; gap: 1px; background: var(--line-strong); }
.ic-stage { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr); min-width: 0; background: #fff; }
.ic-stage-copy { min-width: 0; padding: clamp(25px, 4vw, 48px); }
.ic-stage h3 { margin: 11px 0 11px; font-size: clamp(23px, 2.4vw, 32px); line-height: 1.16; }
.ic-stage-summary { margin: 0 0 27px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.ic-stage-block { margin-top: 20px; }
.ic-stage-block > strong, .ic-stage-columns strong { color: var(--body); font-size: 12px; font-weight: 600; }
.ic-stage-block p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.ic-stage-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin: 25px 0 29px; border-top: 1px solid var(--line); padding-top: 18px; }
.ic-stage-columns ul { display: grid; gap: 7px; margin: 9px 0 0; padding: 0; list-style: none; }
.ic-stage-columns li { color: var(--muted); font-size: 12px; line-height: 1.42; }
.ic-stage-columns li::before { margin-right: 7px; color: var(--accent); content: '•'; }
.ic-stage-visual { min-height: 100%; border-width: 0 0 0 1px; border-radius: 0; }
.ic-control-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; background: var(--line-strong); }
.ic-control-grid article { min-height: 230px; padding: 23px; background: #fff; }
.ic-control-grid span, .ic-thermal-grid span { color: var(--accent); font-size: 11px; letter-spacing: .08em; }
.ic-control-grid h3 { margin: 33px 0 9px; font-size: 18px; line-height: 1.25; }
.ic-control-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.ic-section--shell .ic-section-heading h2 { color: #fff; }
.ic-section--shell .ic-section-heading > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.ic-section--shell .eyebrow { color: #aebeff; }
.ic-shell-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(58px, 10vw, 150px); align-items: center; }
.ic-shell-definitions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; background: rgba(255,255,255,.16); }
.ic-shell-definitions > div { min-height: 150px; padding: 21px; background: rgba(255,255,255,.05); }
.ic-shell-definitions dt { color: #aebeff; font-size: 13px; font-weight: 500; }
.ic-shell-definitions dd { margin: 9px 0 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.58; }
.ic-shell-visual { position: relative; }
.ic-shell-visual .image-placeholder { min-height: 350px; border-color: rgba(174,190,255,.35); background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); }
.ic-shell-visual .image-placeholder p + p { color: rgba(255,255,255,.58); }
.ic-shell-visual svg { position: absolute; right: 11%; bottom: 15%; width: 64%; color: rgba(174,190,255,.5); pointer-events: none; }
.ic-thermal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line-strong); }
.ic-thermal-grid article { min-height: 220px; padding: 27px; background: #fff; }
.ic-thermal-grid h3 { margin: 38px 0 11px; font-size: 22px; }
.ic-thermal-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }
.ic-table-wrap { overflow-x: auto; border: 1px solid var(--line-strong); }
.ic-table-wrap table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.ic-table-wrap caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.ic-table-wrap th, .ic-table-wrap td { border-bottom: 1px solid var(--line); padding: 17px 19px; vertical-align: top; font-size: 13px; line-height: 1.55; }
.ic-table-wrap thead th { background: #f2f4f7; color: var(--body); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.ic-table-wrap tbody th { width: 18%; color: var(--ink); font-weight: 500; }
.ic-table-wrap td { color: var(--muted); }
.ic-table-wrap a { color: var(--accent); font-size: 12px; font-weight: 500; }
.ic-equipment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ic-equipment-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: var(--card-radius); background: #fff; }
.ic-equipment-image { min-height: 220px; border-width: 0 0 1px; border-radius: 0; }
.ic-equipment-grid article > div:last-child { padding: 24px; }
.ic-equipment-grid h3 { margin: 11px 0 10px; font-size: 22px; line-height: 1.2; }
.ic-equipment-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }
.ic-equipment-grid ul { display: grid; gap: 7px; margin: 20px 0 24px; padding: 0; list-style: none; }
.ic-equipment-grid li { color: var(--body); font-size: 12px; }
.ic-equipment-grid li::before { margin-right: 8px; color: var(--accent); content: '•'; }
.ic-app-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line-strong); }
.ic-app-grid article { padding: 23px; background: #fff; }
.ic-app-image { min-height: 170px; margin-bottom: 21px; }
.ic-app-grid h3 { margin: 11px 0 9px; font-size: 20px; line-height: 1.25; }
.ic-app-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.ic-choose-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px, 8vw, 120px); margin: 1px 0; padding: 40px; background: #fff; }
.ic-choose-grid ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 20px; margin: 18px 0 0; padding: 0; list-style: none; }
.ic-choose-grid li { color: var(--body); font-size: 13px; }
.ic-choose-grid li span { margin-right: 8px; color: var(--accent); }
.ic-choose-grid h3 { margin: 10px 0; font-size: 25px; }
.ic-choose-grid p:not(.eyebrow) { max-width: 510px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.ic-faq-resource-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr); gap: clamp(38px, 7vw, 100px); align-items: start; }
.ic-faq-list { border-top: 1px solid var(--line-strong); }
.ic-faq-list article { border-bottom: 1px solid var(--line); }
.ic-faq-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 18px; border: 0; padding: 18px 4px 18px 0; background: transparent; color: var(--ink); font-size: 16px; font-weight: 500; line-height: 1.42; text-align: left; cursor: pointer; }
.ic-faq-toggle > span { flex: 0 0 auto; color: var(--accent); font-size: 22px; font-weight: 400; }
.ic-faq-toggle:hover, .ic-faq-toggle:focus-visible { color: var(--accent); }
.ic-faq-list article > div p { max-width: 760px; margin: 0; padding: 0 0 19px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.ic-resource-aside { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.ic-resource-aside > span { padding: 16px 0; color: var(--accent); font-size: 10px; letter-spacing: .1em; }
.ic-resource-aside a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3px 12px; border-top: 1px solid var(--line); padding: 15px 0; }
.ic-resource-aside strong { color: var(--ink); font-size: 14px; font-weight: 500; }
.ic-resource-aside a > span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.ic-resource-aside b { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--accent); font-size: 16px; font-weight: 400; transition: transform 180ms ease; }
.ic-resource-aside a:hover b, .ic-resource-aside a:focus-visible b { transform: translateX(3px); }
.ic-cta { padding: clamp(76px, 9vw, 130px) 0; }
.ic-cta-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr); gap: clamp(54px, 9vw, 128px); align-items: center; }
.ic-cta .eyebrow { color: #aebeff; }
.ic-cta h2 { max-width: 600px; margin: 11px 0 16px; color: #fff; font-size: clamp(34px, 4vw, 53px); line-height: 1.1; letter-spacing: -.025em; }
.ic-cta > .inner > div > p:not(.eyebrow) { max-width: 620px; margin: 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; }
.ic-cta ul { display: grid; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.ic-cta li { color: rgba(255,255,255,.75); font-size: 13px; }
.ic-cta li::before { margin-right: 8px; color: #aebeff; content: '+'; }
.ic-cta-panel { padding: clamp(23px, 4vw, 38px); background: #fff; }
.ic-cta-panel .eyebrow { color: var(--accent); }
.ic-cta-panel h3 { margin: 9px 0 20px; color: var(--ink); font-size: 26px; }
.ic-cta-panel li { color: var(--muted); }
.ic-cta-panel li::before { color: var(--accent); }
.ic-cta-panel .ic-actions { margin-top: 27px; }
.ic-cta-panel .btn-outline { border-color: var(--line-strong); color: var(--ink); }
@media (max-width: 1100px) {
  .ic-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr); gap: 42px; }
  .ic-flow-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ic-flow-grid a { min-height: 180px; }
  .ic-control-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ic-equipment-grid, .ic-app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .ic-stage-layout, .ic-stage { grid-template-columns: 1fr; }
  .ic-stage-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 28px; }
  .ic-stage-nav > span { grid-column: 1 / -1; }
  .ic-stage-nav a { min-height: 52px; padding: 9px 8px 9px 0; }
  .ic-stage-visual { min-height: 260px; border-width: 1px 0 0; }
}
@media (max-width: 767px) {
  .ic-breadcrumb { padding-top: 14px; padding-bottom: 13px; }
  .ic-hero-grid, .ic-overview-grid, .ic-stage-layout, .ic-stage, .ic-shell-grid, .ic-faq-resource-grid, .ic-cta-grid { grid-template-columns: 1fr; }
  .ic-hero-grid { min-height: 0; gap: 32px; padding-top: 46px; padding-bottom: 58px; }
  .ic-hero h1 { font-size: clamp(39px, 11vw, 54px); }
  .ic-lead { font-size: 16px; }
  .ic-hero-visual .image-placeholder { min-height: 275px; }
  .ic-hero-route { font-size: 8px; }
  .ic-anchor-bar .inner { gap: 19px; padding-top: 12px; padding-bottom: 12px; }
  .ic-section { padding: 66px 0; }
  .ic-section-heading { margin-bottom: 31px; }
  .ic-section-heading h2 { font-size: 30px; }
  .ic-overview-grid { gap: 23px; }
  .ic-wide-visual { min-height: 170px; margin-top: 34px; }
  .ic-flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ic-flow-grid a { min-height: 150px; }
  .ic-flow-grid small { min-height: 0; }
  .ic-shell-cycle { grid-template-columns: 1fr; gap: 12px; }
  .ic-shell-cycle svg { display: none; }
  .ic-shell-cycle ol { flex-wrap: wrap; }
  .ic-stage-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 28px; }
  .ic-stage-nav > span { grid-column: 1 / -1; }
  .ic-stage-nav a { min-height: 52px; padding: 9px 8px 9px 0; }
  .ic-stage { min-width: 0; }
  .ic-stage-copy { padding: 25px 20px 28px; }
  .ic-stage-columns, .ic-shell-definitions, .ic-choose-grid { grid-template-columns: 1fr; }
  .ic-stage-visual { min-height: 230px; border-width: 1px 0 0; }
  .ic-control-grid { grid-template-columns: 1fr; }
  .ic-control-grid article { min-height: 0; padding: 22px 20px; }
  .ic-shell-grid { gap: 35px; }
  .ic-shell-visual .image-placeholder { min-height: 280px; }
  .ic-thermal-grid { grid-template-columns: 1fr; }
  .ic-thermal-grid article { min-height: 0; padding: 24px 20px; }
  .ic-equipment-grid, .ic-app-grid { grid-template-columns: 1fr; }
  .ic-equipment-image { min-height: 210px; }
  .ic-app-image { min-height: 190px; }
  .ic-choose-grid { gap: 28px; padding: 26px 20px; }
  .ic-choose-grid ul { grid-template-columns: 1fr; }
  .ic-faq-resource-grid { gap: 45px; }
  .ic-cta { padding: 70px 0; }
}
@media (max-width: 430px) {
  .ic-actions { align-items: stretch; flex-direction: column; }
  .ic-actions .btn { justify-content: center; width: 100%; }
  .ic-flow-grid { grid-template-columns: 1fr; }
  .ic-flow-grid a { min-height: 0; }
  .ic-stage-nav { grid-template-columns: 1fr; }
}

/* Custom Foundry Solutions engineering landing page. */
.custom-foundry-page {
  background: #fff;
  color: var(--body);
}

.custom-foundry-page main {
  overflow: clip;
}

.cfs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.cfs-breadcrumb strong {
  overflow: hidden;
  color: var(--ink);
  font-weight: 500;
  text-overflow: ellipsis;
}

.cfs-breadcrumb a:hover,
.cfs-breadcrumb a:focus-visible {
  color: var(--accent);
}

.cfs-hero {
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.cfs-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: 610px;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding-top: 72px;
  padding-bottom: 84px;
}

.cfs-hero-copy {
  grid-column: 1 / 7;
  min-width: 0;
}

.cfs-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.035em;
  line-height: 1.04;
}

.cfs-hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.cfs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cfs-actions .btn {
  min-height: 46px;
}

.cfs-actions .btn span,
.cfs-card-links span,
.cfs-anchor-cta span,
.line-custom-cta__inner .btn span {
  display: inline-block;
  transition: transform 180ms ease;
}

.cfs-actions .btn:hover span,
.cfs-actions .btn:focus-visible span,
.cfs-card-links a:hover span,
.cfs-card-links a:focus-visible span,
.cfs-anchor-cta:hover span,
.cfs-anchor-cta:focus-visible span,
.line-custom-cta__inner .btn:hover span,
.line-custom-cta__inner .btn:focus-visible span {
  transform: translateX(3px);
}

.cfs-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cfs-chip-list li {
  border: 1px solid var(--line-strong);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .03em;
}

.cfs-hero-visual {
  position: relative;
  grid-column: 7 / 13;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #c9ccd1;
  background: #e8e9eb;
}

.cfs-placeholder {
  display: block;
  min-height: 220px;
  border: 1px dashed #afb3ba;
  padding: 20px;
  background: linear-gradient(135deg, #f7f7f7 0%, #e9eaec 100%);
  color: #656a72;
  font-size: 13px;
  line-height: 1.65;
}

.cfs-placeholder span {
  color: var(--accent);
  font-weight: 600;
}

.cfs-placeholder p {
  margin: 3px 0 0;
}

.cfs-placeholder--hero {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  min-height: 440px;
  padding: 142px 34px 72px;
  background: #dfe1e4;
  color: #555b64;
  text-align: center;
}

.cfs-hero-svg {
  position: absolute;
  inset: 12% 5% auto;
  z-index: 2;
  width: 90%;
  height: auto;
  color: rgba(62, 106, 225, .48);
  pointer-events: none;
}

.cfs-hero-route {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cfs-hero-route i {
  color: var(--accent);
  font-style: normal;
}

.cfs-anchor-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 14px rgba(23, 26, 32, .04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cfs-anchor-bar .inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  overflow-x: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  white-space: nowrap;
  scrollbar-width: thin;
}

.cfs-anchor-bar a {
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.cfs-anchor-bar a:hover,
.cfs-anchor-bar a:focus-visible {
  color: var(--accent);
}

.cfs-anchor-bar .cfs-anchor-cta {
  margin-left: auto;
  color: var(--accent);
  font-weight: 500;
}

.cfs-section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.cfs-section--soft {
  background: var(--surface-alt);
}

.cfs-section--dark,
.cfs-inquiry {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, .76);
}

.cfs-section-heading {
  max-width: 840px;
  margin-bottom: 48px;
}

.cfs-section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.02em;
}

.cfs-section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cfs-section-heading--light h2,
.cfs-section--dark .cfs-section-heading > p:not(.eyebrow),
.cfs-inquiry h2,
.cfs-inquiry p,
.cfs-inquiry li {
  color: #fff;
}

.cfs-section--dark .cfs-section-heading > p:not(.eyebrow),
.cfs-inquiry-copy > p:not(.eyebrow),
.cfs-inquiry-copy li {
  color: rgba(255, 255, 255, .7);
}

.cfs-index {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.4;
}

.cfs-fit-grid,
.cfs-planning-grid,
.cfs-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.cfs-fit-card,
.cfs-planning-grid article,
.cfs-reasons-grid article {
  min-width: 0;
  min-height: 220px;
  padding: 25px;
  background: #fff;
}

.cfs-fit-card h3,
.cfs-planning-grid h3,
.cfs-reasons-grid h3 {
  margin: 28px 0 12px;
  font-size: 21px;
}

.cfs-fit-card p,
.cfs-planning-grid p,
.cfs-reasons-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.cfs-planning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cfs-planning-grid article {
  min-height: 190px;
}

.cfs-engineering-wrap {
  position: relative;
}

.cfs-engineering-svg {
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 82px;
  color: rgba(62, 106, 225, .68);
  pointer-events: none;
}

.cfs-engineering-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-strong);
}

.cfs-engineering-grid li {
  min-width: 0;
  min-height: 245px;
  padding: 22px 17px;
  background: #fff;
}

.cfs-engineering-grid h3 {
  margin: 80px 0 11px;
  font-size: 18px;
}

.cfs-engineering-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cfs-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.cfs-process-card {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  padding: 25px;
  background: #fff;
}

.cfs-process-card h3 {
  margin: 27px 0 12px;
  font-size: 22px;
}

.cfs-process-card h3 a:hover,
.cfs-process-card h3 a:focus-visible {
  color: var(--accent);
}

.cfs-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.cfs-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 24px;
}

.cfs-card-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 12px;
}

.cfs-workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, .16);
}

.cfs-workflow-grid li {
  min-width: 0;
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, .06);
}

.cfs-workflow-grid h3 {
  margin: 56px 0 10px;
  color: #fff;
  font-size: 19px;
}

.cfs-workflow-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  line-height: 1.6;
}

.cfs-information-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-strong);
}

.cfs-information-column {
  min-width: 0;
  padding: 28px;
  background: #fff;
}

.cfs-information-column--soft {
  background: var(--surface-alt);
}

.cfs-information-column h3 {
  margin-bottom: 23px;
  font-size: 24px;
}

.cfs-information-column ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cfs-information-column li {
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--body);
  font-size: 14px;
}

.cfs-information-column li span {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.2;
}

.cfs-architecture-flow {
  overflow-x: auto;
  padding-bottom: 6px;
}

.cfs-architecture-flow ol {
  display: grid;
  grid-template-columns: repeat(8, minmax(150px, 1fr));
  min-width: 1180px;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-strong);
}

.cfs-architecture-flow li {
  position: relative;
  min-height: 185px;
  padding: 18px;
  background: #fff;
}

.cfs-architecture-flow li:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: -7px;
  z-index: 2;
  color: var(--accent);
  content: "→";
  font-size: 18px;
}

.cfs-architecture-number {
  display: block;
  margin-bottom: 44px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .08em;
}

.cfs-architecture-flow strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.cfs-architecture-flow p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.cfs-placeholder--wide {
  aspect-ratio: 16 / 9;
  min-height: 220px;
  margin-top: 28px;
  padding: clamp(30px, 6vw, 74px) 28px;
  text-align: center;
}

.cfs-faq-list {
  border-top: 1px solid var(--line-strong);
}

.cfs-faq-list details {
  border-bottom: 1px solid var(--line);
}

.cfs-faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 18px 48px 18px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  list-style: none;
}

.cfs-faq-list summary::-webkit-details-marker {
  display: none;
}

.cfs-faq-list summary::after {
  position: absolute;
  top: 13px;
  right: 3px;
  color: var(--accent);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.cfs-faq-list details[open] summary::after {
  content: "−";
}

.cfs-faq-list details p {
  max-width: 850px;
  margin: 0;
  padding: 0 48px 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.cfs-inquiry {
  padding-bottom: 110px;
}

.cfs-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.cfs-inquiry-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
}

.cfs-inquiry-copy > p:not(.eyebrow) {
  max-width: 590px;
  line-height: 1.7;
}

.cfs-inquiry-copy ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.cfs-inquiry-copy li {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 10px 0;
  font-size: 13px;
}

.cfs-inquiry-route {
  max-width: 250px;
  margin-top: 32px;
  color: #aebeff;
}

.cfs-inquiry-route svg {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.cfs-inquiry-route span {
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cfs-inquiry-panel {
  min-width: 0;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
}

.cfs-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.cfs-form > label {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cfs-form input:not([type="checkbox"]),
.cfs-form select,
.cfs-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
}

.cfs-form textarea {
  resize: vertical;
}

.cfs-form input[type="file"] {
  padding: 9px 10px;
}

.cfs-form input:focus,
.cfs-form select:focus,
.cfs-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.cfs-form small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: normal;
  line-height: 1.45;
  text-transform: none;
}

.cfs-form .field-wide,
.cfs-form .form-submit {
  grid-column: 1 / -1;
}

.cfs-form .form-consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: normal;
  line-height: 1.5;
  text-transform: none;
}

.cfs-form .form-consent input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.cfs-form .form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  justify-content: flex-start;
}

.cfs-form .email-route {
  flex: 1 1 280px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.cfs-form .email-route-link {
  color: var(--accent);
}

.cfs-form .success {
  flex-basis: 100%;
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.5;
}

.cfs-form .success.is-error {
  color: #b42318;
}

.cfs-form .success.is-success {
  color: #137333;
}

.line-custom-cta {
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.line-custom-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.line-custom-cta__inner h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 36px);
}

.line-custom-cta__inner p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .cfs-hero-grid {
    gap: 34px;
  }

  .cfs-engineering-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cfs-engineering-grid li {
    min-height: 210px;
  }

  .cfs-engineering-grid h3 {
    margin-top: 45px;
  }

  .cfs-engineering-svg {
    display: none;
  }
}

@media (max-width: 1024px) {
  .cfs-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .cfs-fit-grid,
  .cfs-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfs-planning-grid,
  .cfs-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfs-workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cfs-workflow-grid li:last-child {
    grid-column: 2;
  }

  .cfs-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .cfs-inquiry-copy > p:not(.eyebrow) {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .cfs-breadcrumb {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .cfs-hero-grid {
    display: block;
    min-height: 0;
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .cfs-hero-copy {
    margin-bottom: 38px;
  }

  .cfs-hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .cfs-hero-visual {
    width: 100%;
  }

  .cfs-placeholder--hero {
    min-height: 300px;
    padding: 78px 20px 62px;
  }

  .cfs-anchor-bar .inner {
    gap: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .cfs-anchor-bar .cfs-anchor-cta {
    margin-left: 0;
  }

  .cfs-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cfs-section-heading {
    margin-bottom: 32px;
  }

  .cfs-fit-grid,
  .cfs-planning-grid,
  .cfs-process-grid,
  .cfs-reasons-grid,
  .cfs-workflow-grid,
  .cfs-information-grid,
  .cfs-form {
    grid-template-columns: 1fr;
  }

  .cfs-fit-card,
  .cfs-planning-grid article,
  .cfs-process-card,
  .cfs-reasons-grid article,
  .cfs-workflow-grid li {
    min-height: 0;
  }

  .cfs-engineering-grid {
    grid-template-columns: 1fr;
  }

  .cfs-engineering-grid li {
    min-height: 0;
  }

  .cfs-engineering-grid h3,
  .cfs-workflow-grid h3 {
    margin-top: 28px;
  }

  .cfs-workflow-grid li:last-child {
    grid-column: auto;
  }

  .cfs-information-column {
    padding: 22px 20px;
  }

  .cfs-information-column ul {
    grid-template-columns: 1fr;
  }

  .cfs-architecture-flow ol {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .cfs-architecture-flow li {
    min-height: 0;
  }

  .cfs-architecture-number {
    margin-bottom: 17px;
  }

  .cfs-architecture-flow li:not(:last-child)::after {
    top: auto;
    right: 18px;
    bottom: -11px;
    transform: rotate(90deg);
  }

  .cfs-placeholder--wide {
    min-height: 220px;
    padding: 44px 20px;
  }

  .cfs-inquiry-panel {
    padding: 22px 20px;
  }

  .cfs-form .field-wide,
  .cfs-form .form-submit {
    grid-column: 1;
  }

  .line-custom-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 38px;
    padding-bottom: 38px;
  }
}

@media (max-width: 430px) {
  .cfs-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cfs-actions .btn {
    width: 100%;
  }

  .cfs-hero-route {
    gap: 6px;
    font-size: 9px;
  }

  .cfs-form .form-submit .btn {
    width: 100%;
  }
}

/* Green Sand Casting process page */
.green-sand-casting-process-page {
  overflow-x: hidden;
}

.gsp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}

.gsp-breadcrumb a:hover,
.gsp-breadcrumb a:focus-visible {
  color: var(--accent);
}

.gsp-breadcrumb strong {
  color: var(--ink);
  font-weight: 500;
}

.gsp-hero {
  padding: 55px 0 78px;
  background: var(--surface-alt);
}

.gsp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

.gsp-hero-copy,
.gsp-hero-visual,
.gsp-stage-copy,
.gsp-stage-visual {
  min-width: 0;
}

.gsp-hero h1 {
  max-width: 620px;
  margin: 10px 0 20px;
  font-size: clamp(40px, 5.3vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.gsp-hero-lead {
  max-width: 650px;
  margin: 0 0 27px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.gsp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 23px;
}

.gsp-actions .btn {
  min-height: 42px;
}

.gsp-actions .btn span,
.gsp-text-link span,
.gsp-stage-links span,
.gsp-equipment-body > a span,
.gsp-related-process a span,
.gsp-cta-actions span {
  display: inline-flex;
  transition: transform 180ms ease;
}

.gsp-actions .btn:hover span,
.gsp-actions .btn:focus-visible span,
.gsp-text-link:hover span,
.gsp-text-link:focus-visible span,
.gsp-stage-links a:hover span,
.gsp-stage-links a:focus-visible span,
.gsp-equipment-body > a:hover span,
.gsp-equipment-body > a:focus-visible span,
.gsp-related-process a:hover span,
.gsp-related-process a:focus-visible span,
.gsp-cta-actions a:hover span,
.gsp-cta-actions a:focus-visible span {
  transform: translateX(3px);
}

.gsp-text-link,
.gsp-stage-links a,
.gsp-equipment-body > a,
.gsp-related-process a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.gsp-text-link:hover,
.gsp-text-link:focus-visible,
.gsp-stage-links a:hover,
.gsp-stage-links a:focus-visible,
.gsp-equipment-body > a:hover,
.gsp-equipment-body > a:focus-visible,
.gsp-related-process a:hover,
.gsp-related-process a:focus-visible {
  color: var(--accent-dark);
}

.gsp-hero-visual {
  position: relative;
}

.gsp-placeholder {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  padding: 28px;
  background: #f7f8fa;
  color: var(--muted);
  text-align: left;
}

.gsp-placeholder--hero {
  min-height: 390px;
  padding: 42px;
  background: #eef1f6;
}

.gsp-placeholder--wide {
  min-height: 255px;
}

.gsp-placeholder--equipment {
  min-height: 205px;
  padding: 22px;
}

.gsp-placeholder > span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gsp-placeholder p {
  max-width: 760px;
  margin: 0 0 7px;
  font-size: 13px;
  line-height: 1.55;
}

.gsp-placeholder p:last-child {
  margin-bottom: 0;
}

.gsp-hero-svg {
  position: absolute;
  inset: auto 0 31px;
  width: 100%;
  height: 180px;
  color: rgba(62, 106, 225, .48);
  pointer-events: none;
}

.gsp-hero-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gsp-hero-route i {
  color: var(--muted);
  font-style: normal;
}

.gsp-anchor-bar {
  position: sticky;
  top: var(--header-height, 76px);
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
}

.gsp-anchor-bar .inner {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
  white-space: nowrap;
}

.gsp-anchor-bar a {
  color: var(--muted);
  font-size: 12px;
}

.gsp-anchor-bar a:hover,
.gsp-anchor-bar a:focus-visible {
  color: var(--accent);
}

.gsp-section,
.gsp-stage {
  scroll-margin-top: calc(var(--header-height, 76px) + 58px);
}

.gsp-section {
  padding: 86px 0;
}

.gsp-section--soft {
  background: var(--surface-alt);
}

.gsp-section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.gsp-section-heading h2 {
  max-width: 780px;
  margin: 9px 0 13px;
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.gsp-section-heading > p:not(.eyebrow) {
  max-width: 730px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gsp-intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(35px, 8vw, 120px);
  align-items: start;
}

.gsp-intro-grid .gsp-section-heading {
  margin-bottom: 0;
}

.gsp-intro-copy {
  max-width: 760px;
  margin: 0 0 27px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.gsp-principle-grid,
.gsp-composition-grid,
.gsp-preparation-grid,
.gsp-control-grid,
.gsp-applications-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.gsp-principle-grid article,
.gsp-composition-grid article,
.gsp-preparation-grid article,
.gsp-control-grid article,
.gsp-applications-grid article {
  min-width: 0;
  padding: 22px 20px;
  background: #fff;
}

.gsp-index,
.gsp-number,
.gsp-flow-number,
.gsp-resource-label {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gsp-principle-grid h3,
.gsp-composition-grid h3,
.gsp-preparation-grid h3,
.gsp-control-grid h3,
.gsp-applications-grid h3 {
  margin: 13px 0 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.gsp-principle-grid p,
.gsp-composition-grid p,
.gsp-preparation-grid p,
.gsp-control-grid article > p,
.gsp-applications-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.gsp-overview-visual {
  margin-top: 45px;
}

.gsp-mold-svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 18px;
  color: var(--accent);
}

.gsp-mold-svg text {
  fill: currentColor;
  font-size: 11px;
  letter-spacing: .06em;
}

.gsp-sand-consistency {
  display: grid;
  grid-template-columns: minmax(230px, .68fr) minmax(0, 1.32fr);
  gap: 30px;
  align-items: start;
  margin: 38px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 27px 0;
}

.gsp-sand-consistency h3 {
  margin: 9px 0 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
}

.gsp-consistency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.gsp-consistency-list p {
  margin: 0;
}

.gsp-consistency-list strong,
.gsp-consistency-list span {
  display: block;
}

.gsp-consistency-list strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.gsp-consistency-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.gsp-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-strong);
}

.gsp-flow-grid li {
  min-width: 0;
  background: #fff;
}

.gsp-flow-grid a {
  position: relative;
  display: flex;
  min-height: 148px;
  flex-direction: column;
  padding: 18px 32px 18px 18px;
  color: inherit;
}

.gsp-flow-grid a:hover,
.gsp-flow-grid a:focus-visible {
  background: #f5f7fc;
}

.gsp-flow-grid strong {
  margin: 15px 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.gsp-flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.gsp-flow-grid i {
  position: absolute;
  right: 12px;
  bottom: 15px;
  color: var(--accent);
  font-size: 18px;
  font-style: normal;
}

.gsp-loop-note {
  display: flex;
  max-width: 780px;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  border-left: 2px solid var(--accent);
  padding: 5px 0 5px 18px;
}

.gsp-loop-note svg {
  flex: 0 0 130px;
  color: var(--accent);
}

.gsp-loop-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.gsp-loop-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.gsp-stage-layout {
  display: grid;
  grid-template-columns: minmax(190px, .32fr) minmax(0, 1.68fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.gsp-stage-nav {
  position: sticky;
  top: calc(var(--header-height, 76px) + 60px);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - var(--header-height, 76px) - 90px);
  overflow: auto;
  border-top: 1px solid var(--line-strong);
}

.gsp-stage-nav > span {
  padding: 13px 0 11px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gsp-stage-nav a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 10px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.gsp-stage-nav a:hover,
.gsp-stage-nav a:focus-visible,
.gsp-stage-nav a.is-active {
  color: var(--accent);
}

.gsp-stage-nav i {
  color: inherit;
  font-size: 11px;
  font-style: normal;
}

.gsp-stage-list {
  border-top: 1px solid var(--line-strong);
}

.gsp-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, .92fr);
  gap: clamp(30px, 5vw, 76px);
  border-bottom: 1px solid var(--line-strong);
  padding: 48px 0;
}

.gsp-stage:nth-child(even) .gsp-stage-visual {
  order: -1;
}

.gsp-stage h3 {
  margin: 12px 0 12px;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}

.gsp-stage-summary {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.gsp-stage-block {
  margin-top: 17px;
}

.gsp-stage-block > strong,
.gsp-stage-columns strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gsp-stage-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.gsp-stage-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 25px;
}

.gsp-stage-columns ul,
.gsp-equipment-body ul,
.gsp-cta ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gsp-stage-columns li,
.gsp-equipment-body li {
  position: relative;
  margin-top: 7px;
  padding-left: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.gsp-stage-columns li::before,
.gsp-equipment-body li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.gsp-stage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 27px;
}

.gsp-stage-visual {
  position: relative;
  align-self: start;
}

.gsp-stage-visual .gsp-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.gsp-stage-visual > svg {
  position: absolute;
  right: 22px;
  bottom: 21px;
  width: 52px;
  color: rgba(62, 106, 225, .7);
}

.gsp-preparation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 35px;
}

.gsp-return-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-strong);
}

.gsp-return-grid li {
  position: relative;
  min-width: 0;
  min-height: 160px;
  padding: 18px 24px 18px 18px;
  background: #fff;
}

.gsp-return-grid strong {
  display: block;
  margin: 13px 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.gsp-return-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.gsp-return-grid i {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--accent);
  font-size: 18px;
  font-style: normal;
  transform: translateY(-50%);
}

.gsp-return-boundary {
  display: flex;
  max-width: 950px;
  align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 18px;
}

.gsp-return-boundary svg {
  flex: 0 0 42px;
  color: var(--accent);
}

.gsp-return-boundary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.gsp-return-boundary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.gsp-control-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gsp-control-grid article:nth-child(n+5) {
  grid-column: span 1;
}

.gsp-control-icon {
  display: block;
  width: 38px;
  color: var(--accent);
}

.gsp-control-icon svg {
  display: block;
  width: 100%;
}

.gsp-control-grid .gsp-number {
  margin-top: 14px;
}

.gsp-control-grid dl {
  margin: 19px 0 0;
  border-top: 1px solid var(--line);
}

.gsp-control-grid dl > div {
  padding: 10px 0 0;
}

.gsp-control-grid dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gsp-control-grid dd {
  margin: 4px 0 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.5;
}

.gsp-table-wrap {
  overflow-x: auto;
}

.gsp-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.gsp-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.gsp-table th,
.gsp-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.55;
}

.gsp-table thead th {
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  background: var(--surface-alt);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gsp-table tbody th {
  width: 22%;
  color: var(--ink);
  font-weight: 500;
}

.gsp-table td {
  color: var(--muted);
}

.gsp-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.gsp-equipment-grid > article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
}

.gsp-equipment-body {
  display: flex;
  min-height: 260px;
  flex: 1;
  flex-direction: column;
  padding: 23px 22px;
}

.gsp-equipment-body h3 {
  margin: 11px 0 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.gsp-equipment-body > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.gsp-equipment-body ul {
  margin-bottom: 20px;
}

.gsp-equipment-body > a {
  margin-top: auto;
}

.gsp-applications-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 48px;
}

.gsp-applications-grid article {
  min-height: 145px;
}

.gsp-comparison-heading {
  margin: 0 0 20px;
}

.gsp-comparison-heading h3 {
  margin: 9px 0 0;
  font-size: 24px;
  font-weight: 500;
}

.gsp-comparison-table th:first-child {
  width: 22%;
}

.gsp-related-process {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
}

.gsp-related-process p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.gsp-faq-resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, .72fr);
  gap: clamp(35px, 7vw, 95px);
  align-items: start;
}

.gsp-faq-list {
  border-top: 1px solid var(--line-strong);
}

.gsp-faq-item {
  border-bottom: 1px solid var(--line);
}

.gsp-faq-item h3 {
  margin: 0;
}

.gsp-faq-toggle {
  display: flex;
  width: 100%;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 15px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.gsp-faq-toggle:hover,
.gsp-faq-toggle:focus-visible {
  color: var(--accent);
}

.gsp-faq-toggle > span {
  flex: 0 0 20px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  text-align: right;
}

.gsp-faq-answer {
  padding: 0 44px 18px 0;
}

.gsp-faq-answer p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.gsp-resource-list {
  border-top: 1px solid var(--line-strong);
}

.gsp-resource-label {
  padding: 13px 0 11px;
}

.gsp-resource-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 8px 12px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.gsp-resource-list a strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.gsp-resource-list a > span {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.gsp-resource-list a b {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--accent);
  font-size: 17px;
  font-weight: 400;
  text-align: right;
}

.gsp-resource-list a:hover strong,
.gsp-resource-list a:focus-visible strong {
  color: var(--accent);
}

.gsp-cta {
  background: #151923;
  color: #fff;
}

.gsp-cta h2,
.gsp-cta h3,
.gsp-cta .eyebrow {
  color: #fff;
}

.gsp-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(35px, 7vw, 100px);
  align-items: start;
}

.gsp-cta h2 {
  max-width: 650px;
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
}

.gsp-cta-grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.gsp-cta-grid > div:first-child > ul,
.gsp-cta-panel ul {
  margin-top: 25px;
}

.gsp-cta li {
  position: relative;
  margin-top: 8px;
  padding-left: 15px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.5;
}

.gsp-cta li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.gsp-cta-grid > div:first-child > svg {
  width: 230px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .68);
}

.gsp-cta-panel {
  border: 1px solid rgba(255, 255, 255, .17);
  padding: 25px;
  background: rgba(255, 255, 255, .06);
}

.gsp-cta-panel h3 {
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 500;
}

.gsp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}

.gsp-cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.gsp-cta-actions .btn-outline:hover,
.gsp-cta-actions .btn-outline:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

@media (max-width: 1100px) {
  .gsp-hero-grid,
  .gsp-intro-grid {
    grid-template-columns: 1fr;
  }

  .gsp-hero-copy {
    max-width: 760px;
  }

  .gsp-hero-visual {
    max-width: 800px;
  }

  .gsp-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gsp-stage-layout {
    grid-template-columns: 1fr;
  }

  .gsp-stage-nav {
    position: static;
    max-height: none;
  }

  .gsp-stage-nav a {
    grid-template-columns: 34px 1fr;
  }

  .gsp-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gsp-faq-resource-grid {
    grid-template-columns: 1fr;
  }

  .gsp-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .gsp-hero {
    padding: 40px 0 55px;
  }

  .gsp-hero h1 {
    font-size: clamp(37px, 12vw, 54px);
  }

  .gsp-placeholder--hero {
    min-height: 285px;
    padding: 25px 20px;
  }

  .gsp-hero-svg {
    bottom: 34px;
    height: 135px;
  }

  .gsp-anchor-bar .inner {
    gap: 18px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .gsp-section {
    padding: 58px 0;
  }

  .gsp-section-heading {
    margin-bottom: 25px;
  }

  .gsp-section-heading h2 {
    font-size: clamp(27px, 8vw, 37px);
  }

  .gsp-principle-grid,
  .gsp-composition-grid,
  .gsp-preparation-grid,
  .gsp-control-grid,
  .gsp-applications-grid,
  .gsp-equipment-grid {
    grid-template-columns: 1fr;
  }

  .gsp-principle-grid article,
  .gsp-composition-grid article,
  .gsp-preparation-grid article,
  .gsp-control-grid article,
  .gsp-applications-grid article {
    min-height: 0;
  }

  .gsp-sand-consistency {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 28px 0;
  }

  .gsp-consistency-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gsp-flow-grid {
    grid-template-columns: 1fr;
  }

  .gsp-flow-grid a {
    min-height: 0;
    padding: 16px 40px 16px 17px;
  }

  .gsp-flow-grid i {
    top: 50%;
    right: 17px;
    bottom: auto;
    transform: translateY(-50%) rotate(90deg);
  }

  .gsp-loop-note,
  .gsp-return-boundary {
    align-items: flex-start;
  }

  .gsp-loop-note svg {
    flex-basis: 88px;
  }

  .gsp-stage-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    border-top: 1px solid var(--line-strong);
    white-space: nowrap;
  }

  .gsp-stage-nav > span {
    flex: 0 0 auto;
    padding: 12px 18px 12px 0;
  }

  .gsp-stage-nav a {
    display: flex;
    flex: 0 0 auto;
    gap: 7px;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 12px 14px;
  }

  .gsp-stage {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 38px 0;
  }

  .gsp-stage:nth-child(even) .gsp-stage-visual {
    order: 0;
  }

  .gsp-stage-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gsp-stage-visual .gsp-placeholder {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .gsp-return-grid {
    grid-template-columns: 1fr;
  }

  .gsp-return-grid li {
    min-height: 0;
    padding-right: 48px;
  }

  .gsp-return-grid i {
    top: auto;
    right: 19px;
    bottom: 10px;
    transform: rotate(90deg);
  }

  .gsp-table {
    min-width: 660px;
  }

  .gsp-faq-answer {
    padding-right: 0;
  }

  .gsp-cta-panel {
    padding: 21px 18px;
  }

  .gsp-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gsp-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .gsp-hero-route {
    gap: 7px;
    font-size: 9px;
  }

  .gsp-loop-note {
    gap: 10px;
    padding-left: 12px;
  }

  .gsp-loop-note svg {
    flex-basis: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gsp-actions .btn span,
  .gsp-text-link span,
  .gsp-stage-links span,
  .gsp-equipment-body > a span,
  .gsp-related-process a span,
  .gsp-cta-actions span {
    transition: none;
  }
}

/* Shell Moulding Line engineering page: keep the four material routes visible
   in the reference layout while the main production visuals remain placeholders. */
.shell-moulding-line-page .shell-line-subtitle {
  margin: -9px 0 18px;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500;
  letter-spacing: -.01em;
}

.shell-moulding-line-page .shell-standalone-section {
  border-top: 1px solid var(--line-strong);
}

.shell-moulding-line-page .shell-flow {
  color: #91a8f4;
}

.shell-moulding-line-page .shell-flow--sand {
  color: #d5ae71;
}

.shell-moulding-line-page .shell-flow--shell {
  color: #aebeff;
}

.shell-moulding-line-page .shell-flow--casting {
  color: #8bd2c4;
}

.shell-flow-key {
  display: grid;
  gap: 8px;
  margin-top: 21px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.shell-flow-key span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shell-flow-key span::before {
  width: 22px;
  height: 0;
  border-top: 2px dashed currentColor;
  content: "";
}

.shell-flow-key__sand { color: #a87838; }
.shell-flow-key__shell { color: #5f7ed9; }
.shell-flow-key__mold { color: #68717f; }
.shell-flow-key__casting { color: #2a8e7d; }

@media (max-width: 767px) {
  .shell-moulding-line-page .shell-line-subtitle {
    margin-top: -6px;
    font-size: 16px;
  }
}

/* Shell Moulding process page */
.shell-moulding-process-page {
  overflow-x: clip;
}

.shm-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}

.shm-breadcrumb a:hover,
.shm-breadcrumb a:focus-visible {
  color: var(--accent);
}

.shm-breadcrumb strong {
  color: var(--ink);
  font-weight: 500;
}

.shm-hero {
  padding: 55px 0 78px;
  background: var(--surface-alt);
}

.shm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

.shm-hero-copy,
.shm-hero-visual,
.shm-stage-copy,
.shm-stage-visual,
.shm-formation-visual,
.shm-assembly-visual {
  min-width: 0;
}

.shm-hero h1 {
  max-width: 620px;
  margin: 10px 0 9px;
  font-size: clamp(40px, 5.3vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.shm-synonym {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}

.shm-hero-lead {
  max-width: 650px;
  margin: 0 0 27px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.shm-actions,
.shm-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.shm-actions {
  margin-bottom: 23px;
}

.shm-actions .btn {
  min-height: 42px;
}

.shm-actions .btn span,
.shm-text-link span,
.shm-arrow-link span,
.shm-related-process a span,
.shm-cta-actions span {
  display: inline-flex;
  transition: transform 180ms ease;
}

.shm-actions .btn:hover span,
.shm-actions .btn:focus-visible span,
.shm-text-link:hover span,
.shm-text-link:focus-visible span,
.shm-arrow-link:hover span,
.shm-arrow-link:focus-visible span,
.shm-related-process a:hover span,
.shm-related-process a:focus-visible span,
.shm-cta-actions a:hover span,
.shm-cta-actions a:focus-visible span {
  transform: translateX(3px);
}

.shm-text-link,
.shm-arrow-link,
.shm-related-process a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.shm-text-link:hover,
.shm-text-link:focus-visible,
.shm-arrow-link:hover,
.shm-arrow-link:focus-visible,
.shm-related-process a:hover,
.shm-related-process a:focus-visible {
  color: var(--accent-dark);
}

.shm-hero-visual {
  position: relative;
}

.shm-image-placeholder {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  padding: 28px;
  background: #f7f8fa;
  color: var(--muted);
  text-align: left;
}

.shm-image-placeholder--hero {
  min-height: 390px;
  padding: 42px;
  background: #eef1f6;
}

.shm-image-placeholder--wide {
  min-height: 255px;
}

.shm-image-placeholder--equipment {
  min-height: 205px;
  padding: 22px;
}

.shm-image-placeholder--application {
  min-height: 150px;
  margin-bottom: 22px;
  padding: 20px;
}

.shm-image-placeholder > span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.shm-image-placeholder p {
  max-width: 760px;
  margin: 0 0 7px;
  font-size: 13px;
  line-height: 1.55;
}

.shm-image-placeholder p:last-child {
  margin-bottom: 0;
}

.shm-hero-svg {
  position: absolute;
  inset: auto 0 31px;
  width: 100%;
  height: 180px;
  color: rgba(62, 106, 225, .48);
  pointer-events: none;
}

.shm-hero-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.shm-hero-route i {
  color: var(--muted);
  font-style: normal;
}

.shm-anchor-bar {
  position: sticky;
  top: var(--header-height, 76px);
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
}

.shm-anchor-bar .inner {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  padding-top: 13px;
  padding-bottom: 13px;
  white-space: nowrap;
}

.shm-anchor-bar a {
  color: var(--muted);
  font-size: 12px;
}

.shm-anchor-bar a:hover,
.shm-anchor-bar a:focus-visible {
  color: var(--accent);
}

.shm-section,
.shm-stage,
.shm-image-placeholder[id] {
  scroll-margin-top: calc(var(--header-height, 76px) + 58px);
}

.shm-section {
  padding: 86px 0;
}

.shm-section--soft {
  background: var(--surface-alt);
}

.shm-section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.shm-section-heading h2 {
  max-width: 780px;
  margin: 9px 0 13px;
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.shm-section-heading > p:not(.eyebrow) {
  max-width: 730px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.shm-intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(35px, 8vw, 120px);
  align-items: start;
}

.shm-intro-grid .shm-section-heading {
  margin-bottom: 0;
}

.shm-intro-copy {
  max-width: 760px;
  margin: 0 0 27px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.shm-principle-grid,
.shm-formation-grid,
.shm-material-grid,
.shm-control-grid,
.shm-applications-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.shm-principle-grid article,
.shm-formation-grid article,
.shm-material-grid article,
.shm-control-grid article,
.shm-applications-grid article {
  min-width: 0;
  padding: 22px 20px;
  background: #fff;
}

.shm-index,
.shm-number,
.shm-flow-number,
.shm-resource-label {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.shm-principle-grid h3,
.shm-formation-grid h3,
.shm-material-grid h3,
.shm-control-grid h3,
.shm-applications-grid h3 {
  margin: 13px 0 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.shm-principle-grid p,
.shm-formation-grid p,
.shm-material-grid p,
.shm-control-grid article > p,
.shm-applications-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.shm-overview-visual {
  margin-top: 45px;
}

.shm-mold-svg,
.shm-formation-visual > svg,
.shm-assembly-visual > svg {
  display: block;
  width: 100%;
  height: auto;
  color: var(--accent);
}

.shm-mold-svg {
  margin-top: 18px;
}

.shm-mold-svg text {
  fill: currentColor;
  font-size: 11px;
  letter-spacing: .06em;
}

.shm-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-strong);
}

.shm-flow-grid li {
  min-width: 0;
  background: #fff;
}

.shm-flow-grid a {
  position: relative;
  display: flex;
  min-height: 148px;
  flex-direction: column;
  padding: 18px 32px 18px 18px;
  color: inherit;
}

.shm-flow-grid a:hover,
.shm-flow-grid a:focus-visible {
  background: #f5f7fc;
}

.shm-flow-grid strong {
  margin: 15px 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.shm-flow-grid small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.shm-flow-grid svg {
  position: absolute;
  right: 12px;
  bottom: 15px;
  width: 16px;
  color: var(--accent);
}

.shm-flow-note {
  display: flex;
  max-width: 780px;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  border-left: 2px solid var(--accent);
  padding: 5px 0 5px 18px;
}

.shm-flow-note svg {
  flex: 0 0 130px;
  color: var(--accent);
}

.shm-flow-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.shm-flow-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.shm-formation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .92fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.shm-formation-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shm-formation-visual > svg,
.shm-assembly-visual > svg {
  margin-top: 18px;
}

.shm-stage-layout {
  display: grid;
  grid-template-columns: minmax(205px, .32fr) minmax(0, 1.68fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.shm-stage-nav {
  position: sticky;
  top: calc(var(--header-height, 76px) + 60px);
  display: flex;
  max-height: calc(100vh - var(--header-height, 76px) - 90px);
  flex-direction: column;
  overflow: auto;
  border-top: 1px solid var(--line-strong);
}

.shm-stage-nav > span {
  padding: 13px 0 11px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shm-stage-nav a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 10px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.shm-stage-nav a:hover,
.shm-stage-nav a:focus-visible,
.shm-stage-nav a.is-active {
  color: var(--accent);
}

.shm-stage-nav i {
  color: inherit;
  font-size: 11px;
  font-style: normal;
}

.shm-stage-nav small {
  display: block;
  grid-column: 2;
  margin-top: 3px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.shm-stage-list {
  border-top: 1px solid var(--line-strong);
}

.shm-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, .92fr);
  gap: clamp(30px, 5vw, 76px);
  border-bottom: 1px solid var(--line-strong);
  padding: 48px 0;
}

.shm-stage:nth-child(even) .shm-stage-visual {
  order: -1;
}

.shm-stage h3 {
  margin: 12px 0;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}

.shm-stage-summary {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.shm-stage-block {
  margin-top: 17px;
}

.shm-stage-block > strong,
.shm-stage-columns strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.shm-stage-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.shm-stage-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 25px;
}

.shm-stage-columns ul,
.shm-equipment-body ul,
.shm-cta ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shm-stage-columns li,
.shm-equipment-body li,
.shm-cta li {
  position: relative;
  margin-top: 7px;
  padding-left: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.shm-stage-columns li::before,
.shm-equipment-body li::before,
.shm-cta li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.shm-arrow-link {
  margin-top: 27px;
}

.shm-stage-visual {
  position: relative;
  align-self: start;
}

.shm-stage-visual .shm-image-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.shm-stage-visual > svg {
  position: absolute;
  right: 22px;
  bottom: 21px;
  width: 52px;
  color: rgba(62, 106, 225, .7);
}

.shm-material-grid {
  margin-bottom: 35px;
}

.shm-assembly-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 35px;
  background: var(--line-strong);
}

.shm-assembly-grid article {
  min-width: 0;
  padding: 24px 22px;
  background: #fff;
}

.shm-assembly-grid h3 {
  margin: 13px 0 8px;
  font-size: 21px;
  font-weight: 500;
}

.shm-assembly-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.shm-assembly-visual {
  max-width: 920px;
}

.shm-control-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shm-control-icon {
  display: block;
  width: 38px;
  color: var(--accent);
}

.shm-control-icon svg {
  display: block;
  width: 100%;
}

.shm-control-grid .shm-number {
  margin-top: 14px;
}

.shm-control-grid dl {
  margin: 19px 0 0;
  border-top: 1px solid var(--line);
}

.shm-control-grid dl > div {
  padding: 10px 0 0;
}

.shm-control-grid dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.shm-control-grid dd {
  margin: 4px 0 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.5;
}

.shm-table-wrap {
  overflow-x: auto;
}

.shm-table-wrap table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.shm-table-wrap caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.shm-table-wrap th,
.shm-table-wrap td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.55;
}

.shm-table-wrap thead th {
  border-top: 1px solid var(--line-strong);
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.shm-table-wrap tbody th {
  width: 22%;
  color: var(--ink);
  font-weight: 500;
}

.shm-table-wrap td {
  color: var(--muted);
}

.shm-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
}

.shm-equipment-grid > article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
  scroll-margin-top: calc(var(--header-height, 76px) + 58px);
}

.shm-equipment-body {
  display: flex;
  min-height: 260px;
  flex: 1;
  flex-direction: column;
  padding: 23px 22px;
}

.shm-equipment-body h3 {
  margin: 11px 0 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.shm-equipment-body > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.shm-equipment-body ul {
  margin-bottom: 20px;
}

.shm-equipment-body > a {
  margin-top: auto;
}

.shm-applications-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 48px;
}

.shm-applications-grid article {
  min-height: 315px;
}

.shm-comparison-heading {
  margin: 0 0 20px;
}

.shm-comparison-heading h3 {
  margin: 9px 0 0;
  font-size: 24px;
  font-weight: 500;
}

.shm-comparison-table th:first-child {
  width: 22%;
}

.shm-related-process {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
}

.shm-related-process p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.shm-faq-resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, .72fr);
  gap: clamp(35px, 7vw, 95px);
  align-items: start;
}

.shm-faq-list {
  border-top: 1px solid var(--line-strong);
}

.shm-faq-list article {
  border-bottom: 1px solid var(--line);
}

.shm-faq-list h3 {
  margin: 0;
}

.shm-faq-toggle {
  display: flex;
  width: 100%;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 15px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.shm-faq-toggle:hover,
.shm-faq-toggle:focus-visible {
  color: var(--accent);
}

.shm-faq-toggle > span {
  flex: 0 0 20px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  text-align: right;
}

.shm-faq-answer {
  padding: 0 44px 18px 0;
}

.shm-faq-answer p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.shm-resource-aside {
  border-top: 1px solid var(--line-strong);
}

.shm-resource-label {
  padding: 13px 0 11px;
}

.shm-resource-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shm-resource-aside li {
  border-top: 1px solid var(--line);
}

.shm-resource-aside a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 8px 12px;
  align-items: start;
  padding: 14px 0;
}

.shm-resource-aside a strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.shm-resource-aside a > span {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.shm-resource-aside a b {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--accent);
  font-size: 17px;
  font-weight: 400;
  text-align: right;
}

.shm-resource-aside a:hover strong,
.shm-resource-aside a:focus-visible strong {
  color: var(--accent);
}

.shm-cta {
  background: #151923;
  color: #fff;
}

.shm-cta h2,
.shm-cta h3,
.shm-cta .eyebrow {
  color: #fff;
}

.shm-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(35px, 7vw, 100px);
  align-items: start;
}

.shm-cta h2 {
  max-width: 650px;
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
}

.shm-cta-grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.shm-cta-grid > div:first-child > ul,
.shm-cta-panel ul {
  margin-top: 25px;
}

.shm-cta li {
  color: rgba(255, 255, 255, .76);
}

.shm-cta-panel {
  border: 1px solid rgba(255, 255, 255, .17);
  padding: 25px;
  background: rgba(255, 255, 255, .06);
}

.shm-cta-panel h3 {
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 500;
}

.shm-cta-actions {
  margin-top: 25px;
}

.shm-cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  background: transparent;
}

.shm-cta-actions .btn-outline:hover,
.shm-cta-actions .btn-outline:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

@media (max-width: 1199px) {
  .shm-hero-grid,
  .shm-intro-grid,
  .shm-formation-layout {
    grid-template-columns: 1fr;
  }

  .shm-hero-copy {
    max-width: 760px;
  }

  .shm-hero-visual {
    max-width: 800px;
  }

  .shm-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shm-stage-layout {
    grid-template-columns: 1fr;
  }

  .shm-stage-nav {
    position: static;
    display: grid;
    max-height: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 20px;
  }

  .shm-stage-nav > span {
    grid-column: 1 / -1;
  }

  .shm-stage-nav a {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .shm-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shm-faq-resource-grid,
  .shm-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .shm-hero {
    padding: 40px 0 55px;
  }

  .shm-hero h1 {
    font-size: clamp(37px, 12vw, 54px);
  }

  .shm-image-placeholder--hero {
    min-height: 285px;
    padding: 25px 20px;
  }

  .shm-hero-svg {
    bottom: 34px;
    height: 135px;
  }

  .shm-anchor-bar .inner {
    gap: 18px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .shm-section {
    padding: 58px 0;
  }

  .shm-section-heading {
    margin-bottom: 25px;
  }

  .shm-section-heading h2 {
    font-size: clamp(27px, 8vw, 37px);
  }

  .shm-principle-grid,
  .shm-formation-grid,
  .shm-material-grid,
  .shm-control-grid,
  .shm-applications-grid,
  .shm-equipment-grid,
  .shm-assembly-grid {
    grid-template-columns: 1fr;
  }

  .shm-principle-grid article,
  .shm-formation-grid article,
  .shm-material-grid article,
  .shm-control-grid article,
  .shm-applications-grid article {
    min-height: 0;
  }

  .shm-flow-grid {
    grid-template-columns: 1fr;
  }

  .shm-flow-grid a {
    min-height: 0;
    padding: 16px 40px 16px 17px;
  }

  .shm-flow-grid svg {
    top: 50%;
    right: 17px;
    bottom: auto;
    transform: translateY(-50%) rotate(90deg);
  }

  .shm-flow-note {
    align-items: flex-start;
  }

  .shm-flow-note svg {
    flex-basis: 88px;
  }

  .shm-stage-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    border-top: 1px solid var(--line-strong);
    white-space: nowrap;
  }

  .shm-stage-nav > span {
    flex: 0 0 auto;
    padding: 12px 18px 12px 0;
  }

  .shm-stage-nav a {
    display: flex;
    flex: 0 0 auto;
    gap: 7px;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 12px 14px;
  }

  .shm-stage-nav small {
    display: inline;
    margin: 0 0 0 2px;
  }

  .shm-stage {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 38px 0;
  }

  .shm-stage:nth-child(even) .shm-stage-visual {
    order: 0;
  }

  .shm-stage-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shm-stage-visual .shm-image-placeholder {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .shm-applications-grid article {
    min-height: 0;
  }

  .shm-table-wrap table {
    min-width: 660px;
  }

  .shm-faq-answer {
    padding-right: 0;
  }

  .shm-cta-panel {
    padding: 21px 18px;
  }

  .shm-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .shm-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .shm-hero-route {
    gap: 7px;
    font-size: 9px;
  }

  .shm-flow-note {
    gap: 10px;
    padding-left: 12px;
  }

  .shm-flow-note svg {
    flex-basis: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shm-actions .btn span,
  .shm-text-link span,
  .shm-arrow-link span,
  .shm-related-process a span,
  .shm-cta-actions span {
    transition: none;
  }
}
