:root {
  --mm-ink: #111820;
  --mm-steel: #24313d;
  --mm-muted: #63707c;
  --mm-cloud: #f4f6f7;
  --mm-white: #ffffff;
  --mm-copper: #b8462b;
  --mm-copper-dark: #91341f;
  --mm-action: #eba140;
  --mm-action-hover: #d98a22;
  --mm-action-text: #111820;
  --mm-gold: #d99a4d;
  --mm-line: #dce1e5;
  --mm-shadow: 0 18px 55px rgba(17, 24, 32, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

body.mm-site {
  color: var(--mm-ink);
  background: var(--mm-white);
  font-family: "Rubik", Arial, sans-serif;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable:focus {
  z-index: 2500;
  top: 8px;
  left: 8px;
  width: auto !important;
  height: auto !important;
  padding: 10px 14px !important;
  clip: auto !important;
  color: var(--mm-white);
  background: var(--mm-ink);
}

.mm-site *,
.mm-site *::before,
.mm-site *::after {
  box-sizing: border-box;
}

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

.mm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--mm-copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mm-eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.mm-site h1,
.mm-site h2,
.mm-site h3 {
  color: var(--mm-ink);
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.05;
}

.mm-site h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.mm-site p {
  line-height: 1.7;
}

.mm-topbar {
  padding: 10px 0;
  color: #dbe1e5;
  background: var(--mm-ink);
  font-size: 0.82rem;
}

.mm-topbar .mm-container,
.mm-header-inner,
.mm-topbar-links,
.mm-nav,
.mm-actions,
.mm-hero-actions,
.mm-trust-grid,
.mm-section-heading,
.mm-footer-grid,
.mm-form-actions {
  display: flex;
  align-items: center;
}

.mm-topbar .mm-container {
  justify-content: space-between;
  gap: 24px;
}

.mm-topbar a {
  color: var(--mm-white);
  text-decoration: none;
}

.mm-topbar-links {
  gap: 24px;
}

.mm-header {
  position: sticky;
  z-index: 950;
  top: 0;
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.mm-header-inner {
  min-height: 84px;
  justify-content: space-between;
  gap: 28px;
}

.mm-brand img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.mm-nav {
  gap: 27px;
}

.mm-nav a,
.mm-nav-trigger {
  color: var(--mm-ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.mm-nav a:hover,
.mm-nav a:focus-visible,
.mm-nav-trigger:hover,
.mm-nav-trigger:focus-visible,
.mm-nav > a.is-current,
.mm-nav-item.is-current > .mm-nav-trigger {
  color: var(--mm-copper);
}

.mm-nav > a.is-current::after,
.mm-nav-item.is-current > .mm-nav-trigger::after {
  display: block;
  height: 2px;
  margin-top: 5px;
  background: var(--mm-copper);
  content: "";
}

.mm-nav-item {
  position: relative;
}

.mm-nav-trigger {
  padding: 14px 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.mm-nav-trigger span {
  display: inline-block;
  margin-left: 3px;
  transition: transform 160ms ease;
}

.mm-nav-item.is-open .mm-nav-trigger span {
  transform: rotate(180deg);
}

.mm-submenu {
  position: absolute;
  z-index: 1000;
  top: calc(100% - 2px);
  left: -20px;
  width: max-content;
  min-width: 235px;
  padding: 10px;
  border: 1px solid var(--mm-line);
  border-top: 3px solid var(--mm-copper);
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  background: var(--mm-white);
  box-shadow: var(--mm-shadow);
  transform: translateY(8px);
  transition: 160ms ease;
}

.mm-submenu a {
  display: block;
  padding: 11px 13px;
  border-radius: 2px;
  white-space: nowrap;
}

.mm-submenu a:hover,
.mm-submenu a:focus-visible {
  background: var(--mm-cloud);
}

.mm-nav-item:hover .mm-submenu,
.mm-nav-item:focus-within .mm-submenu,
.mm-nav-item.is-open .mm-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mm-actions,
.mm-hero-actions {
  gap: 12px;
}

.mm-button,
.mm-site .btn.mm-button,
.mm-site .btn-primary,
body:not(.mm-site) .btn.btn-primary.js-open-quote {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 2px solid var(--mm-action);
  border-radius: 3px;
  color: var(--mm-action-text) !important;
  background: var(--mm-action);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: 160ms ease;
}

.mm-button:hover,
.mm-button:focus-visible,
.mm-site .btn.mm-button:hover,
.mm-site .btn-primary:hover,
body:not(.mm-site) .btn.btn-primary.js-open-quote:hover,
body:not(.mm-site) .btn.btn-primary.js-open-quote:focus-visible {
  border-color: var(--mm-action-hover);
  color: var(--mm-action-text) !important;
  background: var(--mm-action-hover);
  transform: translateY(-1px);
}

.mm-button-secondary {
  border-color: rgba(255, 255, 255, 0.64);
  color: var(--mm-white) !important;
  background: transparent;
}

.mm-button-secondary:hover,
.mm-button-secondary:focus-visible {
  border-color: var(--mm-white);
  background: rgba(255, 255, 255, 0.1);
}

.mm-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--mm-line);
  border-radius: 3px;
  background: var(--mm-white);
  font-size: 1.4rem;
}

.mm-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  color: var(--mm-white);
  background: linear-gradient(90deg, rgba(10, 16, 21, 0.94) 0%, rgba(10, 16, 21, 0.82) 44%, rgba(10, 16, 21, 0.28) 100%), url("../images/hero_2.webp") center/cover no-repeat;
}

.mm-hero-content {
  max-width: 760px;
  padding: 88px 0 104px;
}

.mm-hero .mm-eyebrow {
  color: #f0b56c;
}

.mm-hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--mm-white);
  font-size: clamp(3.2rem, 7.4vw, 6.4rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mm-hero-lead {
  max-width: 690px;
  margin: 0 0 34px;
  color: #eef2f4;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.mm-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: #e6ecef;
  font-size: 0.88rem;
  list-style: none;
}

.mm-hero-proof li::before {
  margin-right: 8px;
  color: #f0b56c;
  content: "✓";
}

.mm-trust {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.mm-trust-grid {
  justify-content: space-around;
  padding: 28px 34px;
  border-radius: 4px;
  background: var(--mm-white);
  box-shadow: var(--mm-shadow);
}

.mm-stat {
  min-width: 150px;
  padding: 4px 24px;
  border-right: 1px solid var(--mm-line);
  text-align: center;
}

.mm-stat:last-child {
  border-right: 0;
}

.mm-stat strong {
  display: block;
  color: var(--mm-copper);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 2rem;
}

.mm-stat span {
  color: var(--mm-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mm-section {
  padding: 105px 0;
}

.mm-client-proof {
  padding: 82px 0 88px;
  border-bottom: 1px solid var(--mm-line);
  background: var(--mm-cloud);
}

.mm-client-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.mm-client-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.mm-client-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--mm-muted);
}

.mm-client-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.mm-client-logo {
  display: grid;
  min-width: 0;
  min-height: 142px;
  grid-template-rows: 84px auto;
  align-items: center;
  margin: 0;
  padding: 18px 12px 14px;
  overflow: hidden;
  border: 1px solid var(--mm-line);
  border-radius: 4px;
  background: var(--mm-white);
}

.mm-client-logo-frame {
  display: grid;
  width: 100%;
  height: 84px;
  place-items: center;
  overflow: hidden;
}

.mm-client-logo img {
  display: block;
  width: auto;
  max-width: 122px;
  max-height: 62px;
  object-fit: contain;
}

.mm-client-logo figcaption {
  align-self: end;
  color: var(--mm-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
}

.mm-client-link {
  margin: 28px 0 0;
  text-align: center;
}

.mm-section-muted {
  background: var(--mm-cloud);
}

.mm-section-dark {
  color: #dce3e7;
  background: var(--mm-steel);
}

.mm-section-dark h2,
.mm-section-dark h3 {
  color: var(--mm-white);
}

.mm-section-heading {
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.mm-section-heading > div:first-child {
  max-width: 680px;
}

.mm-section-heading > p {
  max-width: 430px;
  color: var(--mm-muted);
}

.mm-grid-4,
.mm-grid-3,
.mm-grid-2,
.mm-process-grid,
.mm-proof-grid,
.mm-form-grid {
  display: grid;
  gap: 24px;
}

.mm-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mm-grid-3,
.mm-process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mm-grid-2,
.mm-proof-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mm-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--mm-line);
  border-radius: 4px;
  background: var(--mm-white);
  box-shadow: 0 8px 26px rgba(17, 24, 32, 0.06);
}

.mm-card-image {
  height: 205px;
  overflow: hidden;
  background: var(--mm-steel);
}

.mm-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.mm-card:hover .mm-card-image img {
  transform: scale(1.035);
}

.mm-card-body {
  padding: 26px;
}

.mm-card-kicker {
  color: var(--mm-copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mm-card h3 {
  margin: 8px 0 12px;
  font-size: 1.55rem;
}

.mm-card p {
  margin: 0 0 20px;
  color: var(--mm-muted);
  font-size: 0.93rem;
}

.mm-text-link {
  color: var(--mm-copper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.mm-text-link::after {
  margin-left: 8px;
  content: "→";
}

.mm-capability {
  padding: 32px;
  border-left: 3px solid var(--mm-copper);
  background: rgba(255, 255, 255, 0.06);
}

.mm-capability h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.mm-capability p {
  margin: 0;
  color: #bdc8ce;
}

.mm-process-step {
  padding: 28px 28px 30px;
  border-top: 1px solid var(--mm-line);
}

.mm-process-step span {
  display: block;
  margin-bottom: 18px;
  color: var(--mm-copper);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.45rem;
}

.mm-process-step h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.mm-process-step p {
  margin: 0;
  color: var(--mm-muted);
}

.mm-proof-panel {
  min-height: 390px;
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--mm-white);
  background: linear-gradient(0deg, rgba(10, 16, 21, 0.92), rgba(10, 16, 21, 0.08)), url("../images/slagpots.webp") center/cover;
}

.mm-proof-panel h2 {
  color: var(--mm-white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.mm-proof-list {
  padding: 44px;
  background: var(--mm-cloud);
}

.mm-proof-list ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mm-proof-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--mm-line);
}

.mm-proof-list li::before {
  margin-right: 10px;
  color: var(--mm-copper);
  content: "✓";
}

.mm-quote-section {
  position: relative;
  overflow: hidden;
  color: var(--mm-white);
  background: var(--mm-ink);
}

.mm-quote-section::after {
  position: absolute;
  top: -150px;
  right: -140px;
  width: 470px;
  height: 470px;
  border: 80px solid rgba(184, 70, 43, 0.17);
  border-radius: 50%;
  content: "";
}

.mm-quote-intro {
  position: relative;
  z-index: 1;
  max-width: 530px;
}

.mm-quote-section h2 {
  color: var(--mm-white);
}

.mm-quote-section p {
  color: #bdc8ce;
}

.mm-quote-card {
  position: relative;
  z-index: 2;
  padding: 34px;
  border-radius: 4px;
  color: var(--mm-ink);
  background: var(--mm-white);
  box-shadow: var(--mm-shadow);
}

.mm-form-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mm-field {
  margin-bottom: 17px;
}

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

.mm-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--mm-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.mm-field input,
.mm-field select,
.mm-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd3d8;
  border-radius: 3px;
  color: var(--mm-ink);
  background: var(--mm-white);
  font: inherit;
}

.mm-field small {
  display: block;
  margin-top: 7px;
  color: var(--mm-muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.mm-consent label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 400;
  line-height: 1.5;
}

.mm-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.mm-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mm-field textarea {
  min-height: 112px;
  resize: vertical;
}

.mm-field input:focus,
.mm-field select:focus,
.mm-field textarea:focus {
  border-color: var(--mm-copper);
  outline: 3px solid rgba(184, 70, 43, 0.13);
}

.mm-form-note,
.mm-form-status {
  margin: 12px 0 0;
  color: var(--mm-muted);
  font-size: 0.76rem;
}

.mm-form-status.is-success {
  color: #197248;
}

.mm-form-status.is-error {
  color: #a12d21;
}

.mm-form-actions button:disabled,
.mm-lead-form button:disabled,
.mm-quote-card button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.mm-form-status {
  min-height: 20px;
  color: var(--mm-copper-dark);
  font-weight: 500;
}

.mm-footer {
  padding: 72px 0 28px;
  color: #bdc8ce;
  background: #0c1217;
}

.mm-footer-grid {
  align-items: flex-start;
  justify-content: space-between;
  gap: 52px;
}

.mm-footer-brand {
  max-width: 430px;
}

.mm-footer h3 {
  margin: 0 0 16px;
  color: var(--mm-white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mm-footer a {
  display: block;
  margin: 8px 0;
  color: #dce3e7;
  text-decoration: none;
}

.mm-footer a:hover {
  color: var(--mm-gold);
}

.mm-footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #89959d;
  font-size: 0.78rem;
}

.mm-floating-quote {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 8px;
  border: 2px solid var(--mm-white);
  border-radius: 999px;
  color: var(--mm-action-text) !important;
  background: var(--mm-action);
  box-shadow: 0 12px 32px rgba(17, 24, 32, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 160ms ease;
}

.mm-floating-quote:hover,
.mm-floating-quote:focus-visible {
  color: var(--mm-action-text) !important;
  background: var(--mm-action-hover);
  transform: translateY(-2px);
}

.mm-floating-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--mm-action-text);
  background: var(--mm-white);
  font-size: 1.15rem;
}

.mm-quote-modal[hidden] {
  display: none;
}

.mm-quote-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 10, 13, 0.78);
}

.mm-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 36px;
  border-radius: 4px;
  background: var(--mm-white);
  box-shadow: var(--mm-shadow);
}

.mm-modal-panel h2 {
  margin: 0 50px 8px 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.mm-modal-panel > p {
  margin-bottom: 26px;
  color: var(--mm-muted);
}

.mm-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mm-line);
  border-radius: 50%;
  color: var(--mm-ink);
  background: var(--mm-white);
  font-size: 1.45rem;
}

body.mm-modal-open {
  overflow: hidden;
}

/* Video-led product heroes and the featured ferroalloys path on the homepage. */
.mm-product-video-hero {
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mm-product-video-hero.inner-page,
.mm-product-video-hero.inner-page .container > .row {
  min-height: 560px;
  padding: 48px 0;
}

.mm-product-video-hero.overlay::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 16, 22, 0.82) 0%, rgba(8, 16, 22, 0.66) 50%, rgba(8, 16, 22, 0.5) 100%);
}

.mm-product-video-hero > .container {
  z-index: 2;
}

.mm-product-hero-video,
.mm-featured-alloys-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mm-product-hero-video {
  z-index: 0;
}

.mm-product-hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.mm-product-hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffd08a;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mm-product-video-hero .mm-product-hero-copy h1 {
  margin-bottom: 16px !important;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  text-transform: uppercase;
}

.mm-product-video-hero .mm-product-hero-copy > p:not(.mm-inline-hero-cta) {
  max-width: 720px;
  margin: 0 auto;
  color: #f3f5f6;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.mm-product-video-toggle {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 16, 22, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.mm-product-video-toggle:hover,
.mm-product-video-toggle:focus-visible {
  border-color: var(--mm-action);
  background: var(--mm-ink);
  outline: none;
}

.mm-product-video-toggle[hidden] {
  display: none;
}

.mm-featured-alloys {
  padding: 96px 0;
  background: var(--mm-white);
}

.mm-featured-alloys-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--mm-shadow);
}

.mm-featured-alloys-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #252d32;
}

.mm-featured-alloys-video {
  z-index: 0;
}

.mm-featured-alloys-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(8, 16, 22, 0.7) 100%);
  content: "";
  pointer-events: none;
}

.mm-featured-alloys-label {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 26px;
  padding: 8px 11px;
  border-left: 3px solid var(--mm-action);
  color: #fff;
  background: rgba(8, 16, 22, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mm-featured-alloys-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 58px 54px;
  color: #dce3e7;
  background: var(--mm-steel);
}

.mm-featured-alloys-copy .mm-eyebrow {
  color: #f0b56c;
}

.mm-featured-alloys-copy h2 {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
}

.mm-featured-alloys-copy > p:not(.mm-eyebrow) {
  margin: 0;
  color: #dce3e7;
}

.mm-featured-alloys-list {
  width: 100%;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.mm-featured-alloys-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mm-featured-alloys-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mm-featured-alloys-list a {
  display: block;
  padding: 13px 0;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.mm-featured-alloys-list a::after {
  float: right;
  color: var(--mm-action);
  content: "→";
}

.mm-featured-alloys-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.mm-featured-alloys-actions .mm-text-link {
  color: #fff;
}

/* Conversion layer for the original internal-page template. */
body:not(.mm-site) .site-navbar .site-menu > li:last-child > a {
  margin-left: 10px;
  padding: 12px 18px !important;
  border-radius: 3px;
  color: var(--mm-white) !important;
  background: var(--mm-copper);
}

body:not(.mm-site) .site-section-cover h1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

body:not(.mm-site) .mm-inline-hero-cta {
  margin: 24px 0 0;
}

body:not(.mm-site) img:not(.site-logo img) {
  max-width: 100%;
}

body:not(.mm-site) .block__73694 p,
body:not(.mm-site) .site-section p {
  line-height: 1.75;
}

.mm-seo-support {
  padding: 88px 0 92px;
  border-top: 1px solid var(--mm-line);
  color: var(--mm-ink);
  background: var(--mm-white);
}

.mm-seo-support h2,
.mm-seo-support h3 {
  color: var(--mm-ink);
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.12;
}

.mm-seo-support h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.mm-seo-support h3 {
  margin: 0 0 13px;
  font-size: 1.45rem;
}

.mm-seo-support p {
  color: var(--mm-muted);
  line-height: 1.75;
}

.mm-seo-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 66px;
  align-items: start;
}

.mm-seo-intro > div:first-child > p:last-child {
  max-width: 720px;
  font-size: 1.04rem;
}

.mm-requirements {
  padding: 28px 30px;
  border-left: 4px solid var(--mm-action);
  background: var(--mm-cloud);
}

.mm-requirements ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mm-requirements li {
  position: relative;
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid var(--mm-line);
  color: #3f4b55;
}

.mm-requirements li:last-child {
  border-bottom: 0;
}

.mm-requirements li::before {
  position: absolute;
  left: 0;
  color: var(--mm-copper);
  font-weight: 700;
  content: "✓";
}

.mm-seo-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 56px 0 76px;
  padding: 30px 34px;
  border-radius: 4px;
  background: var(--mm-steel);
}

.mm-seo-action h3 {
  color: var(--mm-white);
}

.mm-seo-action p {
  margin: 0;
  color: #d7e0e5;
}

.mm-seo-action .mm-button {
  flex: 0 0 auto;
}

.mm-faq {
  max-width: 900px;
}

.mm-faq-list {
  border-top: 1px solid var(--mm-line);
}

.mm-faq-item {
  border-bottom: 1px solid var(--mm-line);
}

.mm-faq-item summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--mm-ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.mm-faq-item summary::-webkit-details-marker {
  display: none;
}

.mm-faq-item summary::after {
  position: absolute;
  top: 18px;
  right: 2px;
  color: var(--mm-copper);
  font-size: 1.45rem;
  content: "+";
}

.mm-faq-item[open] summary::after {
  content: "−";
}

.mm-faq-item p {
  max-width: 780px;
  margin: -4px 0 24px;
}

.mm-related {
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid var(--mm-line);
}

.mm-related h2 {
  font-size: 1.65rem;
}

.mm-related > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mm-related a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--mm-line);
  border-radius: 3px;
  color: var(--mm-ink);
  background: var(--mm-cloud);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.mm-related a:hover,
.mm-related a:focus-visible {
  border-color: var(--mm-action);
  color: var(--mm-ink);
  background: #fff7eb;
}

.mm-related a span {
  color: var(--mm-copper);
}

@media (max-width: 991px) {
  .mm-nav,
  .mm-header .mm-actions .mm-button {
    display: none;
  }

  .mm-menu-button {
    display: block;
  }

  .mm-header.mm-menu-open .mm-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 22px;
    border-top: 1px solid var(--mm-line);
    background: var(--mm-white);
    box-shadow: 0 20px 30px rgba(17, 24, 32, 0.12);
  }

  .mm-header.mm-menu-open .mm-nav > a,
  .mm-header.mm-menu-open .mm-nav-trigger {
    display: block;
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--mm-line);
    text-align: left;
  }

  .mm-header.mm-menu-open .mm-nav-item {
    display: block;
  }

  .mm-header.mm-menu-open .mm-submenu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 4px 0 10px 16px;
    border: 0;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none;
  }

  .mm-header.mm-menu-open .mm-nav-item.is-open .mm-submenu {
    display: block;
  }

  .mm-header.mm-menu-open .mm-submenu a {
    padding: 10px 0;
    white-space: normal;
  }

  .mm-grid-4,
  .mm-grid-3,
  .mm-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mm-client-logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .mm-trust-grid {
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .mm-stat {
    width: 50%;
  }

  .mm-stat:nth-child(2) {
    border-right: 0;
  }

  .mm-seo-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mm-featured-alloys-grid {
    grid-template-columns: 1fr;
  }

  .mm-featured-alloys-media {
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .mm-container {
    width: min(100% - 28px, 1160px);
  }

  .mm-topbar .mm-container {
    justify-content: center;
  }

  .mm-topbar-links span,
  .mm-topbar-links a:last-child {
    display: none;
  }

  .mm-header-inner {
    min-height: 72px;
  }

  .mm-brand img {
    width: 58px;
    height: 58px;
  }

  .mm-hero {
    min-height: 620px;
    background-position: 58% center;
  }

  .mm-hero-content {
    padding: 70px 0 95px;
  }

  .mm-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .mm-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mm-hero-actions .mm-button {
    width: 100%;
  }

  .mm-trust {
    margin-top: -28px;
  }

  .mm-trust-grid {
    padding: 22px 10px;
  }

  .mm-stat {
    min-width: 0;
    padding: 4px 10px;
  }

  .mm-stat strong {
    font-size: 1.65rem;
  }

  .mm-section {
    padding: 75px 0;
  }

  .mm-client-proof {
    padding: 68px 0 72px;
  }

  .mm-featured-alloys {
    padding: 68px 0;
  }

  .mm-featured-alloys-media {
    min-height: 300px;
  }

  .mm-featured-alloys-copy {
    padding: 38px 28px;
  }

  .mm-featured-alloys-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .mm-featured-alloys-actions .mm-button {
    width: 100%;
  }

  .mm-product-video-hero.inner-page,
  .mm-product-video-hero.inner-page .container > .row {
    min-height: 520px;
    padding: 44px 0;
  }

  .mm-product-video-hero .mm-product-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .mm-product-video-toggle {
    top: 14px;
    right: 14px;
  }

  .mm-client-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .mm-section-heading,
  .mm-footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .mm-grid-4,
  .mm-grid-3,
  .mm-grid-2,
  .mm-process-grid,
  .mm-proof-grid,
  .mm-form-grid {
    grid-template-columns: 1fr;
  }

  .mm-field-full {
    grid-column: auto;
  }

  .mm-proof-panel,
  .mm-proof-list,
  .mm-quote-card,
  .mm-modal-panel {
    padding: 28px;
  }

  .mm-floating-quote {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 6px 14px 6px 6px;
    font-size: 0.73rem;
  }

  .mm-floating-icon {
    width: 32px;
    height: 32px;
  }

  .mm-seo-support {
    padding: 68px 0 72px;
  }

  .mm-seo-action {
    align-items: stretch;
    flex-direction: column;
    margin: 42px 0 58px;
    padding: 26px;
  }

  .mm-seo-action .mm-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

}
