/* ==========================================================================
   MT Overview – mt-overview.css
   Follows the same structure / conventions as whats-new.css:
   · Hardcoded brand colours (no CSS custom props here)
   · clamp() for all fluid sizes
   · Responsive breakpoints at the bottom
   · .realm--glitch / .realm--arcade overrides at the bottom
   ========================================================================== */

/* ── Page wrapper ─────────────────────────────────────────────────────────── */
.mto-wrapper {
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    width: 100%;
    font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
    overflow-x: hidden;
    color: #18102e;
}

/* ── Typography utilities ─────────────────────────────────────────────────── */
.text-accent {
    color: #7139D1;
}

.mto-eyebrow {
    font-size: clamp(0.625rem, 0.9vw, 0.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #7139D1;
    margin-bottom: 0.625rem;
}

.mto-section-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.625rem);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    color: #18102e;
}

/* ── Primary CTA button ───────────────────────────────────────────────────── */
.btn-mto-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7139D1 0%, #9b7ff7 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: clamp(0.7rem, 1.2vw, 0.9375rem) clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 600;
    font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
    line-height: 1;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    box-shadow: 0 4px 24px rgba(113, 57, 209, 0.28);
    white-space: nowrap;
}

.btn-mto-primary:hover,
.btn-mto-primary:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #5b28b3 0%, #7139D1 100%);
    box-shadow: 0 8px 32px rgba(113, 57, 209, 0.38);
    transform: translateY(-2px);
    text-decoration: none;
}

.mto-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

/* ── Hero section ─────────────────────────────────────────────────────────── */
.mto-hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: clamp(6rem, 12vw, 10rem) 0 clamp(1.5rem, 3vw, 2.5rem); /* Tighter bottom spacing for cohesive rhythm */
    background: transparent;
}

/* Dedicated shared continuous background plate covering both Hero and Experience sections */
.mto-hero-experience-wrapper {
    background-color: #fcfbfe;
}

.mto-hero-experience-wrapper .mto-hero__bg-plate {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.57;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 28.08%, #FFF 99.94%), url('../images/hero-light.png') lightgray 0px 0px / 100% 142.892% no-repeat;
    z-index: 0;
    pointer-events: none;
}



.mto-hero__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.75rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.12;
    /* Verbatim 112% mapping */
    color: #030303;
    position: relative;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    z-index: 2;
}

.mto-hero__heading .text-accent {
    color: #7139D1;
    font-weight: 600;
}

.mto-hero__subheading-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    z-index: 2;
    position: relative;
}

.mto-hero__subheading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    max-width: 64.10769rem;
    min-height: clamp(4.5rem, 8vw, 8.93006rem);
    /* Verbatim dimensional footprint ceilings */
    width: 100%;

    /* Dual linear gradient backgrounds mapping exactly to Inspector selection tokens */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.43) 0%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(102deg, rgba(227, 210, 255, 0.43) 0%, rgba(185, 152, 244, 0) 100%);
    border: 1px solid rgba(227, 210, 255, 0.65);
    border-radius: 1rem;
    padding: clamp(0.65rem, 1.2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);

    font-size: clamp(1.15rem, 2.5vw, 1.875rem);
    /* Verbatim 1.875rem typography size token */
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    /* Literal 150% line-height */
    color: #000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(113, 57, 209, 0.06);
    margin: 0;
}

.mto-hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Outlined CTA Button mapped verbatim to theme-light hero layout specification */
.btn-hero-dungeon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 100px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
    border: none;
    position: relative;
    height: 5.375rem;
    /* Directly implements literal Figma layer height token */
    max-width: 22.375rem;
    /* Directly implements literal Figma layer width token */
    width: 100%;
    margin: 0 auto;
    padding: 0.625rem 0.6875rem 0.625rem 1.625rem;
    /* Direct Figma layout code mapping */
    gap: 0.9375rem;
    /* Literal Figma gap token */
    color: #003;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2vw, 26px);
    font-weight: 600;
    outline: none;
    text-decoration: none;
    transition: background .45s ease, filter .45s ease, transform .45s ease, padding .45s ease, justify-content .45s ease;
    z-index: 1;
}

/* Outer pill gradient border mask overlay restores the full bounding capsule border */

.btn-hero-dungeon:before {
    background: linear-gradient(90deg, #7f00ff, #f0f);
    border-radius: 100px;
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    pointer-events: none;
    position: absolute;
    transition: filter .45s ease;
}

.btn-hero-dungeon .btn-text {
    white-space: nowrap;
    font-size: 27px;
    margin-left: 0;
    /* Directly maps Figma inspect start offset adhering to parent left padding */
    padding-right: clamp(75px, 9vw, 95px);
    /* Bulletproof inner clearance avoiding absolute icon overlap */
    transition: padding .45s cubic-bezier(0.4, 0, 0.2, 1), margin .45s cubic-bezier(0.4, 0, 0.2, 1), transform .45s ease;
    z-index: 1;
}



.btn-hero-dungeon .icon {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    position: absolute;
    right: 0.6875rem;
    /* Anchors vector ring flush precisely inside the right padding boundary */
    top: 50%;
    transform: translateY(-50%);
    transition: right .45s cubic-bezier(.4, 0, .2, 1);
    width: 66px;
    /* Flawless content box fit inside 5.375rem height minus padding */
    height: 66px;
    border-radius: 50%;
}


.btn-hero-dungeon .icon:before {
    /* background: linear-gradient(135deg, #7f00ff, #f0f); background is not needed */
    border-radius: 50%;
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    pointer-events: none;
    position: absolute;
}


.btn-hero-dungeon .icon:after {
    background: linear-gradient(90deg, #7f00ff, #f0f);
    content: "";
    inset: 0;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzciIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA3NyA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9Ijc0LjM4MjciIGhlaWdodD0iNzQuMzgyNyIgcng9IjM3LjE5MTQiIHN0cm9rZT0idXJsKCNwYWludDBfbGluZWFyXzExMTVfMjI0OTkpIiBzdHJva2Utd2lkdGg9IjIiLz4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzExMTVfMjI0OTkpIj4KPHBhdGggZD0iTTI1LjQ1NDEgNTMuNDM5OUw1MC43Mjk5IDI1Ljk2NzUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi4wMDkzMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CjxwYXRoIGQ9Ik0yNi4xMDg0IDI3LjA5NTdMNTAuNzE4OSAyNS45NTUyTDUxLjY1MjUgNTAuNTk3NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjAwOTMxIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9nPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzExMTVfMjI0OTkiIHgxPSIyMC4xNDU4IiB5MT0iNS45NTExNyIgeDI9IjY4LjMxMzkiIHkyPSI5LjAxNTE0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiM3MTM5RDEiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkQ0MUVDIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMTExNV8yMjQ5OSI+CjxyZWN0IHdpZHRoPSI1Mi40OTQ3IiBoZWlnaHQ9IjUxLjA3NTkiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMS45NDQzIDEyLjY1MzMpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzciIGhlaWdodD0iNzciIHZpZXdCb3g9IjAgMCA3NyA3NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9Ijc0LjM4MjciIGhlaWdodD0iNzQuMzgyNyIgcng9IjM3LjE5MTQiIHN0cm9rZT0idXJsKCNwYWludDBfbGluZWFyXzExMTVfMjI0OTkpIiBzdHJva2Utd2lkdGg9IjIiLz4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzExMTVfMjI0OTkpIj4KPHBhdGggZD0iTTI1LjQ1NDEgNTMuNDM5OUw1MC43Mjk5IDI1Ljk2NzUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi4wMDkzMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CjxwYXRoIGQ9Ik0yNi4xMDg0IDI3LjA5NTdMNTAuNzE4OSAyNS45NTUyTDUxLjY1MjUgNTAuNTk3NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjAwOTMxIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9nPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzExMTVfMjI0OTkiIHgxPSIyMC4xNDU4IiB5MT0iNS45NTExNyIgeDI9IjY4LjMxMzkiIHkyPSI5LjAxNTE0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiM3MTM5RDEiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkQ0MUVDIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMTExNV8yMjQ5OSI+CjxyZWN0IHdpZHRoPSI1Mi40OTQ3IiBoZWlnaHQ9IjUxLjA3NTkiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMS45NDQzIDEyLjY1MzMpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    opacity: 0;
    position: absolute;
    transition: opacity .45s ease;
}


.btn-hero-dungeon .icon img {
    display: block;
    height: 66px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: opacity .45s ease;
    width: 66px;
}

/* Actuated Micro-interactions mapped verbatim to staging payload */

.btn-hero-dungeon:hover {
    background: #fff !important;
    filter: drop-shadow(0 0 18px rgba(127, 0, 255, 0.45)) !important;
    transform: translateY(-2px);
    justify-content: center !important;
    padding: 0 28px !important;
}



.btn-hero-dungeon:hover .btn-text {
    margin-left: 0;
    margin-right: 15px;
    padding-left: clamp(50px, 7vw, 90px);
    padding-right: 0;
    color: #f0f !important;
}




.btn-hero-dungeon:hover .icon {
    left: 12px;
}


.btn-hero-dungeon:hover .icon:after {
    opacity: 1;
}


.btn-hero-dungeon:hover .icon img {
    opacity: 0;
}

.mto-hero__cta-subtext {
    color: #858383;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.5rem); /* Direct mapping to literal Figma token */
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* Literal 150% line-height */
    margin-top: 1rem;
    margin-bottom: 0;
}



/* ── Experience section ───────────────────────────────────────────────────── */
.mto-experience {
    padding-top: 0;
    background: transparent;
    margin-top:-2px;
}

.mto-exp-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.84;
    letter-spacing: 0.16rem;
    color: #000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.mto-exp-main-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.625rem);
    font-weight: 500;
    line-height: 1.22;
    color: #7139D1;
    margin-top: 0;
    margin-bottom: clamp(2.5rem, 5vw, 4.42rem);
}


/* ── Experience cards ─────────────────────────────────────────────────────── */
.mto-exp-card {
    border-radius: clamp(1.25rem, 3vw, 2.5rem);
    height: clamp(280px, 32vw, 410px);
    background: #F7F2FF;
    overflow: hidden;
    position: relative;
    border: 1px solid #DECAFF;
    box-shadow: 0 8px 36px rgba(113, 57, 209, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Dedicated tall container override mapping Card 3 and Card 4 absolute 34rem Figma height token */
@media (min-width: 992px) {
    .mto-exp-card--tall {
        height: 33.95rem !important;
        /* Precisely 543px to house the 25.45rem top gap cleanly */
    }
}

.mto-exp-card--realm {
    background: linear-gradient(270deg, rgba(187, 147, 255, 0.14) 0%, rgba(165, 112, 255, 1) 100%);
    border: none;
}

.mto-exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 52px rgba(113, 57, 209, 0.18);
}

.mto-exp-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    pointer-events: none;
}

.mto-exp-card .mto-exp-card__img {
    object-fit: fill;
}

.mto-exp-card__img--glow-pulse {
    animation: mto-glow-pulse 1s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes mto-glow-pulse {
    0%,  100% { filter: brightness(1)    drop-shadow(0 0 0px rgba(113, 57, 209, 0)); }
    50%        { filter: brightness(1.12) drop-shadow(0 0 28px rgba(113, 57, 209, 0.65)); }
}

/* Specific modifier to lock wide UI illustrations precisely centered */
.mto-exp-card__img--contain {
    object-fit: contain !important;
    object-position: center center !important;
    padding: clamp(1rem, 2vw, 2.5rem);
    background: #08031d;
}

/* Dedicated modifier mapping background backing texture extracted from Figma */
.mto-exp-card__img--textured {
    object-fit: cover !important;
    z-index: 0 !important;
    object-position: center;
}

/* ── Figma Multi-Island Compositing Layers ────────────────────────────────── */
.mto-exp-card__islands {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Continuous Levitation (Floating) Keyframes ───────────────────────────── */
@keyframes floatCenter {

    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(2px);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(4px);
    }

    50% {
        transform: translateY(-4px);
    }
}

.mto-exp-island {
    position: absolute;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Primary Center Island */
.mto-exp-island--center {
    width: clamp(170px, 22vw, 280px);
    height: auto;
    z-index: 3;
    animation: floatCenter 6s ease-in-out infinite;
}

/* Floating Reward Crate (Card 3 Foreground) */
.mto-exp-island--crate {
    width: clamp(130px, 16vw, 220px);
    height: auto;
    z-index: 3;
    animation: floatCenter 6s ease-in-out infinite;
}

/* Centered Progression UI Panoramic Illustration (Card 4 Foreground) */
.mto-exp-island--progress {
    width: 92%;
    height: auto;
    max-height: 55%;
    z-index: 3;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
    top: 40%;
    transform: translateY(-50%);
}

@media (min-width: 1920px) {
    .mto-exp-island--progress {
        top: 14%;
        transform: none;
    }
}

/* Left Blurred Island */
.mto-exp-island--left {
    width: clamp(90px, 11vw, 145px);
    height: auto;
    left: clamp(-10px, 1.5vw, 15px);
    z-index: 2;
    opacity: 0.2;
    animation: floatLeft 5s ease-in-out infinite;
}

/* Right Blurred Island */
.mto-exp-island--right {
    width: clamp(90px, 11vw, 145px);
    height: auto;
    right: clamp(-10px, 1.5vw, 15px);
    z-index: 2;
    opacity: 0.2;
    animation: floatRight 7s ease-in-out infinite;
}

/* Stunning immersive floating animations override on hover */
.mto-exp-card:hover .mto-exp-island--center,
.mto-exp-card:hover .mto-exp-island--crate {
    animation-play-state: paused;
    transform: translateY(-14px) scale(1.04);
}

.mto-exp-card--realm:hover .mto-exp-island--left {
    animation-play-state: paused;
    transform: translateY(16px) translateX(-5px) scale(0.96);
}

.mto-exp-card--realm:hover .mto-exp-island--right {
    animation-play-state: paused;
    transform: translateY(10px) translateX(5px) scale(0.96);
}

.mto-exp-card__content {
    position: absolute;
    inset: 0;
    z-index: 4;
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.mto-exp-card--realm .mto-exp-card__content,
.mto-exp-card--realm .mto-exp-card__content--top-left {
    background: none !important;
    justify-content: space-between;
}

.mto-exp-card__content--top-left {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(to bottom,
            rgba(12, 6, 28, 0.82) 0%,
            rgba(12, 6, 28, 0.35) 38%,
            transparent 68%);
}

.mto-exp-card__content--bottom-left {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(0deg, rgba(172, 123, 255, 0.97) 0%, rgba(255, 255, 255, 0) 100%) !important;
    border-radius: 2.5rem;
}

.mto-exp-card__content--bottom-center {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 3rem !important;
    /* Exact absolute layout bounding offset from Figma red guide */
}

.mto-exp-card__content--right {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    background: linear-gradient(0deg, rgba(165, 112, 255, 0.34) 0%, rgba(255, 255, 255, 0.00) 60.68%) !important;
    border-radius: 2.5rem;
    box-shadow: inset 0 -6.163px 24.651px 0 rgba(255, 255, 255, 0.16);
}

.mto-exp-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 2.25rem);
    font-weight: 400;
    line-height: 1.22;
    margin: 0;
    color: #fff;
}

.mto-exp-card__title strong {
    font-weight: 700;
}

/* Mixed typography styles specifically for Card 2 */
.mto-exp-card__content--right .mto-exp-card__title {
    color: #000;
    font-weight: 700;
}

.mto-exp-card__content--right .mto-exp-card__title span {
    font-weight: 400;
}

/* Typography styles specifically for Card 4 */
.mto-exp-card__content--bottom-center .mto-exp-card__title {
    color: #000;
}

/* Dedicated background backing frame layer specifically for Card 4 */
.mto-exp-card--progress-block {
    border-radius: 2.58981rem !important;
    border: none !important;
    /* Prevents raw unblended edge duplication */
}

.mto-exp-card--progress-block::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Renders delicately over the bright sunburst background rays */
    border-radius: 2.58981rem;
    border: 8px solid rgba(80, 29, 166, 0.21);
    /* 21% alpha stroke mapping */
    background: linear-gradient(102deg, rgba(187, 147, 255, 0.15) 0%, rgba(113, 57, 209, 0.21) 106.07%);
    /* 21% alpha linear gradient */
    pointer-events: none;
}

.mto-exp-card__subtext {
    font-size: clamp(1rem, 1.75vw, 1.25rem);
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.mto-exp-card__tag {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.866rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.758rem;
    margin-right: -0.758rem;
    /* Counterbalances trailing browser letter-spacing for true center alignment */
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    opacity: 0.9;
    display: block;
}


/* ── Experience tabs ──────────────────────────────────────────────────────── */
.mto-exp-tabs {
    position: relative;
    margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.mto-exp-tab {
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0.45;
}

.mto-exp-tab:hover,
.mto-exp-tab.active {
    opacity: 1!important;
}

.mto-exp-tab__text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.125rem, 1.6vw, 1.5rem);
    color: #494949;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.mto-exp-tab.active .mto-exp-tab__text {
    color: #000;
    font-weight: 600;
}

.mto-exp-tab__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e4d9f7;
    position: absolute;
    z-index: 2;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* ── Desktop & Tablet Layout (>= 768px) ── */
@media (min-width: 768px) {
    .mto-exp-tabs {
        height: clamp(8.5rem, 11vw, 10.93rem);
    }

    .mto-exp-tabs::before {
        content: '';
        position: absolute;
        bottom: 7px;
        left: 0;
        right: 0;
        height: 1px;
        background: #e4d9f7;
        z-index: 1;
    }

    .mto-exp-tab {
        padding: 1.5rem 0.5rem 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .mto-exp-tab__text {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .mto-exp-tabs>div:not(:last-child) .mto-exp-tab::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 7px;
        width: 1px;
        background: #e4d9f7;
    }

    .mto-exp-tab__dot {
        bottom: 0;
        left: 0;
        transform: translateX(-50%);
    }

    .mto-exp-tabs>div:first-child .mto-exp-tab__dot {
        transform: none;
    }

    .mto-exp-tab:hover .mto-exp-tab__dot,
    .mto-exp-tab.active .mto-exp-tab__dot {
        background: #7139D1;
        box-shadow: 0 0 0 5px rgba(113, 57, 209, 0.14);
        transform: translateX(-50%) scale(1.25);
    }

    .mto-exp-tabs>div:first-child .mto-exp-tab:hover .mto-exp-tab__dot,
    .mto-exp-tabs>div:first-child .mto-exp-tab.active .mto-exp-tab__dot {
        transform: scale(1.25);
        transform-origin: left center;
    }
}

/* ── Mobile Layout (< 768px) ── */
@media (max-width: 767px) {
    .mto-exp-tabs {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding-left: 1.5rem;
        margin-top: 3rem;
    }

    .mto-exp-tabs::before {
        content: '';
        position: absolute;
        top: 0.5rem;
        bottom: 0.5rem;
        left: 6px;
        width: 1px;
        background: #e4d9f7;
        z-index: 1;
    }

    .mto-exp-tab {
        padding: 0 0 0 2rem;
        display: flex;
        align-items: center;
        text-align: left !important;
        height: auto;
    }

    .mto-exp-tab__text {
        margin: 0;
        text-align: left !important;
    }

    .mto-exp-tab__dot {
        left: -1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .mto-exp-tab:hover .mto-exp-tab__dot,
    .mto-exp-tab.active .mto-exp-tab__dot {
        background: #7139D1;
        box-shadow: 0 0 0 5px rgba(113, 57, 209, 0.14);
        transform: translateY(-50%) scale(1.25);
    }
}

/* ── Loop section ─────────────────────────────────────────────────────────── */
.mto-loop {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #f0eaff 100%);
}

.mto-loop__glow-top-left {
    position: absolute;
    top: -8rem;
    left: -12rem;
    width: 48.335rem;
    height: 48.335rem;
    border-radius: 50%;
    opacity: 0.28;
    background: rgba(117, 120, 254, 0.36);
    filter: blur(180px);
    pointer-events: none;
    z-index: 0;
}

.mto-loop__glow-top-right {
    position: absolute;
    top: -6rem;
    right: -10rem;
    width: 48.91769rem;
    height: 36.53rem;
    border-radius: 50%;
    opacity: 0.14;
    background: rgba(177, 46, 165, 0.4);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.mto-loop__glow-mid-left {
    position: absolute;
    top: 40%;
    left: -8rem;
    width: 38.26063rem;
    height: 38.01594rem;
    border-radius: 50%;
    opacity: 0.40;
    background: #4731AF;
    filter: blur(250px);
    pointer-events: none;
    z-index: 0;
}

.mto-loop__glow-mid-right {
    position: absolute;
    top: 32%;
    right: -8rem;
    width: 32.37538rem;
    height: 32.1683rem;
    border-radius: 50%;
    opacity: 0.70;
    background: #FFA077;
    filter: blur(250px);
    pointer-events: none;
    z-index: 0;
}

.mto-loop__eyebrow {
    color: #000;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.84;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.mto-loop__heading {
    color: #7139D1;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.625rem);
    font-weight: 500;
    line-height: 1.22;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

/* ── Loop Bento Cards ─────────────────────────────────────────────────────── */
.mto-loop-card {
    position: relative;
    background: linear-gradient(102deg, rgba(187, 147, 255, 0.15) 0%, rgba(113, 57, 209, 0.15) 100%);
    border-radius: 1.5245rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    height: 100%;
    z-index: 1;
}

.mto-loop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2.894px;
    background: linear-gradient(102deg, rgba(50, 0, 136, 0.15), rgba(68, 30, 133, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.mto-loop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(113, 57, 209, 0.08);
}

.mto-loop-card--ui {
    padding: clamp(1rem, 1.5vw, 1.5rem);
    align-items: center;
}

.mto-loop-card--ui img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    border-radius: clamp(0.5rem, 1vw, 0.875rem);
    display: block;
}

.mto-loop-card--natural img {
    height: auto;
    object-fit: unset;
}

.mto-loop-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 700;
    color: #7139D1;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.mto-loop-card__desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: #242424;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ── CTA section ──────────────────────────────────────────────────────────── */
.mto-cta {
    background: linear-gradient(180deg, #f0eaff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.mto-cta__cloud {
    position: absolute;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    width: clamp(250px, 35vw, 500px);
    height: auto;
}

.mto-cta__cloud--left {
    left: -2%;
}

.mto-cta__cloud--right {
    right: -2%;
}

.mto-cta .container-fluid {
    position: relative;
    z-index: 2;
}

.mto-cta__top-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 500;
    color: #000;
    line-height: 1.5;
    text-align: center;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.eb-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.625rem 0.9375rem 0.625rem 1.6875rem;
    height: clamp(3.5rem, 6vw, 5.625rem);
    background: linear-gradient(94deg, #7239D1 0%, #F741E8 100.42%);
    color: #fff;
    font-family: inherit;
    font-size: clamp(1.25rem, .875rem + 1vw, 1.75rem);
    font-weight: 500;
    border-radius: 3.78719rem;
    text-decoration: none;
    transition: opacity 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 28px rgba(113, 57, 209, 0.45);
    white-space: nowrap;
}

.eb-btn-cta:hover {
    background: #8a50e0;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(113, 57, 209, 0.6);
    color: #fff;
}

.eb-btn-cta__arrow {
    width: clamp(3.5rem, 4.5vw, 4.375rem);
    height: clamp(3.5rem, 4.5vw, 4.375rem);
    flex-shrink: 0;
}

.mto-cta__pill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: clamp(18rem, 25vw, 23.5rem);
    background: linear-gradient(180deg, #F9F5FF 0%, #EDE4FF 100%);
    border-radius: 17.5rem;
    box-shadow: inset 0 -6px 24px rgba(255, 255, 255, 0.4), 0 16px 48px rgba(113, 57, 209, 0.08);
    padding: clamp(2rem, 4vw, 3rem);
    position: relative;
}

.mto-cta__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 3.625rem);
    font-weight: 500;
    color: #7139D1;
    line-height: 1.22;
    margin: 0 0 1.75rem 0;
}

.mto-cta__icon {
    position: absolute;
    width: clamp(52px, 8vw, 110px);
    height: clamp(52px, 8vw, 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
}

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

.mto-cta__icon--left {
    left: clamp(1.5rem, 7vw, 7.125rem);
    transform: translateY(-50%);
}

.mto-cta__icon--right {
    right: clamp(1.5rem, 7vw, 7.125rem);
    transform: translateY(-50%);
}

/* ── Responsive breakpoints ───────────────────────────────────────────────── */

/* Mobile: hide gem icons so pill doesn't overflow */
@media (max-width: 767px) {
    .mto-cta__icon {
        display: none;
    }

    .mto-cta__pill {
        border-radius: 2rem;
        padding: 2rem 1.5rem;
        min-height: unset;
    }

    .mto-exp-island--progress {
        width: 78%;
        top: 38%;
        transform: translateY(-50%);
    }

    .mto-experience .row.g-3 {
        row-gap: 1rem !important;
    }

    .mto-hero__subheading {
        min-height: auto;
        font-size: clamp(1rem, 3.5vw, 1.375rem);
    }

    .btn-hero-dungeon {
        height: 4.25rem;
        width: fit-content;
        max-width: unset;
    }

    .btn-hero-dungeon .btn-text {
        font-size: clamp(1rem, 4vw, 1.375rem);
        padding-right: 60px;
    }

    .btn-hero-dungeon .icon,
    .btn-hero-dungeon .icon img {
        width: 52px;
        height: 52px;
    }

    .eb-btn-cta__arrow {
        width: clamp(2.75rem, 4.5vw, 3.5rem);
        height: clamp(2.75rem, 4.5vw, 3.5rem);
    }
}

@media (max-width: 576px) {
    .mto-cta__pill {
        padding: 2rem 1rem;
    }
}

/* Realm / theme overrides → see mt-overview-themes.css */