:root {
    color-scheme: light;
    --mh-ink: #241c2f;
    --mh-ink-soft: #4f4658;
    --mh-plum: #51395f;
    --mh-plum-deep: #30233a;
    --mh-rose: #d77b86;
    --mh-rose-soft: #f4d8d5;
    --mh-peach: #f5b5a7;
    --mh-cream: #fffaf5;
    --mh-bone: #f7f2ed;
    --mh-lavender: #f1ecf4;
    --mh-white: #ffffff;
    --mh-line: rgba(36, 28, 47, .14);
    --mh-shadow: 0 24px 70px rgba(42, 30, 50, .14);
    --mh-shadow-soft: 0 14px 40px rgba(42, 30, 50, .09);
    --mh-radius: 24px;
    --mh-radius-lg: 38px;
    --mh-shell: 1220px;
    --mh-serif: Georgia, "Times New Roman", Times, serif;
    --mh-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--mh-ink);
    background: var(--mh-cream);
    font-family: var(--mh-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family: var(--mh-sans);
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .2em;
}

p,
h1,
h2,
h3,
blockquote,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin-bottom: .55em;
    line-height: 1.08;
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--mh-serif);
    font-weight: 400;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(3rem, 6.2vw, 6rem);
}

h2 {
    font-size: clamp(2.3rem, 4.6vw, 4.65rem);
}

h3 {
    font-size: 1.14rem;
    letter-spacing: -.015em;
}

::selection {
    color: var(--mh-white);
    background: var(--mh-plum);
}

:focus-visible {
    outline: 3px solid var(--mh-rose);
    outline-offset: 4px;
}

.mh-skip {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--mh-white);
    background: var(--mh-ink);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

.mh-launch-bar {
    position: relative;
    z-index: 110;
    color: #fff;
    background:
        radial-gradient(circle at 18% 50%, rgba(255, 255, 255, .24), transparent 22%),
        linear-gradient(100deg, #7b255c 0%, #d34f67 48%, #f08a61 100%);
    box-shadow: 0 12px 32px rgba(115, 29, 74, .22);
}

.mh-launch-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 12px;
    padding: 8px 24px;
    font-size: .76rem;
    text-decoration: none;
}

.mh-launch-bar strong {
    font-size: .84rem;
    letter-spacing: .01em;
}

.mh-launch-bar__signal {
    width: 9px;
    height: 9px;
    background: #fff5c9;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 245, 201, .8);
    animation: mh-launch-ping 1.8s ease-out infinite;
}

.mh-launch-bar .mh-countdown {
    min-width: 112px;
    padding: 4px 10px;
    color: #6d214d;
    background: rgba(255, 255, 255, .9);
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    text-align: center;
}

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

.mh-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(36, 28, 47, .08);
    background: rgba(255, 250, 245, .9);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.mh-header__inner {
    display: flex;
    align-items: center;
    min-height: 78px;
    gap: 28px;
}

.mh-brand {
    flex: 0 0 auto;
    border-radius: 12px;
    text-decoration: none;
}

.mh-brand img {
    width: 188px;
    height: auto;
}

.mh-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    margin-left: auto;
}

.mh-nav a,
.mh-signin,
.mh-footer a {
    position: relative;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
}

.mh-nav a::after,
.mh-signin::after,
.mh-footer nav a::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.mh-nav a:hover::after,
.mh-signin:hover::after,
.mh-footer nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mh-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mh-language {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border: 1px solid var(--mh-line);
    border-radius: 999px;
}

.mh-language a {
    min-width: 34px;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.mh-language a[aria-current="page"] {
    color: var(--mh-white);
    background: var(--mh-ink);
}

.mh-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    color: var(--mh-white);
    background: var(--mh-ink);
    border: 1px solid var(--mh-ink);
    border-radius: 999px;
    box-shadow: 0 9px 24px rgba(36, 28, 47, .16);
    font-size: .91rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.mh-button:hover {
    color: var(--mh-white);
    background: var(--mh-plum);
    border-color: var(--mh-plum);
    box-shadow: 0 13px 30px rgba(36, 28, 47, .22);
    transform: translateY(-2px);
}

.mh-button--small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: .78rem;
}

.mh-button--outline {
    color: var(--mh-ink);
    background: transparent;
    border-color: rgba(36, 28, 47, .34);
    box-shadow: none;
}

.mh-button--outline:hover {
    color: var(--mh-white);
}

.mh-button--light {
    color: var(--mh-ink);
    background: var(--mh-white);
    border-color: var(--mh-white);
}

.mh-button--light:hover {
    color: var(--mh-ink);
    background: var(--mh-peach);
    border-color: var(--mh-peach);
}

.mh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-block: 8px;
    color: var(--mh-ink);
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
}

.mh-text-link span {
    transition: transform .2s ease;
}

.mh-text-link:hover span {
    transform: translateX(4px);
}

.mh-text-link--light {
    color: var(--mh-white);
}

.mh-mobile-menu {
    display: none;
    margin-left: auto;
}

.mh-mobile-menu summary {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 13px 11px;
    border: 1px solid var(--mh-line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
}

.mh-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mh-mobile-menu summary span {
    display: block;
    width: 22px;
    height: 2px;
    margin: auto;
    background: var(--mh-ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.mh-mobile-menu[open] summary span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mh-mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
}

.mh-mobile-menu[open] summary span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mh-mobile-menu__panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 18px 24px 24px;
    background: var(--mh-cream);
    border-bottom: 1px solid var(--mh-line);
    box-shadow: var(--mh-shadow-soft);
}

.mh-mobile-menu__panel > a:not(.mh-button) {
    padding: 10px 3px;
    font-size: .95rem;
    font-weight: 750;
    text-decoration: none;
}

.mh-mobile-menu__panel .mh-language {
    width: max-content;
    margin-block: 8px 12px;
}

.mh-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(50px, 7vw, 92px) 0 clamp(64px, 8vw, 110px);
    background:
        radial-gradient(circle at 8% 18%, rgba(245, 181, 167, .22), transparent 26%),
        radial-gradient(circle at 88% 62%, rgba(140, 110, 155, .14), transparent 27%),
        var(--mh-cream);
}

.mh-hero::before {
    position: absolute;
    top: 12%;
    left: -90px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(81, 57, 95, .13);
    border-radius: 50%;
    content: "";
}

.mh-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(400px, .82fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
}

.mh-hero__copy {
    position: relative;
    z-index: 2;
    animation: mh-rise .72s cubic-bezier(.2, .7, .2, 1) both;
}

.mh-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--mh-rose);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.mh-eyebrow::before {
    display: block;
    width: 28px;
    height: 1px;
    content: "";
    background: currentColor;
}

.mh-hero h1 {
    max-width: 820px;
    margin-bottom: 26px;
}

.mh-lead,
.mh-section-lead,
.mh-heading > p:last-child {
    max-width: 690px;
    color: var(--mh-ink-soft);
    font-size: clamp(1rem, 1.5vw, 1.19rem);
    line-height: 1.7;
}

.mh-lead {
    max-width: 680px;
    margin-bottom: 30px;
}

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

.mh-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 18px 0 0;
    color: #6f6575;
    font-size: .78rem;
    line-height: 1.5;
}

.mh-note span {
    color: var(--mh-rose);
    font-size: 1.15rem;
    line-height: 1.15;
}

.mh-hero__media {
    position: relative;
    max-width: 525px;
    justify-self: end;
    animation: mh-reveal .85s .08s cubic-bezier(.2, .7, .2, 1) both;
}

.mh-hero__media picture,
.mh-hero__video {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(36, 28, 47, .1);
    border-radius: 44% 44% 34px 34px;
    box-shadow: var(--mh-shadow);
    background: #ded4d0;
}

.mh-hero__video {
    width: 100%;
    object-fit: cover;
    object-position: 50% 38%;
}

.mh-hero__media picture::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 58%, rgba(36, 28, 47, .18));
}

.mh-hero__media picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 38%;
}

.mh-message-card {
    position: absolute;
    z-index: 3;
    right: -42px;
    bottom: 34px;
    width: min(340px, 79%);
    padding: 17px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(36, 28, 47, .1);
    border-radius: 20px;
    box-shadow: var(--mh-shadow-soft);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    animation: mh-float 5.2s 1s ease-in-out infinite;
}

.mh-message-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mh-message-card__head img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.mh-message-card__head div {
    display: grid;
    margin-right: auto;
    min-width: 0;
}

.mh-message-card__head strong {
    font-size: .76rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.mh-message-card__head span {
    color: #7a707f;
    font-size: .65rem;
}

.mh-message-card__head i {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    background: #62a184;
    border: 2px solid #dff1e7;
    border-radius: 50%;
}

.mh-message-card > p {
    margin: 13px 0 0;
    color: var(--mh-ink);
    font-family: var(--mh-serif);
    font-size: 1rem;
    line-height: 1.45;
}

.mh-message-card__starters {
    display: grid;
    gap: 7px;
    margin-top: 13px;
}

.mh-message-card__starters a {
    display: block;
    padding: 9px 11px;
    color: var(--mh-ink);
    background: rgba(246, 239, 236, .78);
    border: 1px solid rgba(36, 28, 47, .09);
    border-radius: 11px;
    font-size: .7rem;
    font-weight: 720;
    line-height: 1.35;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.mh-message-card__starters a:hover,
.mh-message-card__starters a:focus-visible {
    background: #fff;
    border-color: rgba(184, 103, 113, .45);
    transform: translateX(3px);
}

.mh-orbit {
    position: absolute;
    border: 1px solid rgba(81, 57, 95, .2);
    border-radius: 50%;
    animation: mh-pulse 6s ease-in-out infinite;
}

.mh-orbit--one {
    top: -25px;
    right: -35px;
    width: 106px;
    height: 106px;
}

.mh-orbit--two {
    bottom: -38px;
    left: -42px;
    width: 86px;
    height: 86px;
    animation-delay: -2s;
}

.mh-trust {
    background: var(--mh-white);
    border-block: 1px solid var(--mh-line);
}

.mh-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.mh-trust article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 128px;
    padding: 30px clamp(20px, 3vw, 44px);
    border-right: 1px solid var(--mh-line);
}

.mh-trust article:first-child {
    padding-left: 0;
}

.mh-trust article:last-child {
    padding-right: 0;
    border-right: 0;
}

.mh-trust article > span {
    color: var(--mh-rose);
    font-size: 1.15rem;
}

.mh-trust strong {
    display: block;
    margin-bottom: 5px;
    font-family: var(--mh-serif);
    font-size: 1.15rem;
    font-weight: 400;
}

.mh-trust p {
    margin: 0;
    color: #716878;
    font-size: .79rem;
    line-height: 1.55;
}

.mh-section {
    padding: clamp(78px, 10vw, 138px) 0;
}

.mh-section--lavender {
    background: var(--mh-lavender);
}

.mh-section--rose {
    background: #f8e9e7;
}

.mh-section--ink {
    color: var(--mh-white);
    background:
        radial-gradient(circle at 15% 10%, rgba(215, 123, 134, .2), transparent 25%),
        radial-gradient(circle at 88% 85%, rgba(245, 181, 167, .1), transparent 28%),
        var(--mh-plum-deep);
}

.mh-section--ink .mh-eyebrow {
    color: var(--mh-peach);
}

.mh-heading {
    max-width: 790px;
}

.mh-heading--wide {
    max-width: 920px;
}

.mh-heading > p:last-child {
    margin-bottom: 0;
}

.mh-recognition .mh-heading {
    margin-bottom: 56px;
}

.mh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mh-card {
    min-height: 285px;
    padding: clamp(26px, 3vw, 38px);
    background: rgba(255, 255, 255, .66);
    border: 1px solid var(--mh-line);
    border-radius: var(--mh-radius);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.mh-card:hover {
    border-color: rgba(81, 57, 95, .28);
    box-shadow: var(--mh-shadow-soft);
    transform: translateY(-5px);
}

.mh-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 58px;
    color: var(--mh-plum);
    background: var(--mh-lavender);
    border-radius: 50%;
    font-family: var(--mh-serif);
}

.mh-card h3 {
    font-family: var(--mh-serif);
    font-size: 1.48rem;
    font-weight: 400;
}

.mh-card p {
    margin-bottom: 0;
    color: #6d6473;
    font-size: .9rem;
}

.mh-split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(55px, 8vw, 118px);
}

.mh-split--media-right {
    grid-template-columns: minmax(0, 1.06fr) minmax(380px, .84fr);
}

.mh-steps {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 38px 0 0;
    list-style: none;
}

.mh-steps li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(36, 28, 47, .13);
}

.mh-steps li:last-child {
    border-bottom: 1px solid rgba(36, 28, 47, .13);
}

.mh-steps li > span {
    color: var(--mh-rose);
    font-family: var(--mh-serif);
    font-size: 1.1rem;
}

.mh-steps h3 {
    margin-bottom: 7px;
    font-family: var(--mh-serif);
    font-size: 1.27rem;
    font-weight: 400;
}

.mh-steps p {
    margin-bottom: 0;
    color: #6f6575;
    font-size: .87rem;
}

.mh-chat-figure {
    position: relative;
    width: min(100%, 525px);
    margin: 0;
    justify-self: end;
}

.mh-chat-figure picture,
.mh-framed-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #d9d0cc;
    border-radius: var(--mh-radius-lg);
    box-shadow: var(--mh-shadow);
}

.mh-chat-figure picture img,
.mh-framed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.mh-chat-figure:hover picture img,
.mh-framed-image:hover img {
    transform: scale(1.025);
}

.mh-chat-figure picture img {
    object-position: 50% 42%;
}

.mh-chat-preview {
    position: absolute;
    right: -38px;
    bottom: 30px;
    width: min(360px, 88%);
    padding: 18px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--mh-line);
    border-radius: 20px;
    box-shadow: var(--mh-shadow-soft);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.mh-chat-preview > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--mh-rose);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mh-chat-preview p {
    max-width: 92%;
    margin-bottom: 9px;
    padding: 10px 12px;
    border-radius: 13px;
    font-size: .75rem;
    line-height: 1.45;
}

.mh-chat-preview__user {
    margin-left: auto;
    background: var(--mh-lavender);
    border-bottom-right-radius: 3px !important;
}

.mh-chat-preview__margo {
    margin-bottom: 0 !important;
    color: var(--mh-white);
    background: var(--mh-plum);
    border-bottom-left-radius: 3px !important;
}

.mh-framed-image {
    width: min(100%, 530px);
    margin: 0;
}

.mh-framed-image--soft {
    border-radius: 42% 42% 28px 28px;
}

.mh-framed-image--soft img {
    object-position: 50% 40%;
}

.mh-feature-list {
    display: grid;
    gap: 0;
    margin-top: 38px;
}

.mh-feature-list article {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--mh-line);
}

.mh-feature-list article:last-child {
    border-bottom: 1px solid var(--mh-line);
}

.mh-feature-list article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--mh-plum);
    background: var(--mh-rose-soft);
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 850;
}

.mh-feature-list h3 {
    margin-bottom: 6px;
    font-family: var(--mh-serif);
    font-size: 1.2rem;
    font-weight: 400;
}

.mh-feature-list p {
    margin-bottom: 0;
    color: #6d6473;
    font-size: .86rem;
}

.mh-about__copy > p:not(.mh-eyebrow) {
    color: rgba(255, 255, 255, .74);
    font-size: 1rem;
}

.mh-about blockquote {
    position: relative;
    margin: 34px 0 26px;
    padding: 20px 0 20px 28px;
    color: var(--mh-white);
    border-left: 2px solid var(--mh-peach);
    font-family: var(--mh-serif);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.35;
}

.mh-disclosure {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    font-size: .69rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mh-disclosure i {
    width: 8px;
    height: 8px;
    background: var(--mh-peach);
    border-radius: 50%;
}

.mh-framed-image--portrait {
    border: 1px solid rgba(255, 255, 255, .13);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.mh-framed-image--portrait img {
    object-position: 55% 35%;
}

.mh-human .mh-framed-image {
    justify-self: start;
}

.mh-framed-image--story {
    aspect-ratio: 5 / 6;
    border-radius: 40% 40% 30px 30px;
}

.mh-framed-image--story img {
    object-position: 50% 34%;
}

.mh-bullet-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 30px 0 24px;
    list-style: none;
}

.mh-bullet-list li {
    position: relative;
    padding-left: 24px;
    color: var(--mh-ink-soft);
    font-size: .9rem;
}

.mh-bullet-list li::before {
    position: absolute;
    top: .67em;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--mh-rose);
    border-radius: 50%;
}

.mh-privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin: 35px 0 28px;
}

.mh-privacy-grid article {
    padding: 20px;
    background: rgba(255, 255, 255, .52);
    border: 1px solid rgba(81, 57, 95, .12);
    border-radius: 18px;
}

.mh-privacy-grid h3 {
    margin-bottom: 7px;
    font-family: var(--mh-serif);
    font-size: 1.04rem;
    font-weight: 400;
}

.mh-privacy-grid p {
    margin-bottom: 0;
    color: #6d626e;
    font-size: .76rem;
}

.mh-safety-note {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    margin: 0 0 18px;
    padding: 14px 16px;
    color: #5d3840;
    background: rgba(255, 255, 255, .58);
    border-radius: 14px;
    font-size: .73rem;
    line-height: 1.55;
}

.mh-safety-note strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--mh-white);
    background: #9d5661;
    border-radius: 50%;
}

.mh-framed-image--privacy {
    border-radius: var(--mh-radius-lg) var(--mh-radius-lg) 46% 46%;
}

.mh-framed-image--privacy img {
    object-position: 55% 35%;
}

.mh-pricing {
    overflow: hidden;
}

.mh-pricing__intro {
    display: grid;
    grid-template-columns: 1fr 230px;
    align-items: end;
    gap: 50px;
    margin-bottom: 58px;
}

.mh-pricing__intro picture {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 100px 100px 20px 20px;
    box-shadow: var(--mh-shadow-soft);
}

.mh-pricing__intro picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}

.mh-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
}

.mh-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 30px 24px 24px;
    background: var(--mh-white);
    border: 1px solid var(--mh-line);
    border-radius: var(--mh-radius);
    box-shadow: 0 10px 28px rgba(42, 30, 50, .06);
}

.mh-plan--featured {
    color: var(--mh-white);
    background: var(--mh-plum-deep);
    border-color: var(--mh-plum-deep);
    box-shadow: 0 24px 58px rgba(48, 35, 58, .24);
    transform: translateY(-12px);
}

.mh-plan--launch {
    color: var(--mh-white);
    background:
        radial-gradient(circle at 100% 0, rgba(245, 181, 167, .34), transparent 32%),
        linear-gradient(155deg, #4e244d 0%, #7d2f59 58%, #a8445b 100%);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: 0 28px 70px rgba(109, 33, 77, .3);
    transform: translateY(-12px);
    animation: mh-launch-glow 2.8s ease-in-out infinite;
}

.mh-plan--launch::after {
    position: absolute;
    inset: 8px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: calc(var(--mh-radius) - 7px);
}

.mh-plan__badge--launch {
    color: #5f2147;
    background: linear-gradient(90deg, #fff2b6, #ffc0a6);
    box-shadow: 0 10px 24px rgba(54, 16, 42, .22);
}

.mh-plan__launch-price {
    margin-bottom: 18px;
}

.mh-plan__launch-price del {
    display: block;
    width: fit-content;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .58);
    font-family: var(--mh-serif);
    font-size: 1.35rem;
    text-decoration-color: #ffd270;
    text-decoration-thickness: 2px;
}

.mh-plan__launch-price .mh-plan__price {
    margin-bottom: 8px;
}

.mh-plan__launch-price .mh-plan__price strong {
    color: #fff6d4;
    font-size: 3.15rem;
}

.mh-plan__launch-price .mh-plan__price span,
.mh-plan__launch-price > p,
.mh-plan--launch .mh-plan__summary,
.mh-plan--launch li {
    color: rgba(255, 255, 255, .78);
}

.mh-plan__launch-price > p {
    margin-bottom: 14px;
    font-size: .72rem;
    line-height: 1.45;
}

.mh-plan__timer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    background: rgba(24, 8, 24, .28);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    font-size: .63rem;
}

.mh-plan__timer strong {
    color: #fff3b5;
    font-variant-numeric: tabular-nums;
    font-size: .72rem;
    white-space: nowrap;
}

/* Keep the regular Personal card styling while the launch price is active. */
.mh-plan--promo .mh-plan__launch-price del {
    color: #746a78;
    text-decoration-color: var(--mh-coral);
}

.mh-plan--promo .mh-plan__launch-price .mh-plan__price strong {
    color: var(--mh-plum-deep);
}

.mh-plan--promo .mh-plan__launch-price .mh-plan__price span,
.mh-plan--promo .mh-plan__launch-price > p {
    color: #746a78;
}

.mh-plan--promo .mh-plan__timer {
    color: #746a78;
    background: #fff8f4;
    border-color: rgba(111, 68, 91, .18);
}

.mh-plan--promo .mh-plan__timer strong {
    color: var(--mh-plum-deep);
}

.mh-plan--launch li::before {
    color: #ffd584;
}

.mh-plan--launch .mh-plan__includes {
    color: #fff8e8;
    font-size: .78rem;
    letter-spacing: .01em;
}

.mh-plan--launch ul {
    gap: 12px;
    padding: 16px 15px;
    background: rgba(27, 8, 29, .34);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.mh-plan--launch li {
    color: #fffaf2;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.55;
    text-shadow: 0 1px 1px rgba(24, 7, 25, .22);
}

.mh-plan--launch .mh-button {
    position: relative;
    z-index: 1;
    color: #5f2147;
    background: linear-gradient(90deg, #fff1b3, #ffc0a6);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(27, 5, 22, .24);
}

.mh-plan--launch .mh-button:hover {
    background: #fff8dc;
    border-color: transparent;
    transform: translateY(-2px);
}

.mh-plan__badge {
    position: absolute;
    top: -14px;
    left: 24px;
    padding: 7px 12px;
    color: var(--mh-ink);
    background: var(--mh-peach);
    border-radius: 999px;
    font-size: .63rem;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mh-plan h3 {
    margin-bottom: 13px;
    font-family: var(--mh-serif);
    font-size: 1.58rem;
    font-weight: 400;
}

.mh-plan__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 18px;
}

.mh-plan__price strong {
    font-family: var(--mh-serif);
    font-size: 2.65rem;
    font-weight: 400;
    line-height: 1;
}

.mh-plan__price span {
    color: #746a78;
    font-size: .72rem;
}

.mh-plan--featured .mh-plan__price span,
.mh-plan--featured .mh-plan__summary,
.mh-plan--featured li {
    color: rgba(255, 255, 255, .72);
}

.mh-plan__summary {
    min-height: 86px;
    margin-bottom: 22px;
    color: #6f6674;
    font-size: .8rem;
}

.mh-plan__includes {
    margin-bottom: 12px;
    font-size: .72rem;
    font-weight: 800;
}

.mh-plan ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.mh-plan li {
    position: relative;
    padding-left: 20px;
    color: #665d6b;
    font-size: .74rem;
    line-height: 1.5;
}

.mh-plan--featured li {
    color: rgba(255, 255, 255, .76);
}

.mh-plan li::before {
    position: absolute;
    top: .15em;
    left: 0;
    content: "✓";
    color: var(--mh-rose);
    font-weight: 900;
}

.mh-plan--featured li::before {
    color: var(--mh-peach);
}

.mh-plan .mh-button {
    width: 100%;
    margin-top: auto;
    padding-inline: 14px;
    font-size: .78rem;
}

.mh-plan--featured .mh-button {
    color: var(--mh-ink);
    background: var(--mh-white);
    border-color: var(--mh-white);
}

.mh-plan--featured .mh-button:hover {
    background: var(--mh-peach);
    border-color: var(--mh-peach);
}

.mh-pricing__note {
    max-width: 900px;
    margin: 34px auto 0;
    color: #756c79;
    font-size: .73rem;
    text-align: center;
}

.mh-faq__layout {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(50px, 9vw, 130px);
}

.mh-faq .mh-heading {
    position: sticky;
    top: 120px;
}

.mh-accordion details {
    border-top: 1px solid rgba(36, 28, 47, .16);
}

.mh-accordion details:last-child {
    border-bottom: 1px solid rgba(36, 28, 47, .16);
}

.mh-accordion summary {
    position: relative;
    padding: 24px 50px 24px 0;
    cursor: pointer;
    font-family: var(--mh-serif);
    font-size: 1.18rem;
    line-height: 1.35;
    list-style: none;
}

.mh-accordion summary::-webkit-details-marker {
    display: none;
}

.mh-accordion summary span {
    position: absolute;
    top: 50%;
    right: 3px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(36, 28, 47, .28);
    border-radius: 50%;
    transform: translateY(-50%);
}

.mh-accordion summary span::before,
.mh-accordion summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    content: "";
    background: var(--mh-ink);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.mh-accordion summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.mh-accordion details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.mh-accordion details > div {
    overflow: hidden;
}

.mh-accordion details p {
    max-width: 720px;
    margin-bottom: 25px;
    padding-right: 35px;
    color: #675e6c;
    font-size: .9rem;
}

.mh-final {
    padding: clamp(42px, 6vw, 80px) 0;
    background: var(--mh-bone);
}

.mh-final__card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .52fr);
    align-items: center;
    gap: clamp(30px, 6vw, 84px);
    overflow: hidden;
    min-height: 510px;
    padding: clamp(38px, 6vw, 78px);
    padding-right: 0;
    color: var(--mh-white);
    background:
        radial-gradient(circle at 12% 8%, rgba(215, 123, 134, .28), transparent 26%),
        var(--mh-plum-deep);
    border-radius: var(--mh-radius-lg);
    box-shadow: var(--mh-shadow);
}

.mh-final .mh-eyebrow {
    color: var(--mh-peach);
}

.mh-final h2 {
    max-width: 720px;
}

.mh-final__card > div > p:not(.mh-eyebrow) {
    max-width: 600px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
}

.mh-final picture {
    align-self: stretch;
    overflow: hidden;
    min-height: 440px;
    border-radius: 220px 0 0 220px;
}

.mh-final picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}

.mh-footer {
    padding: 55px 0 24px;
    background: var(--mh-cream);
}

.mh-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 45px;
    padding-bottom: 42px;
}

.mh-footer__top > div {
    max-width: 440px;
}

.mh-footer__top img {
    width: 188px;
    margin-bottom: 18px;
}

.mh-footer__top p {
    margin-bottom: 0;
    color: #706775;
    font-size: .8rem;
}

.mh-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 30px;
}

.mh-footer__bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--mh-line);
}

.mh-footer__bottom p {
    margin: 0;
    color: #817783;
    font-size: .67rem;
}

.mh-footer__bottom p:last-child {
    max-width: 800px;
    justify-self: end;
    text-align: right;
}

.mh-mobile-cta {
    display: none;
}

.mh-mobile-cta[hidden] {
    display: none;
}

.mh-modal-open {
    overflow: hidden;
}

.mh-exit-offer[hidden] {
    display: none;
}

.mh-exit-offer {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.mh-exit-offer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(24, 14, 29, .74);
    border: 0;
    cursor: default;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.mh-exit-offer__card {
    position: relative;
    z-index: 1;
    width: min(100%, 660px);
    padding: clamp(32px, 6vw, 62px);
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0, rgba(239, 138, 97, .3), transparent 34%),
        var(--mh-cream);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 34px;
    box-shadow: 0 42px 120px rgba(18, 7, 21, .48);
    animation: mh-exit-in .38s cubic-bezier(.2, .8, .2, 1) both;
}

.mh-exit-offer__card h2 {
    max-width: 540px;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.mh-exit-offer__card > p:not(.mh-eyebrow) {
    max-width: 520px;
    color: #665c6a;
}

.mh-exit-offer__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--mh-ink);
    background: rgba(255, 255, 255, .68);
    border: 1px solid var(--mh-line);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.mh-exit-offer .mh-actions {
    margin-top: 30px;
}

@keyframes mh-rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mh-reveal {
    from { opacity: 0; clip-path: inset(0 0 100% 0 round 44% 44% 34px 34px); transform: translateY(14px); }
    to { opacity: 1; clip-path: inset(0 0 0 0 round 44% 44% 34px 34px); transform: translateY(0); }
}

@keyframes mh-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes mh-pulse {
    0%, 100% { opacity: .55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes mh-launch-ping {
    0% { box-shadow: 0 0 0 0 rgba(255, 245, 201, .78); }
    70%, 100% { box-shadow: 0 0 0 10px rgba(255, 245, 201, 0); }
}

@keyframes mh-launch-glow {
    0%, 100% { box-shadow: 0 28px 70px rgba(109, 33, 77, .3); }
    50% { box-shadow: 0 30px 82px rgba(211, 79, 103, .42); }
}

@keyframes mh-exit-in {
    from { opacity: 0; transform: translateY(24px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1160px) {
    .mh-header__inner {
        gap: 18px;
    }

    .mh-brand img {
        width: 164px;
    }

    .mh-nav {
        gap: 16px;
    }

    .mh-header__actions {
        gap: 11px;
    }

    .mh-language {
        display: none;
    }

    .mh-plan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .mh-plan {
        min-height: 520px;
    }

    .mh-plan--featured {
        transform: none;
    }

    .mh-plan--launch {
        transform: none;
    }
}

@media (max-width: 940px) {
    .mh-nav,
    .mh-header__actions {
        display: none;
    }

    .mh-mobile-menu {
        display: block;
    }

    .mh-mobile-menu .mh-language {
        display: inline-flex;
    }

    .mh-hero__grid {
        grid-template-columns: 1fr minmax(330px, .7fr);
        gap: 38px;
    }

    .mh-hero h1 {
        font-size: clamp(3rem, 7.8vw, 5rem);
    }

    .mh-message-card {
        right: -12px;
        bottom: 22px;
    }

    .mh-split,
    .mh-split--media-right {
        grid-template-columns: minmax(0, .9fr) minmax(330px, .8fr);
        gap: 48px;
    }

    .mh-chat-preview {
        right: -10px;
    }

    .mh-privacy-grid {
        grid-template-columns: 1fr;
    }

    .mh-final__card {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 760px) {
    .mh-launch-bar a {
        flex-wrap: wrap;
        gap: 3px 9px;
        padding-block: 7px;
        text-align: center;
    }

    .mh-launch-bar strong {
        width: calc(100% - 22px);
    }

    .mh-launch-bar .mh-countdown {
        margin-left: 4px;
    }

    .mh-exit-offer {
        align-items: end;
        padding: 10px;
    }

    .mh-exit-offer__card {
        padding: 42px 24px 28px;
        border-radius: 28px;
    }

    .mh-exit-offer .mh-actions {
        display: grid;
    }

    html {
        scroll-padding-top: 78px;
    }

    body {
        padding-bottom: 72px;
    }

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

    .mh-header__inner {
        min-height: 68px;
    }

    .mh-brand img {
        width: 156px;
    }

    .mh-hero {
        padding-top: 38px;
    }

    .mh-hero__grid,
    .mh-split,
    .mh-split--media-right,
    .mh-faq__layout,
    .mh-final__card {
        grid-template-columns: 1fr;
    }

    .mh-hero__copy {
        max-width: 650px;
    }

    .mh-hero h1 {
        font-size: clamp(2.9rem, 13vw, 4.6rem);
    }

    .mh-hero__media {
        width: min(92%, 520px);
        margin: 14px auto 0;
        justify-self: center;
    }

    .mh-message-card {
        right: -6%;
        width: min(300px, 80%);
    }

    .mh-trust__grid,
    .mh-card-grid {
        grid-template-columns: 1fr;
    }

    .mh-trust article,
    .mh-trust article:first-child,
    .mh-trust article:last-child {
        min-height: auto;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--mh-line);
    }

    .mh-trust article:last-child {
        border-bottom: 0;
    }

    .mh-card {
        min-height: auto;
    }

    .mh-card__number {
        margin-bottom: 35px;
    }

    .mh-chat-figure,
    .mh-framed-image {
        width: min(92%, 520px);
        margin-inline: auto;
        justify-self: center;
    }

    .mh-how__copy,
    .mh-about__copy,
    .mh-privacy > .mh-shell > div:first-child {
        order: -1;
    }

    .mh-chat-figure,
    .mh-split--media-right > .mh-framed-image {
        order: 2;
    }

    .mh-chat-preview {
        right: -5%;
    }

    .mh-pricing__intro {
        grid-template-columns: 1fr 150px;
        gap: 24px;
    }

    .mh-plan-grid {
        grid-template-columns: 1fr;
    }

    .mh-plan {
        min-height: auto;
    }

    .mh-plan__summary {
        min-height: auto;
    }

    .mh-faq .mh-heading {
        position: static;
    }

    .mh-final__card {
        padding: 45px 32px 0;
    }

    .mh-final picture {
        min-height: 390px;
        margin-top: 15px;
        border-radius: 200px 200px 0 0;
    }

    .mh-footer__top,
    .mh-footer__bottom {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mh-footer nav {
        justify-content: flex-start;
    }

    .mh-footer__bottom p:last-child {
        justify-self: start;
        text-align: left;
    }

    .mh-mobile-cta {
        position: fixed;
        z-index: 90;
        right: 12px;
        bottom: 10px;
        left: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 54px;
        padding: 12px 20px;
        color: var(--mh-white);
        background: var(--mh-ink);
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 999px;
        box-shadow: 0 15px 42px rgba(36, 28, 47, .3);
        font-size: .85rem;
        font-weight: 850;
        text-decoration: none;
    }
}

@media (max-width: 520px) {
    .mh-hero h1 {
        font-size: clamp(2.55rem, 11.2vw, 3.25rem);
    }

    h2 {
        font-size: clamp(2.15rem, 11.5vw, 3.25rem);
    }

    .mh-section {
        padding-block: 78px;
    }

    .mh-eyebrow {
        font-size: .66rem;
        letter-spacing: .1em;
    }

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

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

    .mh-text-link {
        justify-content: center;
    }

    .mh-hero__media {
        width: 100%;
        padding-bottom: 78px;
    }

    .mh-hero__media picture,
    .mh-hero__video {
        border-radius: 42% 42% 26px 26px;
    }

    .mh-message-card {
        right: 12px;
        bottom: 18px;
        left: 12px;
        width: auto;
    }

    .mh-orbit {
        display: none;
    }

    .mh-card {
        padding: 27px;
    }

    .mh-chat-figure,
    .mh-framed-image {
        width: 100%;
    }

    .mh-chat-figure {
        padding-bottom: 120px;
    }

    .mh-chat-preview {
        right: 12px;
        bottom: 0;
        left: 12px;
        width: auto;
    }

    .mh-steps li {
        grid-template-columns: 34px 1fr;
        gap: 10px;
    }

    .mh-privacy-grid {
        gap: 10px;
    }

    .mh-pricing__intro {
        grid-template-columns: 1fr;
    }

    .mh-pricing__intro picture {
        width: 130px;
        justify-self: end;
        margin-top: -30px;
    }

    .mh-plan {
        padding: 28px 22px 22px;
    }

    .mh-accordion summary {
        font-size: 1.08rem;
    }

    .mh-final__card {
        width: calc(100% - 20px);
        padding: 40px 22px 0;
        border-radius: 28px;
    }

    .mh-final picture {
        min-height: 330px;
    }

    .mh-footer nav {
        display: grid;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    .mh-header,
    .mh-mobile-cta,
    .mh-actions,
    .mh-mobile-menu {
        display: none !important;
    }

    body {
        padding: 0;
        color: #000;
        background: #fff;
    }

    .mh-section,
    .mh-hero {
        padding-block: 40px;
        break-inside: avoid;
    }

    .mh-section--ink,
    .mh-final__card {
        color: #000;
        background: #fff;
        box-shadow: none;
    }
}

.mh-support-invite {
    padding-top: 28px;
}

.mh-support-invite__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--mh-line);
    border-radius: var(--mh-radius-lg);
    background: rgba(255, 255, 255, .68);
    box-shadow: var(--mh-shadow-soft);
}

.mh-support-invite__card h2 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.mh-support-invite__card p {
    max-width: 690px;
    margin-bottom: 8px;
    color: var(--mh-ink-soft);
}

.mh-support-invite__card small {
    color: var(--mh-ink-soft);
}

.mh-support-invite__card .mh-button {
    flex: 0 0 auto;
}

.mh-support-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 20%, rgba(215, 123, 134, .18), transparent 33%),
        radial-gradient(circle at 88% 78%, rgba(81, 57, 95, .14), transparent 36%),
        var(--mh-cream);
}

.mh-support-main {
    padding: clamp(48px, 8vw, 110px) 0;
}

.mh-support-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid var(--mh-line);
    border-radius: var(--mh-radius-lg);
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--mh-shadow);
}

.mh-support-card__copy {
    align-self: center;
    padding: clamp(34px, 6vw, 78px);
}

.mh-support-card__copy h1 {
    max-width: 760px;
    font-size: clamp(2.6rem, 5.4vw, 5rem);
}

.mh-support-card__copy .mh-section-lead {
    max-width: 720px;
}

.mh-support-card__media,
.mh-support-card__media img {
    width: 100%;
    height: 100%;
}

.mh-support-card__media img {
    object-fit: cover;
    object-position: center 25%;
}

.mh-support-form {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.mh-support-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.mh-support-form legend,
.mh-support-custom > span {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.mh-support-presets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mh-support-presets label {
    position: relative;
    cursor: pointer;
}

.mh-support-presets input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mh-support-presets span {
    display: grid;
    min-height: 62px;
    place-items: center;
    border: 1px solid var(--mh-line);
    border-radius: 18px;
    background: var(--mh-white);
    font-size: 1.18rem;
    font-weight: 800;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.mh-support-presets input:checked + span {
    border-color: var(--mh-plum);
    color: var(--mh-white);
    background: var(--mh-plum);
    transform: translateY(-2px);
}

.mh-support-presets input:focus-visible + span {
    outline: 3px solid rgba(215, 123, 134, .35);
    outline-offset: 3px;
}

.mh-support-custom input {
    width: 100%;
    min-height: 56px;
    padding: 12px 16px;
    border: 1px solid var(--mh-line);
    border-radius: 16px;
    color: var(--mh-ink);
    background: var(--mh-white);
    font-size: 1.05rem;
}

.mh-support-legal {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--mh-ink-soft);
    font-size: .86rem;
    line-height: 1.55;
}

.mh-support-notice,
.mh-support-receipt {
    margin: 24px 0;
    padding: 16px 18px;
    border: 1px solid rgba(81, 57, 95, .18);
    border-radius: 16px;
    background: var(--mh-lavender);
}

.mh-support-notice--error {
    border-color: rgba(166, 45, 65, .26);
    color: #762638;
    background: #fff0f1;
}

.mh-support-receipt {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
}

.mh-support-receipt strong {
    font-family: var(--mh-serif);
    font-size: 2rem;
}

.mh-support-receipt span {
    color: var(--mh-ink-soft);
    font-size: .86rem;
}

@media (max-width: 820px) {
    .mh-support-invite__card {
        align-items: flex-start;
        flex-direction: column;
    }

    .mh-support-card {
        grid-template-columns: 1fr;
    }

    .mh-support-card__media {
        max-height: 520px;
        order: -1;
    }
}

@media (max-width: 560px) {
    .mh-support-main {
        padding: 18px 10px 50px;
    }

    .mh-support-card {
        border-radius: 28px;
    }

    .mh-support-card__copy {
        padding: 30px 22px 38px;
    }

    .mh-support-card__media {
        max-height: 360px;
    }

    .mh-support-presets {
        grid-template-columns: 1fr;
    }

    .mh-support-receipt {
        align-items: flex-start;
        flex-direction: column;
    }
}
