/* =========================================================
   MINDSPACE SERVICES V2
   Premium Interactive Service Command Center
========================================================= */

.mindspace-services-v2 {
    --ms-gold: #c9955c;
    --ms-gold-light: #f0c58e;
    --ms-copper: #a9613d;
    --ms-ivory: #f5f2ea;
    --ms-muted: rgba(245, 242, 234, .55);
    --ms-line: rgba(201, 149, 92, .16);

    position: relative;
    min-height: 920px;
    padding: 120px 0 100px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(180, 106, 60, .08),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 30%,
            rgba(201, 149, 92, .04),
            transparent 25%
        ),
        #080909;
}


/* =========================================================
   BACKGROUND
========================================================= */

.msv2-bg-grid {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-image:
        linear-gradient(
            rgba(245,242,234,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(245,242,234,.035) 1px,
            transparent 1px
        );

    background-size: 84px 84px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 12%,
            black 85%,
            transparent
        );

    animation: msv2GridMove 18s linear infinite;
}

@keyframes msv2GridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 84px 84px;
    }
}


.msv2-noise {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    opacity: .035;

    background-image:
        radial-gradient(
            rgba(255,255,255,.8) .6px,
            transparent .7px
        );

    background-size: 5px 5px;
}


.msv2-particle {
    position: absolute;
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--ms-gold-light);

    box-shadow:
        0 0 12px rgba(240,197,142,.8);

    opacity: .45;

    animation:
        msv2ParticleFloat
        8s
        ease-in-out
        infinite;
}

.msv2-particle-1 {
    left: 12%;
    top: 25%;
}

.msv2-particle-2 {
    left: 82%;
    top: 20%;
    animation-delay: -2s;
}

.msv2-particle-3 {
    left: 72%;
    top: 76%;
    animation-delay: -4s;
}

.msv2-particle-4 {
    left: 22%;
    top: 78%;
    animation-delay: -6s;
}

@keyframes msv2ParticleFloat {
    0%,
    100% {
        transform: translate3d(0,0,0);
        opacity: .25;
    }

    50% {
        transform: translate3d(0,-28px,0);
        opacity: .8;
    }
}


/* =========================================================
   CONTAINER
========================================================= */

.msv2-container {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.msv2-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 80px;

    margin-bottom: 72px;

    opacity: 0;
    transform: translateY(35px);

    animation:
        msv2FadeUp
        .9s
        cubic-bezier(.16,1,.3,1)
        .15s
        forwards;
}

@keyframes msv2FadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.msv2-header-left {
    max-width: 700px;
}

.msv2-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    color: var(--ms-gold);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .34em;

    text-transform: uppercase;
}

.msv2-eyebrow i {
    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--ms-gold)
        );
}


.msv2-header h2 {
    margin: 0;

    max-width: 700px;

    color: var(--ms-ivory);

    font-size: clamp(48px, 5vw, 82px);
    font-weight: 500;

    line-height: .98;
    letter-spacing: -.045em;
}

.msv2-header h2 .msv2-title-line {
    display: block;
}

.msv2-header h2 .msv2-title-line--accent {
    /* gradient text needs a little breathing room or the descenders
       in "Possibilities." get clipped by the background-clip mask */
    padding-bottom: .08em;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #f5f2ea,
            #b67a48 55%,
            #f0c58e
        );

    -webkit-background-clip: text;
    background-clip: text;
}


.msv2-header-right {
    width: min(390px, 100%);
}

.msv2-header-right p {
    margin: 0 0 28px;

    color: var(--ms-muted);

    font-size: 15px;
    line-height: 1.75;
}


.msv2-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    min-width: 230px;
    min-height: 54px;

    padding: 0 8px 0 22px;

    border: 1px solid rgba(201,149,92,.5);
    border-radius: 3px;

    color: var(--ms-ivory);

    text-decoration: none;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}

.msv2-main-btn b {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(201,149,92,.4);

    color: var(--ms-gold-light);

    transition:
        transform .35s ease,
        background .35s ease;
}

.msv2-main-btn:hover {
    transform: translateY(-4px);

    background: rgba(201,149,92,.08);

    border-color: var(--ms-gold);
}

.msv2-main-btn:hover b {
    transform: rotate(45deg);
    background: rgba(201,149,92,.14);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.msv2-experience {
    display: grid;

    grid-template-columns:
        220px
        minmax(560px, 1fr)
        330px;

    align-items: center;

    gap: 45px;

    min-height: 600px;
}


/* =========================================================
   LEFT INDEX
========================================================= */

.msv2-index {
    align-self: stretch;

    padding-top: 25px;
}

.msv2-index-top {
    display: flex;
    justify-content: space-between;

    color: var(--ms-muted);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}

.msv2-index-top small {
    color: var(--ms-gold);

    font-size: 10px;
}


.msv2-index-line {
    height: 1px;

    margin: 18px 0 20px;

    background:
        linear-gradient(
            90deg,
            var(--ms-gold),
            rgba(201,149,92,.08)
        );
}


.msv2-mini-list {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.msv2-mini {
    position: relative;

    display: grid;
    grid-template-columns: 30px 1fr;

    align-items: center;

    gap: 12px;

    width: 100%;

    padding: 12px 10px;

    border: 0;

    background: transparent;

    color: rgba(245,242,234,.4);

    text-align: left;

    cursor: pointer;

    transition:
        color .3s ease,
        transform .3s ease;
}

.msv2-mini span {
    font-size: 9px;
    letter-spacing: .1em;
}

.msv2-mini strong {
    font-size: 12px;
    font-weight: 600;
}

.msv2-mini::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 7px;
    bottom: 7px;

    width: 2px;

    background: var(--ms-gold);

    transform: scaleY(0);

    transition: transform .3s ease;
}

.msv2-mini:hover {
    color: rgba(245,242,234,.8);

    transform: translateX(5px);
}

.msv2-mini.active {
    color: var(--ms-ivory);
}

.msv2-mini.active::before {
    transform: scaleY(1);
}


/* =========================================================
   STAGE
   3D carousel that replaces the old orbit diagram.
   The ring holds eight cards facing outward; rotating the
   ring brings the active card round to the front.
========================================================= */

.msv2-stage {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 640px;

    /* distance from ring centre to each card face:
       radius = (card width / 2) / tan(180deg / cards) */
    --ring-radius: 268px;

    perspective: 1500px;
    perspective-origin: 50% 42%;
}


.msv2-stage-glow {
    position: absolute;

    left: 50%;
    top: 40%;

    width: 620px;
    height: 620px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(180,106,60,.22),
            rgba(180,106,60,.06) 42%,
            transparent 68%
        );

    filter: blur(20px);

    pointer-events: none;

    animation:
        msv2GlowBreathe
        6s
        ease-in-out
        infinite;
}

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

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}


/* =========================================================
   RING
========================================================= */

.msv2-carousel {
    position: relative;

    width: 100%;
    height: 320px;

    margin-bottom: 22px;

    transform-style: preserve-3d;
}


.msv2-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 0;
    height: 0;

    --ring-rot: 0deg;

    transform:
        rotateX(-6deg)
        rotateY(var(--ring-rot));

    transform-style: preserve-3d;

    transition:
        transform 1.05s cubic-bezier(.19,1,.22,1);
}


/* =========================================================
   CARDS
========================================================= */

.msv2-card {
    position: absolute;

    left: 0;
    top: 0;

    /* --i = slot on the ring, --dist = steps away from the
       active card (set from JS, 0 for the front card) */
    --i: 0;
    --dist: 0;

    width: 200px;
    height: 264px;

    margin: -132px 0 0 -100px;

    padding: 24px 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    transform:
        rotateY(calc(var(--i) * 45deg))
        translateZ(var(--ring-radius));

    backface-visibility: hidden;

    border: 1px solid rgba(201,149,92,.22);
    border-radius: 4px;

    background:
        linear-gradient(
            160deg,
            rgba(245,242,234,.075),
            rgba(245,242,234,.015) 45%,
            rgba(8,9,9,.5)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 30px 60px rgba(0,0,0,.45);

    backdrop-filter: blur(8px);

    color: rgba(245,242,234,.62);

    text-align: left;

    cursor: pointer;

    /* cards further from the front sink back and soften */
    opacity: calc(1 - var(--dist) * .26);
    filter: blur(calc(var(--dist) * 1.15px));

    transition:
        opacity .8s ease,
        filter .8s ease,
        border-color .5s ease,
        box-shadow .5s ease,
        color .5s ease;
}


.msv2-card-index {
    color: rgba(201,149,92,.45);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .22em;
}


.msv2-card-icon {
    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    margin: 26px 0 auto;

    border: 1px solid rgba(201,149,92,.3);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,.09),
            transparent 45%
        ),
        rgba(8,9,9,.7);

    color: var(--ms-gold-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .06em;

    transition:
        border-color .5s ease,
        box-shadow .5s ease,
        background .5s ease;
}


.msv2-card small {
    color: rgba(245,242,234,.35);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .2em;
}

.msv2-card strong {
    margin-top: 6px;

    color: inherit;

    font-size: 18px;
    font-weight: 500;

    letter-spacing: -.02em;

    white-space: nowrap;
}


.msv2-card-line {
    width: 28px;
    height: 1px;

    margin-top: 16px;

    background: rgba(201,149,92,.35);

    transition:
        width .6s cubic-bezier(.19,1,.22,1),
        background .6s ease;
}


/* ---- front-facing card ---- */

.msv2-card.active {
    border-color: rgba(240,197,142,.55);

    background:
        linear-gradient(
            160deg,
            rgba(201,149,92,.16),
            rgba(245,242,234,.03) 48%,
            rgba(8,9,9,.55)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 0 45px rgba(201,149,92,.18),
        0 40px 70px rgba(0,0,0,.5);

    color: var(--ms-ivory);
}

.msv2-card.active .msv2-card-index {
    color: var(--ms-gold-light);
}

.msv2-card.active .msv2-card-icon {
    border-color: rgba(240,197,142,.8);

    background:
        radial-gradient(
            circle,
            rgba(201,149,92,.28),
            rgba(8,9,9,.8)
        );

    box-shadow:
        0 0 0 6px rgba(201,149,92,.05),
        0 0 30px rgba(201,149,92,.35);
}

.msv2-card.active .msv2-card-line {
    width: 64px;

    background:
        linear-gradient(
            90deg,
            var(--ms-gold-light),
            transparent
        );
}


/* a light sweep that runs across the front card only */
.msv2-card::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            105deg,
            transparent 35%,
            rgba(240,197,142,.14) 50%,
            transparent 65%
        );

    background-size: 260% 100%;
    background-position: 160% 0;

    opacity: 0;

    pointer-events: none;
}

.msv2-card.active::after {
    opacity: 1;

    animation:
        msv2Sweep
        4.2s
        ease-in-out
        1.1s
        infinite;
}

@keyframes msv2Sweep {
    0% {
        background-position: 160% 0;
    }

    45%,
    100% {
        background-position: -60% 0;
    }
}


.msv2-card:hover {
    color: var(--ms-ivory);

    border-color: rgba(240,197,142,.45);
}

.msv2-card:focus-visible {
    outline: none;

    border-color: var(--ms-gold-light);

    box-shadow:
        0 0 0 3px rgba(201,149,92,.28),
        0 40px 70px rgba(0,0,0,.5);
}


/* =========================================================
   BRAND CORE
   The plinth the ring turns around: a lit floor, two counter
   rotating rings and the Mindspace mark, with a readout that
   follows whichever card is at the front.
========================================================= */

.msv2-platform {
    position: relative;

    display: grid;
    place-items: center;

    width: 480px;
    height: 190px;

    pointer-events: none;
}


/* pool of light the cards appear to stand in */
.msv2-platform-pool {
    position: absolute;

    left: 50%;
    top: 46%;

    width: 480px;
    height: 180px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at 50% 50%,
            rgba(201,149,92,.22),
            rgba(180,106,60,.08) 45%,
            transparent 72%
        );

    filter: blur(12px);
}


.msv2-platform-ring,
.msv2-platform-arc {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;
}


.msv2-platform-ring {
    width: 452px;
    height: 452px;

    border: 1px solid rgba(201,149,92,.3);

    box-shadow:
        0 0 40px rgba(201,149,92,.12);

    transform:
        translate(-50%, -50%)
        rotateX(71deg);

    animation:
        msv2PlatformSpin
        26s
        linear
        infinite;
}

.msv2-platform-ring::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 330px;
    height: 330px;

    border: 1px dashed rgba(240,197,142,.18);
    border-radius: 50%;

    transform: translate(-50%, -50%);
}

@keyframes msv2PlatformSpin {
    to {
        transform:
            translate(-50%, -50%)
            rotateX(71deg)
            rotateZ(360deg);
    }
}


/* a bright arc that sweeps the opposite way, so the plinth
   reads as two independent rings rather than one flat ellipse */
.msv2-platform-arc {
    width: 392px;
    height: 392px;

    transform:
        translate(-50%, -50%)
        rotateX(71deg);

    animation:
        msv2PlatformArc
        14s
        linear
        infinite;
}

.msv2-platform-arc::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            rgba(240,197,142,.75) 30deg,
            transparent 84deg,
            transparent 200deg,
            rgba(201,149,92,.4) 232deg,
            transparent 280deg
        );

    mask:
        radial-gradient(
            transparent calc(100% - 1.5px),
            #000 calc(100% - 2.5px)
        );

    -webkit-mask:
        radial-gradient(
            transparent calc(100% - 1.5px),
            #000 calc(100% - 2.5px)
        );
}

@keyframes msv2PlatformArc {
    to {
        transform:
            translate(-50%, -50%)
            rotateX(71deg)
            rotateZ(-360deg);
    }
}


/* =========================================================
   HUB
========================================================= */

.msv2-hub {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.msv2-hub-mark {
    display: flex;

    font-size: 44px;
    font-weight: 300;

    line-height: 1;
    letter-spacing: -.12em;

    color: transparent;

    background:
        linear-gradient(
            160deg,
            #fbf3e6,
            #e0ab72 55%,
            #a9613d
        );

    -webkit-background-clip: text;
    background-clip: text;

    filter:
        drop-shadow(0 0 26px rgba(240,197,142,.45));
}

.msv2-hub-mark span:last-child {
    transform: translateY(6px);
}


.msv2-hub-wordmark {
    margin-top: 9px;

    color: rgba(245,242,234,.5);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .46em;

    /* the wide tracking adds a trailing gap, so pull it back
       to keep the lockup optically centred */
    text-indent: .46em;
}


.msv2-hub-rule {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 11px 0 9px;
}

.msv2-hub-rule i {
    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201,149,92,.55)
        );
}

.msv2-hub-rule i:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(201,149,92,.55),
            transparent
        );
}

.msv2-hub-rule b {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--ms-gold-light);

    box-shadow:
        0 0 8px rgba(240,197,142,.9);
}


/* live readout - follows the front card */
.msv2-hub-live {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--ms-gold-light);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .24em;

    white-space: nowrap;
}

.msv2-hub-live em {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--ms-gold);

    box-shadow:
        0 0 9px rgba(201,149,92,.9);

    animation:
        msv2Status
        1.8s
        ease-in-out
        infinite;
}

.msv2-hub-live span {
    transition:
        opacity .2s ease,
        transform .2s ease;
}

/* JS flips this while the label is swapped */
.msv2-hub.is-swapping .msv2-hub-live span {
    opacity: 0;
    transform: translateY(6px);
}


/* =========================================================
   STAGE CONTROLS
========================================================= */

.msv2-stage-nav {
    position: absolute;

    left: 0;
    right: 0;
    top: 38%;

    z-index: 20;

    display: flex;
    justify-content: space-between;

    pointer-events: none;
}


.msv2-arrow {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(201,149,92,.28);
    border-radius: 50%;

    background: rgba(8,9,9,.55);

    color: var(--ms-gold-light);

    font-size: 17px;
    line-height: 1;

    cursor: pointer;

    pointer-events: auto;

    backdrop-filter: blur(6px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.msv2-arrow:hover {
    transform: scale(1.12);

    border-color: var(--ms-gold);

    background: rgba(201,149,92,.14);
}

.msv2-arrow:focus-visible {
    outline: none;

    box-shadow:
        0 0 0 3px rgba(201,149,92,.3);
}

/* =========================================================
   DETAIL PANEL
========================================================= */

.msv2-detail {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 500px;

    padding: 30px;

    border:
        1px solid
        rgba(201,149,92,.16);

    background:
        linear-gradient(
            145deg,
            rgba(245,242,234,.045),
            rgba(245,242,234,.012)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.03),
        0 30px 80px rgba(0,0,0,.3);

    backdrop-filter: blur(16px);

    opacity: 0;
    transform: translateX(35px);

    animation:
        msv2DetailIn
        1s
        cubic-bezier(.16,1,.3,1)
        .5s
        forwards;
}

@keyframes msv2DetailIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* JS adds .is-changing for ~170ms while the copy is swapped out */
.msv2-detail-number,
.msv2-detail-icon,
.msv2-detail h3,
.msv2-detail > p,
.msv2-detail-meta strong,
.msv2-detail-footer span:first-child {
    transition:
        opacity .17s ease,
        transform .17s ease;
}

.msv2-detail.is-changing .msv2-detail-number,
.msv2-detail.is-changing .msv2-detail-icon,
.msv2-detail.is-changing h3,
.msv2-detail.is-changing > p,
.msv2-detail.is-changing .msv2-detail-meta strong,
.msv2-detail.is-changing .msv2-detail-footer span:first-child {
    opacity: 0;
    transform: translateY(9px);
}


.msv2-detail::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;
    right: 30px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--ms-gold),
            transparent
        );
}


.msv2-detail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(245,242,234,.35);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .2em;
}


.msv2-status {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--ms-gold);

    font-size: 7px;
}

.msv2-status i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #b8a071;

    box-shadow:
        0 0 10px #c9955c;

    animation:
        msv2Status
        1.8s
        ease-in-out
        infinite;
}

@keyframes msv2Status {
    50% {
        opacity: .3;
        transform: scale(.65);
    }
}


.msv2-detail-number {
    margin-top: 42px;

    color: rgba(201,149,92,.2);

    font-size: 68px;
    font-weight: 300;

    line-height: .8;
}


.msv2-detail-icon {
    display: grid;
    place-items: center;

    flex: 0 0 auto;

    width: 52px;
    height: 52px;

    margin-top: 28px;

    border:
        1px solid
        rgba(201,149,92,.35);

    color: var(--ms-gold-light);

    font-size: 10px;
    font-weight: 800;

    background:
        rgba(201,149,92,.04);
}


.msv2-detail h3 {
    /* room for two lines so the panel does not jump between
       "Growth" and "Web & App Development" */
    min-height: 72px;

    margin: 22px 0 13px;

    color: var(--ms-ivory);

    font-size: 28px;
    font-weight: 500;

    letter-spacing: -.03em;
}


.msv2-detail > p {
    min-height: 84px;

    margin: 0;

    color: var(--ms-muted);

    font-size: 13px;

    line-height: 1.75;
}


.msv2-detail-divider {
    height: 1px;

    margin: 26px 0;

    background:
        linear-gradient(
            90deg,
            rgba(201,149,92,.3),
            transparent
        );
}


.msv2-detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.msv2-detail-meta div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.msv2-detail-meta span {
    color: rgba(245,242,234,.28);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .18em;
}

.msv2-detail-meta strong {
    color: rgba(245,242,234,.7);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .06em;
}


.msv2-progress {
    margin-top: 32px;
}

.msv2-progress > span {
    display: block;

    margin-bottom: 7px;

    color: rgba(245,242,234,.28);

    font-size: 7px;
    letter-spacing: .15em;
}

.msv2-progress > div {
    position: relative;

    height: 1px;

    background:
        rgba(245,242,234,.08);
}

.msv2-progress i {
    position: absolute;

    left: 0;
    top: 0;

    width: 24%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--ms-gold),
            var(--ms-gold-light)
        );

    transition: width .5s ease;
}


.msv2-detail-footer {
    margin-top: auto;
    padding-top: 26px;

    display: flex;
    justify-content: space-between;

    color: rgba(245,242,234,.25);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .14em;
}


/* =========================================================
   BOTTOM
========================================================= */

.msv2-bottom {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 65px;
}

.msv2-bottom-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201,149,92,.25)
        );
}

.msv2-bottom-line:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(201,149,92,.25),
            transparent
        );
}

.msv2-bottom p {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0;

    color: rgba(245,242,234,.25);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .2em;

    white-space: nowrap;
}

.msv2-bottom p span:first-child {
    color: var(--ms-gold);
}

.msv2-bottom i {
    color: rgba(201,149,92,.4);
}


/* =========================================================
   REVEAL
========================================================= */

.msv2-services-visible .msv2-header {
    animation-play-state: running;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1250px) {

    .msv2-container {
        width: min(1100px, calc(100% - 50px));
    }

    .msv2-experience {
        grid-template-columns:
            180px
            minmax(480px, 1fr)
            290px;

        gap: 25px;
    }

    .msv2-stage {
        min-height: 610px;

        --ring-radius: 236px;
    }

    .msv2-platform {
        width: 430px;
        height: 180px;
    }

    .msv2-platform-pool {
        width: 430px;
        height: 168px;
    }

    .msv2-platform-ring {
        width: 404px;
        height: 404px;
    }

    .msv2-platform-ring::before {
        width: 296px;
        height: 296px;
    }

    .msv2-platform-arc {
        width: 350px;
        height: 350px;
    }

    .msv2-card {
        width: 178px;
        height: 246px;

        margin: -123px 0 0 -89px;
    }

    .msv2-detail {
        padding: 25px;
    }

}


@media (max-width: 1050px) {

    .msv2-experience {
        grid-template-columns: 1fr;
    }

    .msv2-index {
        display: none;
    }

    .msv2-stage {
        --ring-radius: 268px;
    }

    .msv2-card {
        width: 200px;
        height: 264px;

        margin: -132px 0 0 -100px;
    }

    .msv2-detail {
        width: min(600px, 100%);
        margin: 0 auto;
    }

}


@media (max-width: 700px) {

    .mindspace-services-v2 {
        min-height: auto;
        padding: 80px 0 70px;
    }

    .msv2-container {
        width: min(100% - 30px, 500px);
    }

    .msv2-header {
        display: block;
        margin-bottom: 55px;
    }

    .msv2-header h2 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .msv2-header-right {
        margin-top: 28px;
    }

    .msv2-experience {
        display: flex;
        flex-direction: column;
    }

    .msv2-stage {
        min-height: 500px;

        /* only the front card and its two neighbours are legible
           at this width, so pull the ring in tight */
        --ring-radius: 196px;

        perspective: 1000px;
    }

    .msv2-stage-glow {
        width: 420px;
        height: 420px;
    }

    .msv2-carousel {
        height: 250px;

        margin-bottom: 18px;
    }

    .msv2-card {
        width: 162px;
        height: 212px;

        margin: -106px 0 0 -81px;

        padding: 18px 16px;
    }

    .msv2-card-icon {
        width: 46px;
        height: 46px;

        margin-top: 16px;
    }

    .msv2-card strong {
        font-size: 15px;
    }

    .msv2-platform {
        width: 300px;
        height: 152px;
    }

    .msv2-platform-pool {
        width: 300px;
        height: 140px;
    }

    .msv2-platform-ring {
        width: 296px;
        height: 296px;
    }

    .msv2-platform-ring::before {
        width: 218px;
        height: 218px;
    }

    .msv2-platform-arc {
        width: 256px;
        height: 256px;
    }

    .msv2-hub-mark {
        font-size: 36px;
    }

    .msv2-hub-wordmark {
        font-size: 6px;

        letter-spacing: .38em;
        text-indent: .38em;
    }

    .msv2-hub-rule {
        margin: 10px 0 9px;
    }

    .msv2-hub-rule i {
        width: 24px;
    }

    .msv2-hub-live {
        font-size: 7px;

        letter-spacing: .18em;
    }

    .msv2-stage-nav {
        position: static;

        justify-content: center;

        gap: 20px;

        margin-top: 10px;
    }

    .msv2-arrow {
        width: 38px;
        height: 38px;

        font-size: 15px;
    }

    .msv2-detail {
        min-height: 430px;
        width: 100%;
    }

    .msv2-bottom {
        margin-top: 45px;
    }

    .msv2-bottom p {
        font-size: 6px;
        gap: 6px;
        letter-spacing: .1em;
    }

}


@media (prefers-reduced-motion: reduce) {

    .mindspace-services-v2 *,
    .mindspace-services-v2 *::before,
    .mindspace-services-v2 *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

}