.mtr-page {
  --mtr-ink: #07131d;
  --mtr-ink-soft: #102936;
  --mtr-copy: #304955;
  --mtr-muted: #647985;
  --mtr-blue: #245f7e;
  --mtr-blue-bright: #58a9ca;
  --mtr-blue-pale: #e3eff4;
  --mtr-orange: #d96b2b;
  --mtr-orange-pale: #fff0e4;
  --mtr-paper: #f6f9fa;
  --mtr-line: #b8cad2;
  --mtr-white: #fff;
  overflow-x: clip;
  background: var(--mtr-paper);
  color: var(--mtr-ink);
}

.mtr-page main {
  min-width: 0;
  overflow: clip;
}

.mtr-page main > *,
.mtr-page main > * > *,
.mtr-hero-grid > *,
.mtr-decision-grid > *,
.mtr-boundary-grid > *,
.mtr-application-grid > *,
.mtr-quote-grid > * {
  min-width: 0;
}

.mtr-page main [id] {
  scroll-margin-top: 144px;
}

.mtr-page h2,
.mtr-page h3 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.mtr-page h1 {
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
  word-break: normal;
}

.mtr-page h2 {
  margin-bottom: 18px;
  color: var(--mtr-ink);
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  letter-spacing: -.052em;
  line-height: .98;
}

.mtr-page h3 {
  color: var(--mtr-ink);
  line-height: 1.18;
}

.mtr-page p {
  color: var(--mtr-copy);
  line-height: 1.68;
}

.mtr-page figure {
  margin: 0;
}

.mtr-page figure img,
.mtr-related-media img,
.mtr-video-trigger img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mtr-page a:focus-visible,
.mtr-page button:focus-visible,
.mtr-page summary:focus-visible,
.mtr-page input:focus-visible,
.mtr-page textarea:focus-visible,
.mtr-page select:focus-visible,
.mtr-table-wrap:focus-visible {
  outline: 3px solid var(--mtr-blue-bright);
  outline-offset: 3px;
}

.mtr-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 104px) 0 clamp(66px, 8vw, 118px);
  border-bottom: 1px solid var(--mtr-line);
  background:
    radial-gradient(circle at 87% 15%, rgba(217, 107, 43, .19), transparent 27%),
    radial-gradient(circle at 70% 78%, rgba(88, 169, 202, .15), transparent 30%),
    linear-gradient(138deg, #f8fafb 0%, #edf4f6 58%, #dbe9ef 100%);
}

.mtr-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 95, 126, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 95, 126, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 70%);
  pointer-events: none;
}

.mtr-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  grid-template-areas:
    "copy visual"
    "facts visual";
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
}

.mtr-hero-copy {
  grid-area: copy;
}

.mtr-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--mtr-muted);
  font-size: .72rem;
  font-weight: 780;
}

.mtr-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.mtr-breadcrumb a:hover {
  color: var(--mtr-blue);
}

.mtr-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--mtr-ink);
  font-size: clamp(3.15rem, 6.15vw, 6.7rem);
  letter-spacing: -.071em;
  line-height: .88;
}

.mtr-hero-lead {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(1.04rem, 1.4vw, 1.27rem);
}

.mtr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mtr-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--mtr-blue);
  color: var(--mtr-blue);
  font-size: .78rem;
  font-weight: 860;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.mtr-button.is-primary {
  border-color: var(--mtr-blue);
  background: var(--mtr-blue);
  color: #fff;
}

.mtr-button:hover {
  transform: translateY(-2px);
}

.mtr-hero-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  border: 1px solid var(--mtr-line);
  background: var(--mtr-line);
}

.mtr-hero-facts div {
  min-width: 0;
  padding: 16px 17px;
  background: rgba(255, 255, 255, .84);
}

.mtr-hero-facts dt {
  margin-bottom: 6px;
  color: var(--mtr-muted);
  font-size: .62rem;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mtr-hero-facts dd {
  margin: 0;
  color: var(--mtr-ink);
  font-size: .94rem;
  font-weight: 860;
  line-height: 1.34;
}

.mtr-hero-figure,
.mtr-figure {
  overflow: hidden;
  border: 1px solid var(--mtr-line);
  background: var(--mtr-white);
  box-shadow: 0 26px 72px rgba(15, 48, 64, .14);
}

.mtr-hero-figure {
  grid-area: visual;
}

.mtr-hero-figure img,
.mtr-figure img {
  background: #fff;
}

.mtr-hero-figure figcaption,
.mtr-figure figcaption {
  display: grid;
  gap: 7px;
  padding: 16px 18px 19px;
  border-top: 1px solid var(--mtr-line);
  background: #fff;
}

.mtr-hero-figure figcaption span,
.mtr-figure figcaption span {
  color: var(--mtr-blue);
  font-size: .63rem;
  font-weight: 860;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mtr-hero-figure figcaption strong,
.mtr-figure figcaption strong {
  color: var(--mtr-ink);
  line-height: 1.4;
}

.mtr-hero-figure figcaption p,
.mtr-figure figcaption p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
}

.mtr-section-nav {
  position: sticky;
  z-index: 60;
  top: 74px;
  border-bottom: 1px solid var(--mtr-line);
  background: rgba(247, 250, 251, .97);
  backdrop-filter: blur(14px);
}

.mtr-section-nav .st-shell {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}

.mtr-section-nav a {
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--mtr-line);
  color: var(--mtr-copy);
  font-size: .68rem;
  font-weight: 830;
  text-decoration: none;
  white-space: nowrap;
}

.mtr-section-nav a:first-child {
  border-left: 1px solid var(--mtr-line);
}

.mtr-section-nav a:hover,
.mtr-section-nav a:focus-visible {
  background: var(--mtr-blue-pale);
  color: var(--mtr-blue);
}

.mtr-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(28px, 5vw, 78px);
  margin-bottom: clamp(36px, 5vw, 66px);
}

.mtr-section-head > * {
  min-width: 0;
}

.mtr-section-head h2,
.mtr-section-head > p {
  margin-bottom: 0;
}

.mtr-decision {
  background: #fff;
}

.mtr-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: start;
  gap: clamp(34px, 6vw, 86px);
}

.mtr-decision-copy > p {
  max-width: 760px;
}

.mtr-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--mtr-line);
  background: var(--mtr-line);
}

.mtr-choice-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  background: var(--mtr-paper);
}

.mtr-choice-card.is-standard {
  border-top: 6px solid var(--mtr-blue);
}

.mtr-choice-card.is-precision {
  border-top: 6px solid var(--mtr-orange);
  background: var(--mtr-orange-pale);
}

.mtr-choice-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--mtr-blue);
  font-size: .67rem;
  font-weight: 880;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mtr-choice-card.is-precision > span {
  color: #9f4c1d;
}

.mtr-choice-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.mtr-choice-card p {
  margin: 0;
  font-size: .88rem;
}

.mtr-choice-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  color: var(--mtr-blue);
  font-size: .78rem;
  font-weight: 860;
}

.mtr-decision-figure {
  position: sticky;
  top: 150px;
}

.mtr-boundary {
  background: var(--mtr-ink);
}

.mtr-boundary-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "copy cards"
    "note cards";
  align-items: start;
  gap: clamp(36px, 6vw, 90px);
}

.mtr-boundary-copy {
  grid-area: copy;
}

.mtr-boundary-copy .st-kicker {
  color: #79c0df;
}

.mtr-boundary-copy h2 {
  color: #fff;
}

.mtr-boundary-copy > p {
  color: #b9cad2;
}

.mtr-boundary-cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #355363;
  background: #355363;
}

.mtr-boundary-grid > aside {
  grid-area: note;
  padding: 20px 22px;
  border-left: 5px solid var(--mtr-orange);
  background: rgba(255, 255, 255, .08);
}

.mtr-boundary-grid > aside strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  line-height: 1.4;
}

.mtr-boundary-grid > aside p {
  margin: 0;
  color: #b9cad2;
  font-size: .84rem;
  line-height: 1.55;
}

.mtr-boundary-card {
  min-width: 0;
  padding: clamp(25px, 3.4vw, 42px);
  background: #0d2531;
}

.mtr-boundary-card.is-recoiling {
  background: var(--mtr-blue);
}

.mtr-boundary-card > span {
  display: block;
  margin-bottom: 22px;
  color: #79c0df;
  font-size: .67rem;
  font-weight: 880;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mtr-boundary-card.is-recoiling > span {
  color: #d8f0f9;
}

.mtr-boundary-card h3 {
  margin-bottom: 11px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.mtr-boundary-card p {
  margin: 0;
  color: #b9cad2;
}

.mtr-boundary-card.is-recoiling p {
  color: #e2f1f7;
}

.mtr-boundary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 22px;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
}

.mtr-application {
  background: #fff;
}

.mtr-application.is-precision {
  background: var(--mtr-paper);
}

.mtr-application-grid {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(34px, 6vw, 88px);
}

.mtr-application-copy {
  position: sticky;
  top: 150px;
}

.mtr-application-copy > p {
  max-width: 620px;
}

.mtr-application-points {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  padding: 1px;
  background: var(--mtr-line);
  list-style: none;
}

.mtr-application-points li {
  position: relative;
  min-width: 0;
  padding: 14px 16px 14px 42px;
  background: #fff;
  color: var(--mtr-copy);
  line-height: 1.5;
}

.mtr-application-points li::before {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 9px;
  height: 9px;
  background: var(--mtr-orange);
  content: "";
  transform: rotate(45deg);
}

.mtr-application-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.mtr-application-gallery.is-wide {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, .82fr);
}

.mtr-application-gallery .mtr-figure {
  min-width: 0;
  box-shadow: 0 18px 48px rgba(15, 48, 64, .09);
}

.mtr-models {
  background: var(--mtr-blue-pale);
}

.mtr-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--mtr-line);
  background: #fff;
  box-shadow: 0 22px 58px rgba(15, 48, 64, .1);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.mtr-table-wrap table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  color: var(--mtr-ink);
  font-variant-numeric: tabular-nums;
}

.mtr-table-wrap caption {
  padding: 18px 20px;
  border-bottom: 1px solid var(--mtr-line);
  background: #fff;
  color: var(--mtr-copy);
  font-size: .82rem;
  font-weight: 780;
  text-align: left;
}

.mtr-table-wrap th,
.mtr-table-wrap td {
  padding: 15px 14px;
  border-right: 1px solid var(--mtr-line);
  border-bottom: 1px solid var(--mtr-line);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.mtr-table-wrap thead th {
  background: var(--mtr-ink);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mtr-table-wrap tbody th {
  position: sticky;
  z-index: 1;
  left: 0;
  background: #fff;
  color: var(--mtr-blue);
  font-weight: 900;
}

.mtr-table-wrap tbody tr:nth-child(even) td,
.mtr-table-wrap tbody tr:nth-child(even) th {
  background: #eef4f6;
}

.mtr-table-wrap tr:last-child > * {
  border-bottom: 0;
}

.mtr-table-note {
  display: grid;
  grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 5px solid var(--mtr-orange);
  background: var(--mtr-orange-pale);
}

.mtr-table-note strong {
  color: var(--mtr-ink);
}

.mtr-table-note span,
.mtr-table-note p {
  margin: 0;
  color: var(--mtr-copy);
  line-height: 1.55;
}

.mtr-config {
  background: #fff;
}

.mtr-config-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--mtr-line);
  background: var(--mtr-line);
}

.mtr-config-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  background: var(--mtr-paper);
}

.mtr-config-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  background: var(--mtr-blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 880;
}

.mtr-config-card h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.mtr-config-card p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.56;
}

.mtr-operation {
  background: var(--mtr-ink);
}

.mtr-operation .mtr-section-head h2,
.mtr-operation .mtr-section-head > p {
  color: #fff;
}

.mtr-operation .mtr-section-head > p {
  color: #b9cad2;
}

.mtr-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: #355363;
  list-style: none;
}

.mtr-steps li {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: #0d2531;
}

.mtr-steps li > span {
  display: inline-flex;
  min-width: 40px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0 9px;
  background: var(--mtr-orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
}

.mtr-steps h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 1.05rem;
}

.mtr-steps p {
  margin: 0;
  color: #b9cad2;
  font-size: .83rem;
  line-height: 1.55;
}

.mtr-videos {
  background: #dceaf0;
}

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

.mtr-video-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--mtr-line);
  background: var(--mtr-ink);
}

.mtr-video-trigger {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  place-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #02080d;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.mtr-video-trigger img {
  width: 100%;
  height: 100%;
  background: #02080d;
  object-fit: contain;
}

.mtr-video-trigger::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 18, .92), transparent 62%);
  content: "";
  pointer-events: none;
}

.mtr-video-trigger > span:not(.mtr-video-play) {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #fff;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  font-weight: 850;
  line-height: 1.35;
}

.mtr-video-trigger > strong {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #fff;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  font-weight: 850;
  line-height: 1.35;
}

.mtr-video-play {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  background: var(--mtr-orange);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}

.mtr-video-card > div {
  padding: 20px 21px 23px;
  border-top: 1px solid #355363;
}

.mtr-video-card > div > span {
  display: block;
  margin-bottom: 8px;
  color: #79c0df;
  font-size: .64rem;
  font-weight: 860;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mtr-video-card > div h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.08rem;
}

.mtr-video-card > div p {
  margin: 0;
  color: #b9cad2;
  font-size: .84rem;
  line-height: 1.55;
}

.mtr-video-fallback {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: 16px 20px 0;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
}

.mtr-video-dialog {
  width: min(960px, calc(100% - 30px));
  max-width: 960px;
  padding: 0;
  border: 1px solid #355363;
  background: var(--mtr-ink);
  color: #fff;
}

.mtr-video-dialog::backdrop {
  background: rgba(1, 8, 13, .84);
}

.mtr-video-dialog header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
}

.mtr-video-dialog h2 {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: 0;
  line-height: 1.35;
}

.mtr-video-dialog button {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: var(--mtr-orange);
  color: #fff;
  font-size: 1.55rem;
  cursor: pointer;
}

.mtr-video-dialog iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.mtr-related {
  background: #fff;
}

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

.mtr-related-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mtr-line);
  background: var(--mtr-paper);
}

.mtr-related-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  border-bottom: 1px solid var(--mtr-line);
  background: #fff;
}

.mtr-related-media .mtr-figure {
  min-width: 0;
  border: 0;
  box-shadow: none;
}

.mtr-related-media .mtr-figure + .mtr-figure {
  border-left: 1px solid var(--mtr-line);
}

.mtr-related-card > span {
  display: block;
  margin: 22px 22px 8px;
  color: var(--mtr-blue);
  font-size: .64rem;
  font-weight: 860;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mtr-related-card h3 {
  margin: 0 22px 9px;
  font-size: 1.1rem;
}

.mtr-related-card p {
  margin: 0 22px;
  font-size: .84rem;
}

.mtr-related-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: auto 22px 18px;
  padding-top: 18px;
  color: var(--mtr-blue);
  font-size: .78rem;
  font-weight: 860;
}

.mtr-data {
  background: var(--mtr-paper);
}

.mtr-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--mtr-line);
  list-style: none;
}

.mtr-data-grid li {
  min-width: 0;
  padding: 22px 20px 24px;
  background: #fff;
}

.mtr-data-grid li > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--mtr-blue);
  color: #fff;
  font-size: .66rem;
  font-weight: 880;
}

.mtr-data-grid h3 {
  margin-bottom: 8px;
  font-size: .98rem;
}

.mtr-data-grid p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.52;
}

.mtr-data-note {
  display: grid;
  grid-template-columns: minmax(240px, .36fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 5px solid var(--mtr-orange);
  background: var(--mtr-ink);
}

.mtr-data-note strong {
  color: #fff;
}

.mtr-data-note span,
.mtr-data-note p {
  margin: 0;
  color: #c1d1d8;
  line-height: 1.55;
}

.mtr-faq {
  background: var(--mtr-blue-pale);
}

.mtr-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(38px, 7vw, 104px);
}

.mtr-faq-list {
  display: grid;
  gap: 9px;
}

.mtr-faq-list details {
  border: 1px solid var(--mtr-line);
  background: #fff;
}

.mtr-faq-list summary {
  display: grid;
  min-height: 72px;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
  padding: 13px 15px 13px 20px;
  color: var(--mtr-ink);
  font-weight: 840;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.mtr-faq-list summary::-webkit-details-marker {
  display: none;
}

.mtr-faq-list summary span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--mtr-ink);
  color: #fff;
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.mtr-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.mtr-faq-list details p {
  margin: 0;
  padding: 0 74px 22px 20px;
  font-size: .9rem;
  line-height: 1.62;
}

.mtr-quote {
  background:
    radial-gradient(circle at 8% 14%, rgba(217, 107, 43, .14), transparent 28%),
    var(--mtr-ink);
}

.mtr-quote-grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(38px, 6vw, 92px);
}

.mtr-quote-copy {
  position: sticky;
  top: 144px;
}

.mtr-quote-copy .st-kicker {
  color: #e8a77f;
}

.mtr-quote-copy h2 {
  color: #fff;
}

.mtr-quote-copy > p {
  color: #b9cad3;
}

.mtr-quote-copy ul {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  padding: 1px;
  background: #355363;
  list-style: none;
}

.mtr-quote-copy li {
  position: relative;
  padding: 13px 16px 13px 40px;
  background: #0d2531;
  color: #d6e3e9;
  font-size: .84rem;
  line-height: 1.46;
}

.mtr-quote-copy li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #e8a77f;
  content: "✓";
  font-weight: 880;
}

.mtr-page .hnl-inquiry-form {
  min-width: 0;
  margin: 0;
  border-top-color: var(--mtr-orange);
  background: #fff;
}

.mtr-page .hnl-inquiry-grid,
.mtr-page .hnl-inquiry-grid > label {
  min-width: 0;
}

.mtr-page .hnl-inquiry-grid input,
.mtr-page .hnl-inquiry-grid textarea,
.mtr-page .hnl-inquiry-grid select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mtr-page .hnl-inquiry-submit {
  min-height: 50px;
  background: var(--mtr-blue);
}

.mtr-page .hnl-inquiry-turnstile-wrap {
  max-width: 100%;
  overflow: visible;
}

.mtr-page .hnl-inquiry-turnstile,
.mtr-page .hnl-inquiry-turnstile iframe {
  width: 300px;
  max-width: 300px;
}

@media (max-width: 1180px) {
  .mtr-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 42px;
  }

  .mtr-decision-grid,
  .mtr-application-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .mtr-config-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mtr-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mtr-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mtr-page h2 {
    font-size: clamp(2rem, 7vw, 3.75rem);
  }

  .mtr-page .st-site-nav nav a:not(:last-child) {
    display: none;
  }

  .mtr-hero {
    padding-top: 50px;
  }

  .mtr-hero-grid,
  .mtr-decision-grid,
  .mtr-boundary-grid,
  .mtr-application-grid,
  .mtr-section-head,
  .mtr-faq-grid,
  .mtr-quote-grid {
    grid-template-columns: 1fr;
  }

  .mtr-hero-grid {
    grid-template-areas:
      "copy"
      "facts"
      "visual";
  }

  .mtr-boundary-grid {
    grid-template-areas:
      "copy"
      "cards"
      "note";
  }

  .mtr-hero-figure,
  .mtr-decision-figure {
    width: min(100%, 680px);
  }

  .mtr-decision-figure,
  .mtr-application-copy,
  .mtr-quote-copy {
    position: static;
  }

  .mtr-section-head {
    align-items: start;
    gap: 13px;
  }

  .mtr-section-head > p {
    max-width: 720px;
  }

  .mtr-application-gallery,
  .mtr-application-gallery.is-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mtr-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mtr-page .st-shell {
    width: min(100% - 30px, 1240px);
  }

  .mtr-page .st-section {
    padding-block: 68px;
  }

  .mtr-page main [id] {
    scroll-margin-top: 138px;
  }

  .mtr-hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 4.6rem);
  }

  .mtr-breadcrumb {
    margin-bottom: 25px;
  }

  .mtr-section-nav .st-shell {
    width: 100%;
  }

  .mtr-section-nav a {
    min-height: 48px;
  }

  .mtr-boundary-cards,
  .mtr-video-grid {
    grid-template-columns: 1fr;
  }

  .mtr-config-grid,
  .mtr-steps,
  .mtr-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mtr-table-note,
  .mtr-data-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .mtr-page .hnl-inquiry-submit {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
  }

  .mtr-page .hnl-inquiry-consent {
    min-height: 44px;
    align-items: center;
  }

  .mtr-page .hnl-inquiry-turnstile-wrap {
    width: 300px;
    max-width: none;
    margin-inline: calc((100% - 300px) / 2);
  }

  .mtr-page a,
  .mtr-page button,
  .mtr-page summary {
    min-height: 44px;
    touch-action: manipulation;
  }

  .mtr-page .st-site-nav nav a:last-child {
    min-height: 44px;
  }
}

@media (max-width: 620px) {
  .mtr-page main [id] {
    scroll-margin-top: 130px;
  }

  .mtr-section-nav {
    top: 68px;
  }

  .mtr-hero-facts,
  .mtr-choice-grid,
  .mtr-application-gallery,
  .mtr-application-gallery.is-wide,
  .mtr-config-grid,
  .mtr-steps,
  .mtr-related-grid,
  .mtr-data-grid {
    grid-template-columns: 1fr;
  }

  .mtr-table-wrap table {
    min-width: 940px;
  }

  .mtr-faq-list details p {
    padding-right: 20px;
  }
}

@media (max-width: 420px) {
  .mtr-page .st-shell {
    width: min(100% - 24px, 1240px);
  }

  .mtr-page .st-section {
    padding-block: 56px;
  }

  .mtr-hero {
    padding: 40px 0 60px;
  }

  .mtr-hero h1 {
    letter-spacing: -.06em;
  }

  .mtr-hero-actions {
    display: grid;
  }

  .mtr-button {
    width: 100%;
  }

  .mtr-choice-card,
  .mtr-boundary-card,
  .mtr-config-card,
  .mtr-steps li,
  .mtr-related-card > div:last-child,
  .mtr-data-grid li {
    padding: 20px 17px;
  }

  .mtr-video-trigger > span:not(.mtr-video-play) {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .mtr-video-trigger > strong {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .mtr-video-play {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .mtr-faq-list summary {
    gap: 11px;
    padding-left: 16px;
  }

  .mtr-faq-list details p {
    padding: 0 16px 20px;
  }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .mtr-page .st-site-nav {
    position: relative;
  }

  .mtr-section-nav {
    position: relative;
    top: auto;
  }

  .mtr-page main [id] {
    scroll-margin-top: 82px;
  }

  .mtr-hero {
    padding-block: 38px 52px;
  }

  .mtr-page .st-section {
    padding-block: 54px;
  }

  .mtr-decision-figure,
  .mtr-application-copy,
  .mtr-quote-copy {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mtr-page *,
  .mtr-page *::before,
  .mtr-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
