:root {
  --accent: #3e6ae1;
  --accent-dark: #3157bf;
  --ink: #171a20;
  --body: #393c41;
  --muted: #5c5e62;
  --placeholder: #8e8e8e;
  --surface: #ffffff;
  --surface-alt: #f4f4f4;
  --line: #eeeeee;
  --line-strong: #d0d1d2;
  --dark-surface: #171a20;
  --max-width: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-height: 80px;
  --control-radius: 4px;
  --card-radius: 12px;
  --motion: 0.33s cubic-bezier(0.5, 0, 0, 0.75);
  --font-display: Arial, "Helvetica Neue", sans-serif;
  --font-text: Arial, "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--surface);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--body);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-text);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-size: inherit;
}

button,
input[type="submit"] {
  cursor: pointer;
}

button:disabled,
input[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.6;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
}

h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.25;
}

h4 {
  font-size: 17px;
}

p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

p,
li,
dd,
dt,
td,
th,
label {
  font-size: inherit;
}

p {
  margin-bottom: 1.25rem;
}

small {
  font-size: 12px;
}

.inner {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow,
.section-kicker,
.section-label,
.product-index,
.solution-index,
.resource-meta,
.article-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.eyebrow,
.section-kicker,
.product-index,
.solution-index {
  margin-bottom: 16px;
}

.lead,
.solutions-lead,
.section-intro {
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
}

.text-link,
.under,
.feature-text-link,
.solution-link,
.resource-button,
.outline-link {
  color: var(--body);
  transition: color var(--motion), border-color var(--motion), background-color var(--motion);
}

.text-link:hover,
.under:hover,
.feature-text-link:hover,
.solution-link:hover,
.resource-button:hover,
.outline-link:hover {
  color: var(--accent);
}

.btn,
button.btn,
input[type="submit"] {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  padding: 10px 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition: background-color var(--motion), border-color var(--motion), color var(--motion);
}

.btn:hover,
button.btn:hover,
input[type="submit"]:hover {
  transform: none;
}

.btn-blue {
  background: var(--accent);
  color: #fff;
}

.btn-blue:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-outline,
.outline-link {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--body);
}

.btn-outline:hover,
.outline-link:hover {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--accent);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--body);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  background: var(--surface-alt);
  color: var(--ink);
}

/* Shared header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: var(--header-height);
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  padding: 0 max(var(--gutter), calc((100vw - 1640px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background-color var(--motion), border-color var(--motion), color var(--motion);
}

.header--overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  background: transparent;
  color: var(--ink);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header--overlay.is-scrolled,
.header--overlay.is-hovered {
  position: fixed;
  border-bottom-color: var(--line);
  background: #fff;
  color: var(--ink);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header--overlay:not(.is-scrolled):not(.is-hovered) {
  color: #fff;
}

.header--overlay:not(.is-scrolled):not(.is-hovered) .nav-link,
.header--overlay:not(.is-scrolled):not(.is-hovered) .nav-toggle,
.header--overlay:not(.is-scrolled):not(.is-hovered) .brand-lockup,
.header--overlay:not(.is-scrolled):not(.is-hovered) .nav-link:hover,
.header--overlay:not(.is-scrolled):not(.is-hovered) .nav-link:focus-visible,
.header--overlay:not(.is-scrolled):not(.is-hovered) .nav-item.is-active > .nav-link-row .nav-link {
  color: #fff;
}

.header--overlay:not(.is-scrolled):not(.is-hovered) .nav-link:hover,
.header--overlay:not(.is-scrolled):not(.is-hovered) .nav-link:focus-visible {
  opacity: 0.82;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-self: start;
}

.brand-lockup {
  min-height: var(--header-height);
  gap: 10px;
  color: var(--ink);
  transition: color 180ms ease;
}

.logo-mark {
  display: inline-flex;
  width: 56px;
  height: var(--header-height);
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
}

.logo-mark__crop {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-lockup:hover,
.brand-lockup:focus-visible {
  color: var(--accent);
}

.primary-nav {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  justify-self: center;
}

.header > .btn {
  justify-self: end;
}

.header--overlay:not(.is-scrolled):not(.is-hovered) > .btn.btn-blue {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.header--overlay:not(.is-scrolled):not(.is-hovered) > .btn.btn-blue:hover,
.header--overlay:not(.is-scrolled):not(.is-hovered) > .btn.btn-blue:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-list,
.nav-dropdown-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav-item,
.nav-link-row {
  display: flex;
  align-items: stretch;
}

.nav-item {
  position: relative;
}

.nav-link-row {
  flex-wrap: nowrap;
}

.nav-link,
.nav-dropdown-heading,
.nav-dropdown-group li a {
  color: inherit;
}

.nav-link {
  display: inline-flex;
  min-height: var(--header-height);
  align-items: center;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-item > .nav-link-row > .nav-link[href="/industries"],
.nav-item > .nav-link-row > .nav-link[href="/industries.html"],
.nav-item > .nav-link-row > .nav-link[href="/resources"],
.nav-item > .nav-link-row > .nav-link[href="/about.html"] {
  font-weight: 400;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-active > .nav-link-row .nav-link {
  color: var(--accent);
}

.header--overlay .nav-link:hover,
.header--overlay .nav-link:focus-visible {
  color: var(--accent);
  opacity: 0.8;
}

.header--overlay.is-scrolled .nav-link:hover,
.header--overlay.is-scrolled .nav-link:focus-visible {
  color: var(--accent);
  opacity: 1;
}

.nav-toggle {
  display: inline-flex;
  width: 24px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
}

.nav-toggle-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.nav-toggle-icon svg,
.nav-heading-arrow svg,
.nav-footer-arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

.nav-item.is-open .nav-toggle-icon,
.nav-item:hover:not([data-hover-disabled]) .nav-toggle-icon {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(900px, calc(100vw - 40px));
  max-width: calc(100vw - 40px);
  gap: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px 30px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(23, 26, 32, 0.08);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown--castings,
.nav-dropdown--equipment,
.nav-dropdown--products {
  display: block;
  width: min(1200px, calc(100vw - 48px));
  padding: 0;
  background: #fff;
}

.products-menu__content {
  display: block;
}

.products-menu__section {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px 30px;
}

.products-menu__section-row {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.products-menu__section-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.products-menu__section-heading:hover,
.products-menu__section-heading:focus-visible,
.products-menu__category-heading:hover,
.products-menu__category-heading:focus-visible,
.products-menu__section-body li a:hover,
.products-menu__section-body li a:focus-visible {
  color: var(--accent);
}

.products-menu__section-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
}

.products-menu__section-body {
  margin-top: 16px;
}

.products-menu__casting-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.products-menu__equipment-body {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 28px;
}

.products-menu__category-heading {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.products-menu__category-heading .nav-heading-arrow {
  color: var(--accent);
}

.products-menu__category-toggle {
  display: none;
}

.products-menu__casting-body {
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
}

.products-menu__casting-body > .products-menu__category:first-child .products-menu__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.products-menu__section .products-menu__items {
  gap: 0;
  margin-top: 6px;
}

.products-menu__section .products-menu__section-body li a {
  display: block;
  padding-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
  transition: color 160ms ease, transform 160ms ease;
}

.products-menu__section-body li a:hover,
.products-menu__section-body li a:focus-visible {
  transform: translateX(2px);
}

.products-menu__footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.products-menu__footer .nav-footer-arrow,
.products-menu__cta-action .nav-footer-arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  transition: transform 180ms ease;
}

.products-menu__footer:hover .nav-footer-arrow,
.products-menu__footer:focus-visible .nav-footer-arrow,
.products-menu__cta:hover .nav-footer-arrow,
.products-menu__cta:focus-visible .nav-footer-arrow {
  transform: translateX(3px);
}

.products-menu__cta {
  grid-column: 1 / -1;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 14px 30px;
  background: #f7f9fc;
  color: var(--ink);
  transition: background-color 180ms ease;
}

.products-menu__cta:hover,
.products-menu__cta:focus-visible {
  background: rgba(62, 106, 225, 0.08);
}

.products-menu__cta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.products-menu__cta-copy strong {
  font-size: 15px;
  line-height: 1.35;
}

.products-menu__cta-copy > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.products-menu__cta-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .nav-dropdown--castings {
    width: min(1000px, calc(100vw - 48px));
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .nav-dropdown--castings,
  .nav-dropdown--equipment,
  .nav-dropdown--products {
    width: min(960px, calc(100vw - 48px));
  }

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

  .products-menu__section {
    padding-block: 24px;
  }
}

.nav-dropdown--casting-processes,
.nav-dropdown--lines-and-systems {
  width: min(1060px, calc(100vw - 40px));
}

.nav-dropdown--casting-processes {
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
  gap: 0 28px;
}

.nav-dropdown--casting-processes .nav-dropdown-group--nested:first-child {
  padding-right: 28px;
}

.nav-dropdown--casting-processes .nav-dropdown-group--wide {
  grid-column: auto;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.nav-dropdown--casting-processes .nav-dropdown-group--wide .nav-dropdown-children {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.nav-dropdown--lines-and-systems {
  gap: 0;
}

.nav-dropdown--lines-and-systems .nav-dropdown-group--nested {
  padding: 0 28px;
}

.nav-dropdown--lines-and-systems .nav-dropdown-group--nested:first-child {
  padding-left: 0;
}

.nav-dropdown--lines-and-systems .nav-dropdown-group--nested:nth-child(2),
.nav-dropdown--lines-and-systems .nav-dropdown-group--nested:nth-child(3) {
  border-left: 1px solid var(--line);
}

.nav-dropdown--lines-and-systems .nav-dropdown-group--nested:nth-child(3) {
  padding-right: 0;
}

.nav-dropdown--industries,
.nav-dropdown--resources,
.nav-dropdown--about {
  grid-template-columns: 1fr;
  width: min(280px, calc(100vw - 40px));
  gap: 14px;
  padding: 20px 22px;
}

.nav-item:nth-child(n+3) .nav-dropdown {
  right: auto;
  left: 50%;
  transform: translate(-50%, 8px);
}

.nav-item.is-open > .nav-dropdown,
.nav-item:hover > .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item:nth-child(n+3).is-open > .nav-dropdown,
.nav-item:nth-child(n+3):hover > .nav-dropdown {
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-item:nth-child(n+3) > .nav-dropdown.nav-dropdown--industries,
.nav-item:nth-child(n+3) > .nav-dropdown.nav-dropdown--resources,
.nav-item:nth-child(n+3) > .nav-dropdown.nav-dropdown--about {
  position: absolute;
  top: 100%;
  right: auto;
  left: 0;
  transform: translateY(8px);
}

.nav-item:nth-child(n+3).is-open > .nav-dropdown.nav-dropdown--industries,
.nav-item:nth-child(n+3):hover > .nav-dropdown.nav-dropdown--industries,
.nav-item:nth-child(n+3).is-open > .nav-dropdown.nav-dropdown--resources,
.nav-item:nth-child(n+3):hover > .nav-dropdown.nav-dropdown--resources,
.nav-item:nth-child(n+3).is-open > .nav-dropdown.nav-dropdown--about,
.nav-item:nth-child(n+3):hover > .nav-dropdown.nav-dropdown--about {
  transform: translateY(0);
}

.nav-item[data-hover-disabled] > .nav-dropdown {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 8px) !important;
}

.nav-dropdown-heading {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.nav-dropdown-group-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.nav-group-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
}

.nav-dropdown-group--nested.is-open .nav-group-toggle .nav-toggle-icon {
  transform: rotate(180deg);
}

.nav-dropdown-group--nested > .nav-dropdown-group-row > .nav-dropdown-heading {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-group--featured > .nav-dropdown-group-row > .nav-dropdown-heading {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.nav-dropdown--industries .nav-dropdown-heading,
.nav-dropdown--resources .nav-dropdown-heading,
.nav-dropdown--about .nav-dropdown-heading {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.nav-heading-arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  align-items: center;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-heading:hover .nav-heading-arrow,
.nav-dropdown-heading:focus-visible .nav-heading-arrow,
.products-menu__category-heading:hover .nav-heading-arrow,
.products-menu__category-heading:focus-visible .nav-heading-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-dropdown-heading:hover,
.nav-dropdown-heading:focus-visible,
.nav-dropdown-group li a:hover,
.nav-dropdown-group li a:focus-visible {
  color: var(--accent);
}

.nav-dropdown-group {
  min-width: 0;
}

.nav-dropdown-group p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.nav-dropdown-group li a {
  display: block;
  position: relative;
  padding-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  transition: color 180ms ease;
}

.nav-dropdown-children {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.nav-dropdown-group .nav-dropdown-child {
  margin: 0 -10px;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-dropdown-group .nav-dropdown-child:hover,
.nav-dropdown-group .nav-dropdown-child:focus-visible {
  background: rgba(23, 26, 32, 0.05);
  color: var(--accent);
}

.nav-dropdown-child-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.nav-dropdown-child-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.nav-dropdown-child-arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  color: currentColor;
}

.nav-dropdown-child-arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

.nav-dropdown-child-arrow--hover {
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-child:hover .nav-dropdown-child-arrow--hover,
.nav-dropdown-child:focus-visible .nav-dropdown-child-arrow--hover {
  opacity: 1;
  transform: translateX(0);
}

.nav-dropdown-group li a::after {
  display: none;
}

.process-nav-list-item {
  min-width: 0;
}

.nav-dropdown--casting-processes .process-nav-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  min-width: 0;
  align-items: center;
  gap: 14px;
  margin: 0 -10px;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-dropdown--casting-processes .process-nav-item:hover,
.nav-dropdown--casting-processes .process-nav-item:focus-visible {
  background: rgba(62, 106, 225, 0.06);
  color: var(--accent);
}

.process-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 10px;
  background: rgba(62, 106, 225, 0.06);
  color: var(--accent);
  transition: background-color 180ms ease;
}

.process-icon svg {
  display: block;
  width: 32px;
  height: 32px;
}

.nav-dropdown--casting-processes .process-nav-item:hover .process-icon,
.nav-dropdown--casting-processes .process-nav-item:focus-visible .process-icon {
  background: rgba(62, 106, 225, 0.12);
}

.process-content {
  display: block;
  min-width: 0;
}

.process-title-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.process-title {
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.process-arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  align-items: center;
  color: var(--accent);
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

.process-arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

.nav-dropdown--casting-processes .process-nav-item:hover .process-arrow,
.nav-dropdown--casting-processes .process-nav-item:focus-visible .process-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.process-description {
  display: -webkit-box;
  max-width: 33ch;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nav-dropdown--casting-processes .nav-dropdown-cta {
  grid-column: 1 / -1;
  grid-row: auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.45fr) minmax(210px, 0.25fr);
  align-items: center;
  box-sizing: border-box;
  min-height: 112px;
  margin-top: 22px;
  border: 1px solid rgba(62, 106, 225, 0.2);
  border-radius: var(--card-radius);
  padding: 18px 24px;
  background: rgba(62, 106, 225, 0.04);
  color: var(--ink);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.nav-dropdown--casting-processes .nav-dropdown-cta:hover,
.nav-dropdown--casting-processes .nav-dropdown-cta:focus-visible {
  border-color: rgba(62, 106, 225, 0.38);
  background: rgba(62, 106, 225, 0.08);
}

.nav-dropdown--casting-processes .nav-dropdown-cta__title {
  font-size: 16px;
  line-height: 1.3;
}

.nav-dropdown--lines-and-systems .nav-dropdown-cta {
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr) minmax(230px, 0.8fr);
  align-items: center;
  box-sizing: border-box;
  height: 80px;
  margin-top: 24px;
  border: 1px solid rgba(62, 106, 225, 0.2);
  border-radius: var(--card-radius);
  padding: 10px 26px;
  background: rgba(62, 106, 225, 0.04);
  color: var(--ink);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.nav-dropdown-cta:hover,
.nav-dropdown-cta:focus-visible {
  border-color: rgba(62, 106, 225, 0.38);
  background: rgba(62, 106, 225, 0.08);
}

.nav-dropdown-cta__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.nav-dropdown-cta__eyebrow {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.nav-dropdown-cta__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}

.nav-dropdown-cta__description {
  min-width: 0;
  margin: 0;
  border-left: 1px solid rgba(62, 106, 225, 0.18);
  padding: 4px 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.nav-dropdown-cta__description--mobile {
  display: none;
}

.nav-dropdown-cta__action-slot {
  min-width: 0;
  border-left: 1px solid rgba(62, 106, 225, 0.18);
  padding-left: 28px;
}

.nav-dropdown-cta__action {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 8px 20px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.nav-dropdown-cta__arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  transition: transform 180ms ease;
}

.nav-dropdown-cta__arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

.nav-dropdown-cta:hover .nav-dropdown-cta__arrow,
.nav-dropdown-cta:focus-visible .nav-dropdown-cta__arrow {
  transform: translateX(3px);
}

.nav-dropdown-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.nav-dropdown-footer span {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  transition: transform 180ms ease;
}

.nav-dropdown-footer:hover span,
.nav-dropdown-footer:focus-visible span {
  transform: translateX(3px);
}

.mobile-nav-cta {
  display: none;
}

.menu {
  display: none;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: currentColor;
  font-size: 14px;
}

/* Shared forms */
.contact-form,
.detail-inquiry-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  outline: none;
  transition: border-color var(--motion), background-color var(--motion);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--placeholder);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  background: #fff;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form .field-wide {
  grid-column: 1 / -1;
}

.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.form-consent input {
  width: auto;
  margin: 2px 0 0 !important;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.email-route,
.email-unavailable {
  margin: 0 auto 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.email-route a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.email-recipient {
  display: inline-block;
  overflow-wrap: anywhere;
}

.email-unavailable {
  color: var(--muted);
}

.success {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.success.is-error {
  color: #7d2222;
}

.success.is-success {
  color: #2f6843;
}

/* Shared footer */
.site-footer {
  background: var(--dark-surface);
  color: #fff;
}

.footer-cta,
.footer-grid,
.footer-bottom {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-cta h2,
.footer-cta p,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.footer-cta h2 {
  margin-bottom: 12px;
}

.footer-cta p:not(.eyebrow),
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 38px;
  padding-top: 48px;
  padding-bottom: 52px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  width: 86px;
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
  background: #fff;
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}

.footer-grid a,
.footer-grid p {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--motion);
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-map {
  display: flex;
  width: 100%;
  min-height: 110px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--control-radius);
  padding: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.footer-map b {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 20px;
  padding-bottom: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--motion);
}

@media (max-width: 1024px) {
  :root {
    --gutter: clamp(20px, 4vw, 36px);
  }

  .nav-list {
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
    --gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .lead,
  .solutions-lead,
  .section-intro {
    font-size: 16px;
  }

  .header {
    display: flex;
    min-height: var(--header-height);
    padding-inline: var(--gutter);
  }

  .header--overlay {
    position: fixed;
  }

  .logo-mark {
    width: 48px;
    flex-basis: 48px;
  }

  .logo-mark__crop {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .logo-mark img {
    width: 100%;
    height: 100%;
  }

  .brand-name {
    font-size: 14px;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: auto;
    justify-self: stretch;
    display: none;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
  }

  .primary-nav.open {
    display: block;
  }

  .nav-list {
    display: block;
  }

  .nav-item,
  .nav-link-row {
    display: flex;
    flex-wrap: wrap;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    flex: 1;
    min-height: 52px;
    padding: 14px 0;
  }

  .nav-toggle {
    width: 52px;
    min-width: 44px;
    border-left: 1px solid var(--line);
  }

  .nav-dropdown,
  .nav-item:nth-child(n) .nav-dropdown {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 18px;
    border: 0;
    padding: 16px 20px 20px;
    background: #fff;
    box-shadow: none;
    visibility: hidden;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown--castings,
  .nav-dropdown--equipment,
  .nav-dropdown--products {
    display: none;
    padding: 0;
  }

  .nav-item.is-open > .nav-dropdown--castings,
  .nav-item.is-open > .nav-dropdown--equipment,
  .nav-item.is-open > .nav-dropdown--products {
    display: block;
  }

  .products-menu__content {
    display: block;
  }

  .products-menu__section {
    padding: 0;
  }

  .products-menu__section-row {
    min-height: 52px;
    padding-left: 20px;
  }

  .products-menu__section-heading {
    flex: 1;
    min-height: 44px;
    align-items: center;
  }

  .products-menu__section-heading .nav-heading-arrow {
    display: none;
  }

  .products-menu__section-body {
    display: grid;
    margin: 0;
    padding: 0 20px 14px;
  }

  .products-menu__casting-body {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .products-menu__equipment-body {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .products-menu__category-heading {
    flex: 1;
    min-height: 44px;
    align-items: center;
  }

  .products-menu__category-toggle {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: currentColor;
  }

  .products-menu__items {
    display: none;
  }

  .products-menu__casting-body > .products-menu__category:first-child .products-menu__items {
    display: none;
  }

  .products-menu__category.is-open > .products-menu__items {
    display: grid;
    padding-bottom: 8px;
  }

  .products-menu__casting-body > .products-menu__category:first-child.is-open > .products-menu__items {
    display: grid;
  }

  .products-menu__category.is-open > .nav-dropdown-group-row .nav-toggle-icon {
    transform: rotate(180deg);
  }

  .products-menu__category-heading .nav-heading-arrow,
  .products-menu__section-heading .nav-heading-arrow {
    display: none;
  }

  .products-menu__footer {
    display: inline-flex;
    margin: 0 20px 16px;
    padding-top: 14px;
  }

  .products-menu__cta {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 20px 20px;
  }

  .products-menu__cta-copy strong,
  .products-menu__cta-action {
    font-size: 14px;
  }

  .nav-item:nth-child(n).is-open > .nav-dropdown {
    transform: none;
  }

  .nav-item.is-open > .nav-dropdown {
    visibility: visible;
    display: grid;
  }

  .nav-item.is-open > .nav-dropdown--castings,
  .nav-item.is-open > .nav-dropdown--equipment {
    display: block;
  }

  .nav-item:nth-child(n) > .nav-dropdown.nav-dropdown--industries,
  .nav-item:nth-child(n) > .nav-dropdown.nav-dropdown--resources,
  .nav-item:nth-child(n) > .nav-dropdown.nav-dropdown--about {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: none;
    gap: 18px;
    padding: 16px 20px 20px;
    transform: none;
  }

  .nav-dropdown-group p {
    max-width: 620px;
  }

  .nav-dropdown--casting-processes .nav-dropdown-group--nested,
  .nav-dropdown--lines-and-systems .nav-dropdown-group--nested {
    grid-row: auto;
  }

  .nav-dropdown--casting-processes .nav-dropdown-group--wide {
    grid-column: auto;
    border-left: 0;
    padding-left: 0;
  }

  .nav-dropdown--casting-processes .nav-dropdown-group--nested:first-child {
    padding-right: 0;
  }

  .nav-dropdown--casting-processes .nav-dropdown-group--wide .nav-dropdown-children {
    grid-template-columns: 1fr;
  }

  .nav-dropdown--casting-processes .process-nav-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    margin: 0;
    padding: 7px 8px;
  }

  .process-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .process-icon svg {
    width: 25px;
    height: 25px;
  }

  .process-title {
    font-size: 14px;
  }

  .nav-dropdown--casting-processes .process-description {
    display: none;
  }

  .nav-dropdown--casting-processes .nav-dropdown-cta {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin-top: 0;
    padding: 14px 16px;
  }

  .nav-dropdown--lines-and-systems .nav-dropdown-group--nested {
    padding: 0;
  }

  .nav-dropdown--lines-and-systems .nav-dropdown-group--nested:nth-child(2),
  .nav-dropdown--lines-and-systems .nav-dropdown-group--nested:nth-child(3) {
    border-left: 0;
  }

  .nav-dropdown--lines-and-systems .nav-dropdown-cta {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin-top: 0;
    padding: 14px 16px;
  }

  .nav-dropdown-cta__content {
    width: 100%;
  }

  .nav-dropdown-cta__description--desktop {
    display: none;
  }

  .nav-dropdown-cta__description--mobile {
    display: block;
    border-left: 0;
    padding: 0;
    font-size: 14px;
  }

  .nav-dropdown-cta__action-slot {
    width: 100%;
    margin-top: 14px;
    border-left: 0;
    padding-left: 0;
  }

  .nav-dropdown-cta__action {
    width: auto;
    min-height: 0;
    justify-content: flex-start;
    border: 0;
    padding: 0;
    font-size: 13px;
  }

  .nav-dropdown-group-row {
    align-items: stretch;
  }

  .nav-dropdown-group--nested > .nav-dropdown-group-row > .nav-dropdown-heading {
    flex: 1;
    min-height: 44px;
    align-items: center;
  }

  .nav-group-toggle {
    display: inline-flex;
    width: 52px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--line);
  }

  .nav-dropdown-group--nested > .nav-dropdown-group-row > .nav-dropdown-heading .nav-heading-arrow {
    display: none;
  }

  .nav-dropdown-group--nested > .nav-dropdown-children {
    display: none;
    gap: 2px;
    margin: 4px 0 2px;
    padding-left: 12px;
  }

  .nav-dropdown-group--nested.is-open > .nav-dropdown-children {
    display: grid;
  }

  .nav-dropdown-group .nav-dropdown-child {
    margin: 0;
    padding: 10px 12px;
  }

  .nav-dropdown-child-description,
  .nav-dropdown--casting-processes .nav-dropdown-group > p,
  .nav-dropdown--lines-and-systems .nav-dropdown-group > p {
    display: none;
  }

  .menu {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
  }

  .header > .btn {
    display: none;
  }

  .mobile-nav-cta {
    display: block;
    padding: 18px 20px 22px;
  }

  .mobile-nav-cta .btn {
    width: 100%;
  }

  .footer-cta {
    display: block;
    padding-top: 52px;
    padding-bottom: 38px;
  }

  .footer-cta .btn {
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span:last-child {
    flex-wrap: wrap;
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
