:root {
    --msge-ink: #17201e;
    --msge-muted: #5f6966;
    --msge-paper: #ffffff;
    --msge-soft: #eef3f1;
    --msge-line: #d7e0dd;
    --msge-forest: #123b36;
    --msge-teal: #007b70;
    --msge-teal-dark: #005d55;
    --msge-coral: #e46f51;
    --msge-coral-dark: #c84f32;
    --msge-gold: #f4b860;
    --msge-blue: #3a6780;
    --msge-shell: 1180px;
    --msge-header-height: 74px;
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
}

body.msge-body {
    margin: 0;
    background: var(--msge-paper);
    color: var(--msge-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

.msge-body *,
.msge-body *::before,
.msge-body *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.msge-body a {
    color: inherit;
}

.msge-body button,
.msge-body input,
.msge-body select,
.msge-body textarea {
    font: inherit;
    letter-spacing: 0;
}

.msge-body img {
    max-width: 100%;
}

.msge-shell {
    width: min(calc(100% - 48px), var(--msge-shell));
    margin-inline: auto;
}

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

.msge-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 10px 14px;
    background: var(--msge-paper);
    color: var(--msge-ink);
    border: 2px solid var(--msge-ink);
    transform: translateY(-150%);
}

.msge-skip-link:focus {
    transform: translateY(0);
}

.msge-independent-bar {
    min-height: 38px;
    display: flex;
    align-items: center;
    background: var(--msge-gold);
    color: #302008;
    font-size: 13px;
}

.msge-independent-bar .msge-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    padding-block: 8px;
    text-align: center;
}

.msge-independent-bar a {
    margin-left: 8px;
    font-weight: 750;
    text-underline-offset: 3px;
}

.msge-header {
    position: relative;
    z-index: 100;
    height: var(--msge-header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--msge-line);
}

.msge-header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.msge-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 190px;
    color: var(--msge-ink);
    text-decoration: none;
}

.msge-brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 4px;
    background: var(--msge-forest);
    box-shadow: inset 0 -5px 0 var(--msge-coral);
    color: #fff;
    font-size: 19px;
    font-weight: 850;
}

.msge-brand > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.msge-brand strong {
    font-size: 17px;
    font-weight: 800;
}

.msge-brand small {
    margin-top: 4px;
    color: var(--msge-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.msge-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.msge-nav a {
    position: relative;
    color: #28322f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.msge-nav a:not(.msge-nav-official)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--msge-coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.msge-nav a:hover::after,
.msge-nav a:focus-visible::after {
    transform: scaleX(1);
}

.msge-nav-official {
    padding-left: 26px;
    border-left: 1px solid var(--msge-line);
    color: var(--msge-teal-dark) !important;
}

.msge-header-action {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border: 2px solid var(--msge-forest);
    border-radius: 4px;
    color: var(--msge-forest);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease;
}

.msge-header-action:hover,
.msge-header-action:focus-visible {
    background: var(--msge-forest);
    color: #fff;
}

.msge-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--msge-line);
    border-radius: 4px;
    background: #fff;
    color: var(--msge-ink);
    cursor: pointer;
}

.msge-menu-lines {
    width: 19px;
    display: grid;
    gap: 4px;
}

.msge-menu-lines i {
    height: 2px;
    display: block;
    background: currentColor;
}

.msge-hero,
.msge-product-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1d2422;
    background-image: url("global-hero.webp");
    background-position: center center;
    background-size: cover;
    color: #fff;
}

.msge-hero::before,
.msge-product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(10, 18, 17, 0.14);
}

.msge-hero--home {
    height: calc(100svh - 160px);
    min-height: 520px;
    max-height: 680px;
}

.msge-hero-copy,
.msge-product-hero-copy {
    width: min(640px, 48%);
    padding-block: 58px;
}

.msge-eyebrow,
.msge-kicker {
    margin: 0 0 13px;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.3;
    text-transform: uppercase;
}

.msge-eyebrow {
    color: var(--msge-gold);
}

.msge-kicker {
    color: var(--msge-teal-dark);
}

.msge-hero h1,
.msge-product-hero h1,
.msge-page-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.msge-hero-lede {
    max-width: 620px;
    margin: 24px 0 0;
    color: #f5f7f6;
    font-size: 20px;
    line-height: 1.48;
}

.msge-hero-disclosure {
    max-width: 615px;
    margin: 18px 0 0;
    color: #d9e3df;
    font-size: 14px;
    line-height: 1.58;
}

.msge-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.msge-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 18px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.msge-button:hover,
.msge-button:focus-visible {
    transform: translateY(-2px);
}

.msge-button:disabled {
    opacity: 0.62;
    cursor: wait;
    transform: none;
}

.msge-button--coral {
    background: var(--msge-coral);
    color: #fff;
}

.msge-button--coral:hover,
.msge-button--coral:focus-visible {
    background: var(--msge-coral-dark);
}

.msge-button--light {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.msge-button--light:hover,
.msge-button--light:focus-visible {
    background: #fff;
    color: var(--msge-forest);
}

.msge-button--primary {
    background: var(--msge-teal);
    color: #fff;
}

.msge-button--primary:hover,
.msge-button--primary:focus-visible {
    background: var(--msge-teal-dark);
}

.msge-button--dark {
    background: var(--msge-forest);
    color: #fff;
}

.msge-safe-note {
    margin: 20px 0 0;
    color: #d7dfdc;
    font-size: 12px;
    font-weight: 750;
}

.msge-section {
    padding-block: 88px;
}

.msge-section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.msge-section-heading--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
}

.msge-section h2,
.msge-contact-band h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: 0;
    text-wrap: balance;
}

.msge-product-finder {
    background: #fff;
}

.msge-search-field {
    width: min(100%, 360px);
}

.msge-search-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--msge-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.msge-search-field input {
    width: 100%;
    height: 48px;
    padding: 10px 13px;
    border: 1px solid #aebbb7;
    border-radius: 4px;
    background: #fff;
    color: var(--msge-ink);
    outline: 0;
}

.msge-search-field input:focus {
    border-color: var(--msge-teal);
    box-shadow: 0 0 0 3px rgba(0, 123, 112, 0.15);
}

.msge-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.msge-product-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.msge-product-card {
    min-height: 142px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 22px;
    align-items: start;
    gap: 15px;
    padding: 21px;
    border: 1px solid var(--msge-line);
    border-radius: 6px;
    background: #fff;
    color: var(--msge-ink);
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.msge-product-card:hover,
.msge-product-card:focus-visible {
    border-color: var(--msge-teal);
    box-shadow: 0 10px 28px rgba(18, 59, 54, 0.1);
    transform: translateY(-2px);
    outline: 0;
}

.msge-product-mark,
.msge-large-mark {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 4px;
    background: var(--msge-soft);
    color: var(--msge-teal-dark);
    font-weight: 850;
}

.msge-product-mark {
    width: 48px;
    height: 48px;
    font-size: 13px;
}

.msge-product-card:nth-child(3n + 2) .msge-product-mark {
    background: #fff1ec;
    color: #a84329;
}

.msge-product-card:nth-child(3n) .msge-product-mark {
    background: #edf2f5;
    color: var(--msge-blue);
}

.msge-product-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.msge-product-copy strong {
    font-size: 17px;
    line-height: 1.25;
}

.msge-product-copy > span {
    color: var(--msge-muted);
    font-size: 13px;
    line-height: 1.5;
}

.msge-card-arrow {
    color: var(--msge-coral);
    font-size: 20px;
    font-weight: 800;
}

.msge-no-results {
    padding: 24px;
    border-left: 4px solid var(--msge-coral);
    background: var(--msge-soft);
}

.msge-how-band {
    background: var(--msge-soft);
}

.msge-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #bfcac6;
}

.msge-step-grid article {
    min-height: 230px;
    padding: 32px 34px 12px 0;
    border-right: 1px solid #bfcac6;
}

.msge-step-grid article + article {
    padding-left: 34px;
}

.msge-step-grid article:last-child {
    border-right: 0;
}

.msge-step-grid article > span,
.msge-topic-grid article > span {
    color: var(--msge-coral);
    font-size: 13px;
    font-weight: 850;
}

.msge-step-grid h3,
.msge-topic-grid h3 {
    margin: 36px 0 10px;
    font-size: 21px;
    line-height: 1.25;
}

.msge-step-grid p,
.msge-topic-grid p,
.msge-boundary p,
.msge-official-handoff p {
    margin: 0;
    color: var(--msge-muted);
}

.msge-boundary-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 90px;
    align-items: start;
}

.msge-boundary-intro > p:last-child {
    margin-top: 22px;
    font-size: 17px;
}

.msge-scope-list {
    border-top: 3px solid var(--msge-forest);
}

.msge-scope-list > div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--msge-line);
}

.msge-scope-list strong {
    font-size: 15px;
}

.msge-text-link {
    display: inline-flex;
    gap: 7px;
    margin-top: 22px;
    color: var(--msge-teal-dark) !important;
    font-weight: 800;
    text-underline-offset: 4px;
}

.msge-contact-band {
    padding-block: 62px;
    background: var(--msge-gold);
    color: #2d210e;
}

.msge-contact-band .msge-kicker {
    color: #765014;
}

.msge-contact-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.msge-product-hero {
    min-height: 540px;
    background-position: center center;
}

.msge-product-hero-copy {
    padding-block: 58px;
}

.msge-product-hero h1 {
    font-size: 50px;
}

.msge-breadcrumb {
    display: inline-block;
    margin-bottom: 26px;
    color: #e1e9e6;
    font-size: 13px;
    font-weight: 750;
    text-underline-offset: 4px;
}

.msge-large-mark {
    width: 64px;
    height: 64px;
    margin-bottom: 23px;
    background: var(--msge-gold);
    color: #33230c;
    font-size: 17px;
}

.msge-topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.msge-topic-grid article {
    min-height: 242px;
    padding: 25px;
    border: 1px solid var(--msge-line);
    border-top: 4px solid var(--msge-teal);
    border-radius: 4px;
    background: #fff;
}

.msge-topic-grid article:nth-child(even) {
    border-top-color: var(--msge-coral);
}

.msge-topic-grid h3 {
    margin-top: 42px;
    font-size: 18px;
}

.msge-outcome-band {
    background: var(--msge-soft);
}

.msge-outcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
}

.msge-outcome-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #bfcac6;
}

.msge-outcome-grid li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #bfcac6;
    font-size: 17px;
    font-weight: 700;
}

.msge-outcome-grid li span {
    color: var(--msge-coral);
    font-size: 22px;
    line-height: 1;
}

.msge-official-handoff {
    padding-block: 65px;
    background: #f8eee8;
}

.msge-official-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    align-items: center;
}

.msge-official-inner > div {
    max-width: 760px;
}

.msge-official-inner p:last-child {
    margin-top: 16px;
}

.msge-related {
    padding-block: 76px;
}

.msge-page-hero {
    padding-block: 92px;
    background: var(--msge-forest);
    color: #fff;
}

.msge-page-hero .msge-shell {
    max-width: var(--msge-shell);
}

.msge-page-hero h1 {
    font-size: 50px;
}

.msge-page-hero p:last-child {
    max-width: 740px;
    margin: 22px 0 0;
    color: #d7e2df;
    font-size: 19px;
}

.msge-page-hero .msge-actions {
    margin-top: 28px;
}

.msge-contact-section {
    background: var(--msge-soft);
}

.msge-contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 72px;
    align-items: start;
}

.msge-contact-context {
    position: sticky;
    top: 30px;
}

.msge-contact-context h2 {
    font-size: 34px;
}

.msge-contact-context ul {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #bfcac6;
}

.msge-contact-context li {
    padding: 13px 0 13px 25px;
    border-bottom: 1px solid #bfcac6;
    background: linear-gradient(var(--msge-coral), var(--msge-coral)) 0 20px / 9px 2px no-repeat;
}

.msge-safety-box {
    margin-top: 32px;
    padding: 20px;
    border-left: 4px solid var(--msge-coral);
    background: #fff;
}

.msge-safety-box p {
    margin: 7px 0 0;
    color: var(--msge-muted);
    font-size: 13px;
}

.msge-form-panel {
    padding: 34px;
    border: 1px solid var(--msge-line);
    border-radius: 6px;
    background: #fff;
}

.msge-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.msge-field {
    min-width: 0;
}

.msge-field--wide {
    grid-column: 1 / -1;
}

.msge-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.msge-field input,
.msge-field select,
.msge-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #9eaaa6;
    border-radius: 3px;
    background: #fff;
    color: var(--msge-ink);
    outline: 0;
}

.msge-field textarea {
    min-height: 126px;
    resize: vertical;
}

.msge-field input:focus,
.msge-field select:focus,
.msge-field textarea:focus {
    border-color: var(--msge-teal);
    box-shadow: 0 0 0 3px rgba(0, 123, 112, 0.14);
}

.msge-field-note {
    margin: 7px 0 0;
    color: #6a716f;
    font-size: 12px;
}

.msge-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    margin-top: 20px;
    color: var(--msge-muted);
    font-size: 13px;
}

.msge-check input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--msge-teal);
}

.msge-form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.msge-form-contact-rule {
    margin: 0;
    color: var(--msge-muted);
    font-size: 12px;
}

.msge-form-status {
    min-height: 24px;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 750;
}

.msge-form-status.is-success {
    padding: 11px 13px;
    border-left: 4px solid var(--msge-teal);
    background: #e4f2ef;
    color: #164d47;
}

.msge-form-status.is-error {
    padding: 11px 13px;
    border-left: 4px solid #b53d29;
    background: #fff0ed;
    color: #7e281b;
}

.msge-prose-inner {
    max-width: 780px;
}

.msge-prose h2 {
    margin: 44px 0 12px;
    font-size: 27px;
}

.msge-prose h2:first-child {
    margin-top: 0;
}

.msge-prose p {
    color: #47514e;
    font-size: 17px;
}

.msge-footer {
    padding: 62px 0 28px;
    background: #101716;
    color: #e9efed;
}

.msge-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 0.9fr;
    gap: 70px;
}

.msge-brand--footer {
    color: #fff;
}

.msge-brand--footer small {
    color: #aebbb7;
}

.msge-footer-brand p {
    max-width: 320px;
    color: #aebbb7;
    font-size: 14px;
}

.msge-footer nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.msge-footer nav strong {
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
}

.msge-footer nav a {
    color: #bfc9c6;
    font-size: 13px;
    text-decoration: none;
}

.msge-footer nav a:hover,
.msge-footer nav a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

.msge-footer-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid #38413f;
}

.msge-footer-bottom p {
    margin: 0;
    color: #929e9a;
    font-size: 11px;
    line-height: 1.6;
}

.msge-help-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 300;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 0;
    border-radius: 6px;
    background: var(--msge-coral);
    box-shadow: 0 10px 30px rgba(18, 30, 27, 0.24);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.msge-help-fab.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.msge-help-fab:hover,
.msge-help-fab:focus-visible {
    background: var(--msge-coral-dark);
}

.msge-help-icon {
    position: relative;
    width: 19px;
    height: 15px;
    display: block;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.msge-help-icon::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: skewY(-35deg);
}

.msge-dialog {
    width: min(calc(100% - 32px), 700px);
    max-height: min(88vh, 820px);
    padding: 30px;
    overflow-y: auto;
    border: 1px solid var(--msge-line);
    border-radius: 6px;
    background: #fff;
    color: var(--msge-ink);
    box-shadow: 0 24px 80px rgba(6, 19, 17, 0.32);
}

.msge-dialog::backdrop {
    background: rgba(8, 16, 14, 0.68);
}

.msge-dialog-head {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 20px;
    align-items: start;
}

.msge-dialog-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.msge-dialog-close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--msge-line);
    border-radius: 50%;
    background: #fff;
    color: var(--msge-ink);
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.msge-dialog-intro {
    margin: 13px 0 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--msge-line);
    color: var(--msge-muted);
    font-size: 13px;
}

.msge-body :focus-visible {
    outline: 3px solid var(--msge-gold);
    outline-offset: 3px;
}

@media (max-width: 1060px) {
    .msge-header-inner {
        gap: 20px;
    }

    .msge-nav {
        gap: 17px;
    }

    .msge-nav-official {
        display: none;
    }

    .msge-hero-copy,
    .msge-product-hero-copy {
        width: 54%;
    }

    .msge-hero h1 {
        font-size: 48px;
    }

    .msge-product-hero h1,
    .msge-page-hero h1 {
        font-size: 44px;
    }

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

    .msge-product-grid--compact,
    .msge-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    :root {
        --msge-header-height: 66px;
    }

    .msge-shell {
        width: min(calc(100% - 36px), var(--msge-shell));
    }

    .msge-header-inner {
        grid-template-columns: 1fr auto;
    }

    .msge-menu-button {
        display: inline-flex;
        justify-self: end;
    }

    .msge-header-action {
        display: none;
    }

    .msge-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 8px 18px 18px;
        border-bottom: 1px solid var(--msge-line);
        background: #fff;
        box-shadow: 0 14px 24px rgba(15, 31, 27, 0.12);
    }

    .msge-nav.is-open {
        display: flex;
    }

    .msge-nav a {
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 8px 4px;
        border-bottom: 1px solid var(--msge-line);
    }

    .msge-nav-official {
        display: flex;
        padding-left: 4px;
        border-left: 0;
    }

    .msge-hero,
    .msge-product-hero {
        background-position: 58% center;
    }

    .msge-hero::after,
    .msge-product-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: rgba(8, 15, 14, 0.42);
    }

    .msge-hero--home {
        height: calc(100svh - 146px);
        min-height: 500px;
        max-height: 650px;
    }

    .msge-hero-copy,
    .msge-product-hero-copy {
        width: min(100%, 610px);
    }

    .msge-boundary-grid,
    .msge-outcome-grid,
    .msge-contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .msge-contact-context {
        position: static;
    }

    .msge-official-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .msge-step-grid {
        grid-template-columns: 1fr;
    }

    .msge-step-grid article,
    .msge-step-grid article + article {
        min-height: 0;
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid #bfcac6;
    }

    .msge-step-grid h3 {
        margin-top: 18px;
    }

    .msge-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 620px) {
    .msge-shell {
        width: min(calc(100% - 28px), var(--msge-shell));
    }

    .msge-independent-bar {
        font-size: 11px;
        line-height: 1.35;
    }

    .msge-independent-bar a {
        width: 100%;
        margin-left: 0;
    }

    .msge-brand {
        min-width: 0;
    }

    .msge-brand-mark {
        width: 34px;
        height: 34px;
    }

    .msge-hero,
    .msge-product-hero {
        background-position: 62% center;
    }

    .msge-hero--home {
        height: auto;
        min-height: 520px;
    }

    .msge-hero-copy,
    .msge-product-hero-copy {
        padding-block: 48px;
    }

    .msge-hero h1,
    .msge-product-hero h1,
    .msge-page-hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .msge-hero-lede {
        margin-top: 18px;
        font-size: 17px;
    }

    .msge-hero-disclosure {
        font-size: 13px;
    }

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

    .msge-actions .msge-button {
        width: 100%;
    }

    .msge-section {
        padding-block: 62px;
    }

    .msge-section h2,
    .msge-contact-band h2 {
        font-size: 30px;
    }

    .msge-section-heading--split {
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
    }

    .msge-search-field {
        width: 100%;
    }

    .msge-product-grid,
    .msge-product-grid--compact,
    .msge-topic-grid {
        grid-template-columns: 1fr;
    }

    .msge-product-card {
        min-height: 126px;
        padding: 18px;
    }

    .msge-scope-list > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .msge-contact-band-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .msge-product-hero {
        min-height: 530px;
    }

    .msge-page-hero {
        padding-block: 68px;
    }

    .msge-form-panel,
    .msge-dialog {
        padding: 22px;
    }

    .msge-form-grid {
        grid-template-columns: 1fr;
    }

    .msge-field--wide {
        grid-column: auto;
    }

    .msge-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .msge-form-actions .msge-button {
        width: 100%;
    }

    .msge-footer-grid,
    .msge-footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .msge-help-fab {
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 360px) {
    .msge-hero-copy,
    .msge-product-hero-copy {
        padding-block: 26px;
    }

    .msge-hero h1,
    .msge-product-hero h1,
    .msge-page-hero h1 {
        font-size: 32px;
    }

    .msge-eyebrow {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .msge-hero-lede {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.4;
    }

    .msge-hero-disclosure {
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.4;
    }

    .msge-actions {
        gap: 8px;
        margin-top: 16px;
    }

    .msge-actions .msge-button {
        min-height: 44px;
        padding-block: 9px;
    }

    .msge-safe-note {
        margin-top: 10px;
        font-size: 10px;
    }

    .msge-help-fab {
        width: 50px;
        padding: 10px 13px;
    }

    .msge-help-fab > span:last-child {
        display: none;
    }
}

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

    .msge-body *,
    .msge-body *::before,
    .msge-body *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
