﻿/* MMS Digital - Home (front-page) */
.mms-hero {
    --hero-fs-eyebrow: clamp(11px, 0.6vw + 8px, 13px);
    --hero-fs-title:   clamp(44px, 7.5vw + 4px, 128px);
    --hero-fs-sub:     clamp(16px, 0.7vw + 14px, 22px);
    --hero-fs-mono:    clamp(10px, 0.3vw + 9px, 12px);
    --pad-x:       clamp(20px, 5vw, 72px);
    --pad-y:       clamp(48px, 6vw, 88px);

    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    padding: var(--pad-y) var(--pad-x);
    isolation: isolate;
    overflow: hidden;
    overflow: clip;
    overflow-clip-margin: 500px;
}
.mms-hero__blob {
    position: absolute;
    left: -8vw;
    top: 22%;
    width: min(72vw, 920px);
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at 35% 40%, rgba(129, 166, 160, 0.55), rgba(129, 166, 160, 0) 60%),
        radial-gradient(circle at 70% 65%, rgba(98, 85, 110, 0.45),  rgba(98, 85, 110, 0) 60%);
    filter: blur(60px);
    border-radius: 64% 36% 58% 42% / 42% 60% 40% 58%;
    animation: mms-blob 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    will-change: border-radius, transform;
}
.mms-hero__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(154, 141, 165, 0.10) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at 50% 55%, black 35%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 55%, black 35%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}
.mms-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
}
.mms-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    column-gap: clamp(32px, 6vw, 96px);
    row-gap: clamp(20px, 3vw, 36px);
    grid-template-columns: 1fr;
    grid-template-areas:
        "eyebrow"
        "title"
        "multipass"
        "subtitle"
        "cta";
    align-items: start;
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
}
.mms-hero__eyebrow   { grid-area: eyebrow; align-self: end; }
.mms-hero__title     { grid-area: title; }
.mms-hero__multipass { grid-area: multipass; }
.mms-hero__subtitle  { grid-area: subtitle; }
.mms-hero__cta-block { grid-area: cta; align-self: start; }

@media (min-width: 960px) {
    .mms-hero__inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
        grid-template-rows: auto auto 1fr auto;
        grid-template-areas:
            "eyebrow   multipass"
            "title     multipass"
            "subtitle  multipass"
            "cta       multipass";
        align-items: center;
    }
    .mms-hero__multipass { align-self: center; }
}
.mms-hero__copy { display: contents; }
.mms-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    font-size: var(--hero-fs-eyebrow);
    font-weight: 300;
    color: var(--color-text-secondary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    animation: mms-fade 800ms cubic-bezier(0.2, 0.7, 0.2, 1) 460ms forwards;
}
.mms-hero__eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--color-secondary);
}

.mms-hero__title {
    margin: 0;
    font-size: var(--hero-fs-title);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: var(--color-text);
    text-wrap: balance;
}

.mms-hero__title-line {
    display: block;
    clip-path: inset(0 0 100% 0);
    transform: translateY(20%);
    opacity: 0;
    animation: mms-line-reveal 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.mms-hero__title-line:nth-child(1) { animation-delay: 540ms; }
.mms-hero__title-line:nth-child(2) { animation-delay: 680ms; }

.mms-hero__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--color-text-secondary);
    letter-spacing: -0.03em;
}

.mms-hero__subtitle {
    max-width: 46ch;
    margin: 0;
    font-size: var(--hero-fs-sub);
    font-weight: 300;
    line-height: 1.45;
    color: var(--color-text-secondary);
    opacity: 0;
    animation: mms-fade 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 820ms forwards;
}
.mms-hero__subtitle strong {
    color: var(--color-text);
    font-weight: 300;
}
.mms-hero__cta-block {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding: 10px;
    border-radius: 1.25rem 1.25rem 5px 1.5rem;
    background: linear-gradient(150deg, rgba(51, 51, 58, 0.65), rgba(6, 6, 7, 0.50));
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(234, 234, 234, 0.06);
    box-shadow:
        0 20px 60px -22px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(234, 234, 234, 0.06);
    width: fit-content;
    max-width: 100%;
    opacity: 0;
    animation: mms-fade 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 960ms forwards;
}
.mms-hero .mms-cta {
    font-size: var(--hero-fs-sub);
}
@media (max-width: 767px) {
    .mms-hero__cta-block {
        width: 100%;
        max-width: none;
    }
    .mms-hero .mms-cta {
        flex: 1;
        justify-content: center;
    }
    .mms-hero__subtitle {
        text-align: center;
    }
}
.mms-hero__multipass {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1.3 / 1;
    margin-inline: auto;
    perspective: 1400px;
    animation: mms-pass-emit 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) 900ms backwards;
}
.mms-hero__multipass::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    border-radius: 14px;
    background:
        repeating-linear-gradient(0deg,
            rgba(129, 166, 160, 0.10) 0 2px,
            transparent 2px 5px),
        radial-gradient(ellipse at 50% 45%, rgba(129, 166, 160, 0.22), transparent 70%);
    mix-blend-mode: screen;
    opacity: 0;
    animation: mms-pass-boot 1000ms ease-out 980ms forwards;
}
@media (min-width: 992px) {
    .mms-hero__multipass { margin: 0 0 0 auto; }
}
.mms-hero__card {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 92%;
    aspect-ratio: 1.5 / 1;
    transform-style: preserve-3d;
    overflow: hidden;
    will-change: transform;
    border-radius: 14px;
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}
.mms-hero__card--back {
    transform: translate(10%, 14%) rotate(6deg);
    background:
        linear-gradient(90deg,
            transparent 0%, transparent 88%,
            rgba(129, 166, 160, 0.28) 91%,
            rgba(98, 85, 110, 0.22) 94%,
            rgba(234, 234, 234, 0.20) 97%,
            rgba(129, 166, 160, 0.14) 99%,
            transparent 100%),
        linear-gradient(to right,  rgba(154, 141, 165, 0.08) 1px, transparent 1px) 0 0 / 18px 18px,
        linear-gradient(to bottom, rgba(154, 141, 165, 0.08) 1px, transparent 1px) 0 0 / 18px 18px,
        radial-gradient(ellipse at 60% 35%, rgba(98, 85, 110, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(129, 166, 160, 0.16) 0%, transparent 55%),
        linear-gradient(180deg, rgba(129, 166, 160, 0.14) 0%, transparent 8%),
        linear-gradient(160deg, #232631 0%, #161823 40%, #0a0b12 75%, #06070a 100%);
    box-shadow:
        0 30px 80px -22px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(234, 234, 234, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(154, 141, 165, 0.10);
    animation: mms-float-back 9s ease-in-out infinite;
}
.mms-hero__card--back::before {
    content: "M";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(160px, 28vw, 280px);
    color: rgba(129, 166, 160, 0.13);
    text-shadow:
        0 2px 0 rgba(234, 234, 234, 0.06),
        0 -2px 0 rgba(0, 0, 0, 0.6);
    letter-spacing: -0.06em;
    line-height: 1;
    pointer-events: none;
}
.mms-hero__card--back::after {
    content: "002 Â· ISSUED 2026 Â· MMS";
    position: absolute;
    left: 0; right: 0;
    bottom: 11%;
    font-family: var(--mono);
    font-size: clamp(8px, 0.7vw, 10px);
    letter-spacing: 0.32em;
    color: rgba(154, 141, 165, 0.55);
    text-align: center;
    text-transform: uppercase;
}
.mms-hero__card--front {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform: translate(-6%, -4%) rotate(-3deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    background:
        linear-gradient(90deg,
            transparent 0%, transparent 86%,
            rgba(129, 166, 160, 0.30) 89%,
            rgba(98, 85, 110, 0.22) 92%,
            rgba(234, 234, 234, 0.28) 95%,
            rgba(129, 166, 160, 0.20) 98%,
            transparent 100%),
        linear-gradient(125deg,
            transparent 25%,
            rgba(129, 166, 160, 0.18) 40%,
            rgba(98, 85, 110, 0.14) 50%,
            rgba(234, 234, 234, 0.12) 60%,
            rgba(129, 166, 160, 0.10) 65%,
            transparent 80%),
        linear-gradient(180deg, rgba(129, 166, 160, 0.20) 0%, transparent 6%),
        radial-gradient(ellipse at 35% 20%, rgba(129, 166, 160, 0.22) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 85%, rgba(98, 85, 110, 0.22) 0%, transparent 55%),
        linear-gradient(165deg, #262934 0%, #181b25 35%, #0c0e16 65%, #06070b 100%);
    box-shadow:
        0 50px 120px -30px rgba(0, 0, 0, 0.92),
        inset 0 1px 0 rgba(234, 234, 234, 0.14),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(129, 166, 160, 0.20);
    animation: mms-float-front 7s ease-in-out infinite;
    transition: transform 150ms ease-out;
}
.mms-hero__card--front::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(129, 166, 160, 0.00) 0deg,
        rgba(129, 166, 160, 0.55) 60deg,
        rgba(98, 85, 110, 0.45) 130deg,
        rgba(234, 234, 234, 0.30) 180deg,
        rgba(129, 166, 160, 0.55) 240deg,
        rgba(98, 85, 110, 0.25) 290deg,
        rgba(129, 166, 160, 0.00) 360deg
    );
    mix-blend-mode: screen;
    filter: blur(22px);
    opacity: 0.55;
    animation: mms-holo 16s linear infinite;
    pointer-events: none;
}
.mms-hero__card--front::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 3px,
        rgba(234, 234, 234, 0.022) 3px,
        rgba(234, 234, 234, 0.022) 4px
    );
    pointer-events: none;
}
.mms-hero__card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: clamp(54px, 14%, 80px) 1fr;
    color: var(--color-text);
}
.mms-hero__card-rail {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: clamp(10px, 1.4vw, 16px) 0;
    background:
        repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0.30) 0px,
            rgba(0, 0, 0, 0.30) 1px,
            transparent 1px,
            transparent 4px),
        linear-gradient(180deg, #15171e 0%, #08090c 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.55);
    box-shadow:
        inset -2px 0 0 rgba(234, 234, 234, 0.04),
        inset 1px 0 0 rgba(234, 234, 234, 0.06);
}
.mms-hero__card-rail-led {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-cta);
    box-shadow: 0 0 8px var(--color-cta), 0 0 0 2px rgba(129, 166, 160, 0.18);
    animation: mms-led 1.8s ease-in-out infinite;
}
.mms-hero__card-rail-id {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--mono);
    font-size: clamp(7.5px, 0.6vw, 9px);
    letter-spacing: 0.32em;
    color: var(--color-text-secondary);
    opacity: 0.7;
    text-transform: uppercase;
}
.mms-hero__card-rail-slot {
    width: 50%;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.5);
}
.mms-hero__card-rail-button {
    width: clamp(28px, 4vw, 44px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%,
        rgba(255, 255, 255, 0.40) 0%,
        rgba(196, 222, 217, 0.85) 18%,
        #81a6a0 45%,
        #4f706b 100%);
    box-shadow:
        inset 0 -3px 5px rgba(0, 0, 0, 0.45),
        inset 0 2px 4px rgba(255, 255, 255, 0.20),
        0 0 12px rgba(129, 166, 160, 0.55),
        0 0 0 2px rgba(0, 0, 0, 0.4);
}

.mms-hero__card-pass {
    position: relative;
    padding: clamp(10px, 1.4vw, 16px) clamp(12px, 1.6vw, 18px);
    background:
        radial-gradient(ellipse at 80% 20%, rgba(129, 166, 160, 0.08) 0%, transparent 55%),
        linear-gradient(165deg, #2c2e36 0%, #1d1f27 55%, #14151b 100%);
    border-left: 1px solid rgba(234, 234, 234, 0.06);
    box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: space-between;
    gap: clamp(8px, 1.1vw, 12px);
    min-width: 0;
}
.mms-hero__card-circuit {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.mms-hero__card-pass > :not(.mms-hero__card-circuit) {
    position: relative;
    z-index: 1;
}
.mms-hero__card-circuit * {
    vector-effect: non-scaling-stroke;
}
.mms-hero__card-circuit .t {
    fill: none;
    stroke: rgba(129, 166, 160, 0.22);
    stroke-width: 1;
    transition: stroke 350ms ease;
}
.mms-hero__card-circuit .t--lilas {
    stroke: rgba(154, 141, 165, 0.20);
}
.mms-hero__card-circuit .chip {
    fill: rgba(129, 166, 160, 0.08);
    stroke: rgba(129, 166, 160, 0.50);
    stroke-width: 1;
}
.mms-hero__card-circuit .chip-pin {
    fill: none;
    stroke: rgba(154, 141, 165, 0.35);
    stroke-width: 1;
}
.mms-hero__card-circuit .pad { fill: rgba(129, 166, 160, 0.45); }
.mms-hero__card-circuit .pad--lilas { fill: rgba(154, 141, 165, 0.40); }
.mms-hero__card-circuit .via { fill: rgba(154, 141, 165, 0.28); }
.mms-hero__card-circuit .pad--rx1 { animation: mms-pad-rx 5.6s linear infinite; }
.mms-hero__card-circuit .pad--rx2 { animation: mms-pad-rx 7.2s linear infinite 2.8s; }
.mms-hero__card-circuit .pulse {
    fill: none;
    stroke: rgba(178, 216, 209, 0.95);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-dasharray: 0.12 1.88;
    animation: mms-circuit 5.6s linear infinite;
}
.mms-hero__card-circuit .pulse--b {
    stroke: rgba(190, 178, 205, 0.90);
    animation-duration: 7.2s;
    animation-delay: 2.8s;
}
.mms-hero__card-circuit .pulse-glow {
    fill: none;
    stroke: rgba(129, 166, 160, 0.30);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 0.16 1.84;
    animation: mms-circuit 5.6s linear infinite;
}
.mms-hero__card-circuit .pulse-glow--b {
    stroke: rgba(154, 141, 165, 0.26);
    animation-duration: 7.2s;
    animation-delay: 2.8s;
}
@keyframes mms-circuit {
    from { stroke-dashoffset: 2; }
    to   { stroke-dashoffset: 0; }
}
@keyframes mms-pad-rx {
    0%, 44%, 58%, 100% { fill: rgba(129, 166, 160, 0.45); }
    50% { fill: rgba(216, 240, 235, 1); }
}
.mms-hero__card--front:hover .mms-hero__card-circuit .t {
    stroke: rgba(129, 166, 160, 0.42);
}
.mms-hero__card--front:hover .mms-hero__card-circuit .t--lilas {
    stroke: rgba(154, 141, 165, 0.38);
}
@media (max-width: 600px) {
    .mms-hero__card-circuit .t,
    .mms-hero__card-circuit .t--lilas { stroke-opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
    .mms-hero__card-circuit .pulse,
    .mms-hero__card-circuit .pulse-glow {
        animation: none;
        opacity: 0;
    }
    .mms-hero__card-circuit .pad--rx1,
    .mms-hero__card-circuit .pad--rx2 { animation: none; }
}

.mms-hero__card-pass-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: clamp(6px, 0.8vw, 10px);
    border-bottom: 1px solid rgba(154, 141, 165, 0.18);
}
.mms-hero__card-title {
    margin: 0;
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 30px);
    letter-spacing: -0.04em;
    color: var(--color-text);
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    background-image: linear-gradient(105deg,
        #eaeaea 0% 42%,
        #cfe6e1 48%,
        #d9cfe6 54%,
        #eaeaea 60% 100%);
    background-size: 230% 100%;
    background-position: 115% 0;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mms-foil 7.4s ease-in-out infinite;
}
@keyframes mms-foil {
    0%, 42% { background-position: 115% 0; }
    100%    { background-position: -15% 0; }
}
.mms-hero__card-title b {
    font-weight: 300;
    color: var(--color-cta);
    -webkit-text-fill-color: var(--color-cta);
    margin: 0 0.18em;
}
.mms-hero__card-tier {
    font-family: var(--mono);
    font-size: clamp(8px, 0.6vw, 10px);
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--color-cta);
    border: 1px solid rgba(129, 166, 160, 0.40);
    background: rgba(129, 166, 160, 0.10);
    padding: 3px 7px;
    white-space: nowrap;
}
.mms-hero__card-pass-body {
    display: grid;
    grid-template-columns: clamp(70px, 9.5vw, 110px) 1fr;
    gap: clamp(10px, 1.4vw, 14px);
    min-height: 0;
}
.mms-hero__card-portrait {
    position: relative;
    border: 1px solid rgba(129, 166, 160, 0.28);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.70));
    overflow: hidden;
    container-type: inline-size;
}
.mms-hero__card-portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right,  rgba(129, 166, 160, 0.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(129, 166, 160, 0.10) 1px, transparent 1px);
    background-size: 12px 12px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.mms-hero__card-portrait::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 28%;
    background: linear-gradient(to bottom, rgba(129, 166, 160, 0.40), transparent 90%);
    animation: mms-scan 3.6s ease-in-out infinite;
}
.mms-hero__card-portrait-marks {
    position: absolute;
    inset: 5px;
    pointer-events: none;
    z-index: 2;
}
.mms-hero__card-portrait-marks::before,
.mms-hero__card-portrait-marks::after {
    content: "";
    position: absolute;
    width: 9px; height: 9px;
    border: 1px solid var(--color-cta);
    opacity: 0.7;
}
.mms-hero__card-portrait-marks::before {
    top: 0; left: 0;
    border-right: none;
    border-bottom: none;
}
.mms-hero__card-portrait-marks::after {
    bottom: 0; right: 0;
    border-left: none;
    border-top: none;
}
.mms-hero__card-holo {
    position: absolute;
    inset: 0;
    z-index: 3;
    -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 50%);
            mask-image: linear-gradient(to bottom, #000 40%, transparent 50%);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100% 300%;
            mask-size: 100% 300%;
    animation: mms-scan-holo 3.6s ease-in-out infinite;
}
@keyframes mms-scan-holo {
    0%, 100% { -webkit-mask-position: 0 100%; mask-position: 0 100%; }
    50%      { -webkit-mask-position: 0 0%;   mask-position: 0 0%; }
}
.mms-hero__card-holo-cone {
    position: absolute;
    left: 50%;
    bottom: 4.5%;
    width: 96%;
    height: 80%;
    translate: -50% 0;
    clip-path: polygon(45.5% 100%, 54.5% 100%, 100% 0, 0 0);
    background: linear-gradient(to top,
        rgba(129, 166, 160, 0.5),
        rgba(129, 166, 160, 0.08) 65%,
        transparent);
    animation: mms-holo-cone 3.4s linear infinite;
}
.mms-hero__card-holo-fig {
    position: absolute;
    top: 22%;
    left: 0;
    width: 100%;
    height: 78%;
    overflow: visible;
    -webkit-mask-image: repeating-linear-gradient(to bottom, #000 0 2.5px, transparent 2.5px 4px);
            mask-image: repeating-linear-gradient(to bottom, #000 0 2.5px, transparent 2.5px 4px);
}
.mms-hero__card-holo-fig use,
.mms-hero__card-holo-fig path {
    vector-effect: non-scaling-stroke;
}
.mms-holo-body {
    animation:
        mms-holo-flicker 3.4s linear infinite,
        mms-holo-jolt 8s linear infinite;
}
.mms-holo-l--glow {
    fill: none;
    stroke: rgba(129, 166, 160, 0.6);
    stroke-width: 7;
}
.mms-holo-l--back {
    fill: rgba(124, 104, 150, 0.45);
    animation: mms-holo-par-b 6s ease-in-out infinite;
}
.mms-holo-l--mid {
    fill: rgba(129, 166, 160, 0.5);
    animation: mms-holo-par-m 6s ease-in-out infinite;
}
.mms-holo-l--front {
    fill: url(#mms-holo-grad);
    stroke: rgba(234, 255, 250, 0.9);
    stroke-width: 1;
}
.mms-hero__card-holo-emit {

    position: absolute;
    left: 50%;
    bottom: 0.5%;
    width: 58%;
    height: 9%;
    translate: -50% 0;
    border-radius: 50%;
    background: radial-gradient(closest-side,
        #eafffa 0 22%,
        rgba(129, 166, 160, 0.8) 42%,
        rgba(129, 166, 160, 0.22) 70%,
        transparent);
    box-shadow: 0 0 14px rgba(129, 166, 160, 0.8), 0 0 30px rgba(129, 166, 160, 0.4);
    animation: mms-holo-emit 2.4s ease-in-out infinite;
}

.mms-hero__card-holo-tag {
    position: absolute;
    top: 3%;
    left: 50%;
    translate: -50% 0;
    z-index: 4;
}

.mms-hero__card-holo-tag::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 9px;
    background: linear-gradient(to bottom, rgba(129, 166, 160, 0.7), rgba(129, 166, 160, 0.15));
}
.mms-hero__card-holo-tag-box {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 7px 3px 6px;
    clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%, 0 6px);
    border: 1px solid rgba(129, 166, 160, 0.4);
    background: linear-gradient(160deg, rgba(26, 30, 36, 0.85), rgba(10, 12, 16, 0.72));
    box-shadow: inset 0 1px 0 rgba(234, 234, 234, 0.06);
    font-family: var(--mono);

    font-size: 7px;
    font-size: clamp(5.8px, 8.6cqi, 7.5px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(190, 222, 215, 0.95);
    white-space: nowrap;
    animation: mms-holo-tag 3.6s ease-in-out infinite;
}

.mms-hero__card-holo-tag-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(234, 255, 250, 0.22) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: mms-holo-tag-sheen 3.6s ease-in-out infinite;
}

.mms-hero__card-holo-tag-box i {
    position: relative;
    flex: none;
    width: 1.1em;
    height: 1.2em;
    border-bottom: 0.22em solid currentColor;
}
.mms-hero__card-holo-tag-box i::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -0.5em;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-bottom: 0.55em solid currentColor;
    animation: mms-holo-up 1.8s ease-in-out infinite;
}
.mms-hero__card-holo-tag-box i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.5em;
    margin-left: -0.12em;
    width: 0.24em;
    height: 0.55em;
    background: currentColor;
    animation: mms-holo-up 1.8s ease-in-out infinite;
}

@keyframes mms-holo-tag {
    0%, 100% { border-color: rgba(129, 166, 160, 0.35); color: rgba(190, 222, 215, 0.75); }
    50% {
        border-color: rgba(129, 166, 160, 0.95);
        color: #eafffa;
        box-shadow: inset 0 1px 0 rgba(234, 234, 234, 0.06), 0 0 12px -2px rgba(129, 166, 160, 0.7);
    }
}
@keyframes mms-holo-tag-sheen {
    0%, 42%   { transform: translateX(-120%); }
    58%, 100% { transform: translateX(120%); }
}
@keyframes mms-holo-up {
    0%, 100% { transform: translateY(0.8px); opacity: 0.65; }
    50%      { transform: translateY(-0.8px); opacity: 1; }
}

@keyframes mms-holo-flicker {
    0%, 100% { opacity: 0.92; }
    7%   { opacity: 0.76; }
    9%   { opacity: 0.95; }
    36%  { opacity: 0.84; }
    38%  { opacity: 0.96; }
    62%  { opacity: 0.78; }
    64%  { opacity: 0.93; }
}

@keyframes mms-holo-cone {
    0%, 100% { opacity: 0.85; }
    8%   { opacity: 0.62; }
    10%  { opacity: 0.9; }
    63%  { opacity: 0.68; }
    65%  { opacity: 0.95; }
}

@keyframes mms-holo-jolt {
    0%, 91%, 95%, 100% { transform: translateX(0) skewX(0); }
    92% { transform: translateX(-1.4px) skewX(-1.2deg); }
    93% { transform: translateX(1px) skewX(0.8deg); }
    94% { transform: translateX(-0.5px) skewX(0); }
}

@keyframes mms-holo-par-b {
    0%, 100% { transform: translateX(-2.6px); }
    50%      { transform: translateX(2.6px); }
}
@keyframes mms-holo-par-m {
    0%, 100% { transform: translateX(1.4px); }
    50%      { transform: translateX(-1.4px); }
}
@keyframes mms-holo-emit {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.7; }
}

.mms-hero.is-offscreen .mms-hero__multipass,
.mms-hero.is-offscreen .mms-hero__multipass *,
.mms-hero.is-offscreen .mms-hero__multipass *::before,
.mms-hero.is-offscreen .mms-hero__multipass *::after {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .mms-hero__card-holo,
    .mms-hero__card-holo-fig {
        -webkit-mask-image: none;
                mask-image: none;
    }
}

.mms-hero__card-data {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    min-width: 0;
}
.mms-hero__card-row {
    display: grid;
    grid-template-columns: clamp(46px, 6vw, 70px) 1fr;
    align-items: baseline;
    gap: 8px;
    padding: 2px 7px;
    background: rgba(129, 166, 160, 0.07);
    border-left: 2px solid rgba(129, 166, 160, 0.45);
}
.mms-hero__card-row:nth-child(even) {
    background: rgba(98, 85, 110, 0.10);
    border-left-color: rgba(154, 141, 165, 0.45);
}
.mms-hero__card-row dt {
    font-family: var(--mono);
    font-size: clamp(7px, 0.5vw, 8.5px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin: 0;
}
.mms-hero__card-row dd {
    font-weight: 400;
    font-size: clamp(9.5px, 0.78vw, 11.5px);
    color: var(--color-text);
    letter-spacing: 0.02em;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mms-hero__card-pass-foot {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    padding-top: clamp(4px, 0.6vw, 8px);
    border-top: 1px solid rgba(154, 141, 165, 0.14);
}
.mms-hero__card-bars {
    position: relative;
    display: block;
    flex: 1;
    height: clamp(14px, 1.8vw, 22px);
    background-image: repeating-linear-gradient(
        to right,
        var(--color-text) 0px, var(--color-text) 1px,
        transparent 1px, transparent 3px,
        var(--color-text) 3px, var(--color-text) 5px,
        transparent 5px, transparent 7px,
        var(--color-text) 7px, var(--color-text) 8px,
        transparent 8px, transparent 12px,
        var(--color-text) 12px, var(--color-text) 14px,
        transparent 14px, transparent 16px
    );
    opacity: 0.80;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
            mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.mms-hero__card-bars::after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: 0;
    width: 14%;
    background: linear-gradient(90deg, transparent, rgba(178, 216, 209, 0.85), transparent);
    transform: translateX(-110%);
    opacity: 0;
    animation: mms-barscan 5.6s linear infinite;
    pointer-events: none;
}
@keyframes mms-barscan {
    0%, 52%   { transform: translateX(-110%); opacity: 0; }
    56%       { opacity: 0.9; }
    70%       { transform: translateX(740%); opacity: 0.9; }
    74%, 100% { transform: translateX(740%); opacity: 0; }
}
.mms-hero__card-permit {
    font-family: var(--mono);
    font-size: clamp(7px, 0.55vw, 9px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    white-space: nowrap;
}

@keyframes mms-line-reveal {
    to { clip-path: inset(0 0 0 0); transform: translateY(0); opacity: 1; }
}
@keyframes mms-fade {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes mms-blob {
    0%, 100% { border-radius: 64% 36% 58% 42% / 42% 60% 40% 58%; transform: translate3d(0, 0, 0) rotate(0deg); }
    33%      { border-radius: 38% 62% 40% 60% / 58% 40% 62% 38%; transform: translate3d(2%, -2%, 0) rotate(20deg); }
    66%      { border-radius: 56% 44% 66% 34% / 36% 58% 44% 64%; transform: translate3d(-3%, 1%, 0) rotate(-12deg); }
}
@keyframes mms-holo {
    to { transform: rotate(360deg); }
}
@keyframes mms-float-front {
    0%, 100% { transform: translate(-6%, -4%)   rotate(-3deg)   rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
    50%      { transform: translate(-6%, -6.5%) rotate(-2.4deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
}
@keyframes mms-float-back {
    0%, 100% { transform: translate(10%, 14%) rotate(6deg); }
    50%      { transform: translate(10.5%, 16%) rotate(6.8deg); }
}
@keyframes mms-led {
    0%, 100% { opacity: 1;   box-shadow: 0 0 10px var(--color-cta), 0 0 0 2px rgba(129, 166, 160, 0.20); }
    50%      { opacity: .35; box-shadow: 0 0 4px  var(--color-cta), 0 0 0 2px rgba(129, 166, 160, 0.05); }
}
@keyframes mms-scan {
    0%, 100% { transform: translateY(0%);   opacity: 0.65; }
    50%      { transform: translateY(260%); opacity: 0.30; }
}

@keyframes mms-pass-emit {
    0%   { transform: translateY(28px) scale(0.965); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes mms-pass-boot {
    0%   { opacity: 0.85; }
    100% { opacity: 0; }
}

@keyframes mms-intro-out {
    0%, 70% { opacity: 1; transform: scale(1); }
    100%    { opacity: 0; transform: scale(1.06); visibility: hidden; }
}
@keyframes mms-intro-scan {
    0%   { transform: translateY(0);     opacity: 0; }
    12%  { opacity: 0.9; }
    55%  { opacity: 0.9; }
    100% { transform: translateY(100vh); opacity: 0; }
}
@keyframes mms-intro-seal {
    to { opacity: 1; transform: scale(1); }
}
@keyframes mms-intro-chip-body {
    from { opacity: 0; transform: scale(0.86); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes mms-intro-trace {
    0%   { stroke-dashoffset: 1; opacity: 0; }
    25%  { opacity: 0.65; }
    100% { stroke-dashoffset: 0; opacity: 0.65; }
}
@keyframes mms-intro-spark {
    0%   { opacity: 0; transform: scale(0.4); }
    60%  { opacity: 1; transform: scale(1.18); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes mms-intro-progress {
    to { transform: scaleX(1); }
}
@keyframes mms-intro-charge {
    0%   { opacity: 0; }
    40%  { opacity: 0.8; }
    100% { opacity: 0; }
}
@keyframes mms-intro-decode {
    to { clip-path: inset(0 0 0 0); }
}
@keyframes mms-intro-caret {
    0%, 49%   { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@keyframes mms-intro-core-out {
    to { opacity: 0; transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .mms-hero *,
    .mms-hero *::before,
    .mms-hero *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .mms-hero__title-line {
        clip-path: none;
        transform: none;
        opacity: 1;
    }
}
@media (max-width: 959px) {
    .mms-hero__multipass {
        max-width: min(440px, 90vw);
        aspect-ratio: 1.3 / 1;
        margin-block: clamp(8px, 2vw, 18px);
    }
}

@media (max-width: 379px) {
    .mms-hero__multipass { aspect-ratio: 1.2 / 1; }
    .mms-hero__card { aspect-ratio: 1.4 / 1; }
    .mms-hero__card-inner { grid-template-columns: 44px 1fr; }
    .mms-hero__card-pass { padding: 10px 11px; }
    .mms-hero__card-pass-head { gap: 6px; }
    .mms-hero__card-title { font-size: clamp(13px, 4.8vw, 18px); }
    .mms-hero__card-tier { padding: 2px 5px; }
    .mms-hero__card-rail-id { letter-spacing: 0.22em; }
    .mms-hero__card-pass-body { grid-template-columns: 58px 1fr; gap: 9px; }
    .mms-hero__card-row { grid-template-columns: 40px 1fr; gap: 6px; }
    .mms-hero__card-permit { letter-spacing: 0.12em; }
}

@media (hover: none) {
    .mms-hero__blob {
        animation: none;
        will-change: auto;
    }
    .mms-hero__card--front::before {
        animation: none;
        opacity: 0;
    }
}

@media (max-width: 309px) {
    .mms-hero__card-tier { display: none; }
    .mms-hero__card-row { padding: 1px 6px; }
    .mms-hero__card-row dd { font-size: 9px; }
}

.mms-intro-seen .mms-intro { display: none; }

.mms-intro {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    overflow: hidden;

    background:
        radial-gradient(rgba(154, 141, 165, 0.05) 1px, transparent 1px) 0 0 / 30px 30px,
        radial-gradient(ellipse at 50% 42%, #15161d 0%, var(--color-bg) 62%);
    animation: mms-intro-out 1500ms cubic-bezier(0.5, 0, 0.2, 1) forwards;
    will-change: opacity, transform;
}

.mms-intro__scan {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cta), transparent);
    box-shadow: 0 0 18px 2px rgba(129, 166, 160, 0.55);
    opacity: 0;
    animation: mms-intro-scan 950ms ease-in-out 100ms forwards;
}
.mms-intro__core {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: mms-intro-core-out 320ms ease-in 1000ms forwards;
}

.mms-intro__seal {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    padding: 14px;

    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(129, 166, 160, 0.16) 0%, transparent 12%),
        radial-gradient(ellipse at 30% 20%, rgba(129, 166, 160, 0.20), transparent 55%),
        linear-gradient(160deg, #1c2029 0%, #11141d 55%, #0a0c13 100%);
    box-shadow:
        0 30px 70px -28px rgba(0, 0, 0, 0.85),
        inset 0 1px 0 rgba(234, 234, 234, 0.10),
        inset 0 0 0 1px rgba(129, 166, 160, 0.22);
    opacity: 0;
    transform: scale(0.82);
    animation: mms-intro-seal 600ms cubic-bezier(0.2, 0.7, 0.2, 1) 60ms forwards;
}

.mms-intro__seal::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(129, 166, 160, 0.55), transparent 65%);
    mix-blend-mode: screen;
    opacity: 0;
    pointer-events: none;
    animation: mms-intro-charge 800ms ease-out 860ms forwards;
}

.mms-intro__chip {
    width: 100%;
    height: 100%;
    color: var(--color-cta);
    overflow: visible;
}
.mms-intro__chip-body,
.mms-intro__chip-bezel {
    fill: none;
    stroke: rgba(234, 234, 234, 0.55);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: mms-intro-chip-body 380ms cubic-bezier(0.2, 0.7, 0.2, 1) 80ms forwards;
}
.mms-intro__chip-bezel { animation-delay: 160ms; }
.mms-intro__chip-trace {
    fill: none;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    animation: mms-intro-trace 340ms ease-out forwards;
}
.mms-intro__chip-pad,
.mms-intro__chip-core {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: mms-intro-spark 360ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.mms-intro__chip-trace:nth-child(1) { animation-delay: 220ms; }
.mms-intro__chip-trace:nth-child(2) { animation-delay: 260ms; }
.mms-intro__chip-trace:nth-child(3) { animation-delay: 250ms; }
.mms-intro__chip-trace:nth-child(4) { animation-delay: 300ms; }
.mms-intro__chip-trace:nth-child(5) { animation-delay: 300ms; }
.mms-intro__chip-trace:nth-child(6) { animation-delay: 340ms; }
.mms-intro__chip-trace:nth-child(7) { animation-delay: 320ms; }
.mms-intro__chip-trace:nth-child(8) { animation-delay: 360ms; }
.mms-intro__chip-pad:nth-child(1) { animation-delay: 420ms; }
.mms-intro__chip-pad:nth-child(2) { animation-delay: 460ms; }
.mms-intro__chip-pad:nth-child(3) { animation-delay: 450ms; }
.mms-intro__chip-pad:nth-child(4) { animation-delay: 500ms; }
.mms-intro__chip-pad:nth-child(5) { animation-delay: 470ms; }
.mms-intro__chip-pad:nth-child(6) { animation-delay: 520ms; }
.mms-intro__chip-pad:nth-child(7) { animation-delay: 490ms; }
.mms-intro__chip-pad:nth-child(8) { animation-delay: 540ms; }
.mms-intro__chip-core:nth-child(1) { animation-delay: 600ms; }
.mms-intro__chip-core:nth-child(2) { animation-delay: 650ms; }
.mms-intro__chip-core:nth-child(3) { animation-delay: 690ms; }
.mms-intro__chip-core:nth-child(4) { animation-delay: 740ms; }

.mms-intro__progress {
    position: relative;
    width: 132px;
    height: 2px;
    border-radius: 2px;
    background: rgba(234, 234, 234, 0.10);
    overflow: hidden;
    opacity: 0;
    animation: mms-fade 400ms ease-out 220ms forwards;
}
.mms-intro__progress i {
    position: absolute;
    inset: 0;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--color-cta), rgba(129, 166, 160, 0.4));
    animation: mms-intro-progress 760ms cubic-bezier(0.3, 0.6, 0.2, 1) 240ms forwards;
}

.mms-intro__id {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    opacity: 0;
    animation: mms-fade 500ms ease-out 320ms forwards;
}
.mms-intro__id b {
    color: var(--color-cta);
    font-weight: 700;
}

.mms-intro__status {
    position: relative;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--color-cta);
    clip-path: inset(0 100% 0 0);
    animation: mms-intro-decode 480ms steps(13, end) 420ms forwards;
}
.mms-intro__status::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 5px;
    height: 11px;
    transform: translateY(-50%);
    background: var(--color-cta);
    opacity: 0;
    animation: mms-intro-caret 460ms steps(1, end) 420ms 3;
}

@media (prefers-reduced-motion: reduce) {
    .mms-intro { display: none !important; }
    .mms-hero__eyebrow,
    .mms-hero__subtitle,
    .mms-hero__cta-block,
    .mms-hero__multipass {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    .mms-hero__multipass::after { display: none !important; }
}

@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {

        .mms-hero__inner {
            animation: mms-hero-exit linear both;
            animation-timeline: scroll(root block);
            animation-range: 0 72vh;
        }

        .mms-reveal {
            animation: mms-reveal-up linear both;
            animation-timeline: view();
            animation-range: entry 4% cover 24%;
        }
    }
}
@keyframes mms-hero-exit {
    to { opacity: 0; transform: translateY(-7%) scale(0.972); }
}
@keyframes mms-reveal-up {
    from { opacity: 0; transform: translateY(46px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mms-portrait {
    padding-block: clamp(5rem, 10vw, 9rem);
}

.mms-portrait::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(129, 166, 160, 0.15) 30%,
        rgba(129, 166, 160, 0.35) 50%,
        rgba(129, 166, 160, 0.15) 70%,
        transparent 100%);
    pointer-events: none;
}

.mms-portrait .mms-eyebrow {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.mms-portrait__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
@media (min-width: 768px) {
    .mms-portrait__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        grid-template-rows: auto auto auto;
        column-gap: clamp(3rem, 6vw, 6rem);
        row-gap: clamp(1.5rem, 3vw, 2.25rem);
    }

    .mms-portrait__id,
    .mms-portrait__copy {
        display: contents;
    }

    .mms-portrait__name   { grid-column: 1; grid-row: 1; }
    .mms-portrait__quote  { grid-column: 2; grid-row: 1; margin: 0; }

    .mms-portrait__bio    { grid-column: 1; grid-row: 2; margin-top: 0; }
    .mms-portrait__figure {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
    }
}

.mms-portrait__bio {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 56ch;
}
.mms-portrait__bio p {
    margin: 0;
    font-size: clamp(0.9375rem, 1.05vw, 1rem);
    line-height: 1.7;
    color: var(--color-text);
}
.mms-portrait__bio strong {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.mms-portrait__copy {
    max-width: 56ch;
}

.mms-portrait__quote {
    margin: 0 0 1.75rem;
    padding-left: 1.25rem;
    text-align: center;
    border-left: 1px solid rgba(129, 166, 160, 0.35);
    border-right: 1px solid rgba(129, 166, 160, 0.35);
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.35;
    color: var(--color-text);
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.mms-portrait__figure {
    position: relative;
    max-width: 500px;
    max-height: 500px;
    margin: auto auto 2rem auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(154, 141, 165, 0.18);
    background: linear-gradient(165deg, rgba(51, 51, 58, 0.30), rgba(6, 6, 7, 0.45));
    box-shadow:
        0 30px 80px -22px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(234, 234, 234, 0.06);
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}
@media (min-width: 1024px) {
    .mms-portrait__figure {
    margin: auto auto -7rem auto;
}

}
.mms-portrait__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.mms-portrait__link {
    align-self: flex-start;
    margin-top: 0.5rem;
    font-family: var(--mono);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-cta);
    text-decoration: none;
    transition: color 250ms ease;
}
.mms-portrait__link:hover,
.mms-portrait__link:focus-visible {
    color: #d8efe9;
    outline: none;
}
@media (max-width: 768px) {
    .mms-portrait__link {
        align-self: center;
    }
}

.mms-issuance {
    isolation: isolate;
    overflow: hidden;
}

.mms-issuance::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 20% 30%, rgba(129, 166, 160, 0.06), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.mms-issuance__lede {
    margin: 0 0 3rem;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.55;
    color: var(--color-text-secondary);
    max-width: 52ch;
}

.mms-issuance__selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .mms-issuance__selector {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.mms-persona {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.95rem 1.05rem 1.3rem;
    background:
        linear-gradient(180deg, rgba(234, 234, 234, 0.045), transparent 20%),
        linear-gradient(165deg, rgba(51, 51, 58, 0.34), rgba(6, 6, 7, 0.52));
    border: 1px solid rgba(154, 141, 165, 0.16);
    border-radius: 12px;
    color: var(--color-text);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
    transition:
        border-color 350ms cubic-bezier(0.2, 0.7, 0.2, 1),
        transform    350ms cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow   350ms cubic-bezier(0.2, 0.7, 0.2, 1),
        background   350ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mms-persona::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 82% 6%, rgba(129, 166, 160, 0.16), transparent 62%);
    opacity: 0;
    transition: opacity 350ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mms-persona::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 7px;
    height: 4px;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(90deg,
        transparent 0 4px,
        rgba(154, 141, 165, 0.38) 4px 7px,
        transparent 7px 11px);
    opacity: 0.5;
    transition: background 350ms, opacity 350ms, box-shadow 350ms;
}
.mms-persona > * { position: relative; z-index: 1; }

.mms-persona:hover,
.mms-persona:focus-visible {
    border-color: rgba(129, 166, 160, 0.5);
    transform: translateY(-3px);
    outline: none;
}
.mms-persona:hover::before,
.mms-persona:focus-visible::before,
.mms-persona.is-active::before { opacity: 1; }
.mms-persona:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(129, 166, 160, 0.7);
}

.mms-persona.is-active {
    border-color: rgba(129, 166, 160, 0.62);
    background:
        linear-gradient(180deg, rgba(234, 234, 234, 0.06), transparent 20%),
        linear-gradient(165deg, rgba(129, 166, 160, 0.14), rgba(51, 51, 58, 0.4));
    box-shadow:
        0 16px 42px -18px rgba(129, 166, 160, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.mms-persona.is-active::after {
    background: repeating-linear-gradient(90deg,
        transparent 0 4px,
        rgba(129, 166, 160, 0.75) 4px 7px,
        transparent 7px 11px);
    opacity: 0.95;
    box-shadow: 0 0 10px rgba(129, 166, 160, 0.45);
}

.mms-persona__code {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.mms-persona__chip {
    position: relative;
    flex: none;
    width: 22px;
    height: 16px;
    border-radius: 3px;
    background: linear-gradient(135deg, #c9d4cf 0%, #8fa39d 38%, #e8efe9 52%, #8fa39d 66%, #5f726c 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.32), inset 0 1px 1px rgba(255, 255, 255, 0.45);
    transition: filter 350ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-persona__chip::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 4px; bottom: 4px;
    border-top: 1px solid rgba(40, 50, 48, 0.5);
    border-bottom: 1px solid rgba(40, 50, 48, 0.5);
}
.mms-persona__chip::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(40, 50, 48, 0.5);
}
.mms-persona.is-active .mms-persona__chip {
    filter: drop-shadow(0 0 6px rgba(129, 166, 160, 0.55));
}

.mms-persona__led {
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(154, 141, 165, 0.3);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
    transition: background 350ms, box-shadow 350ms;
}
.mms-persona.is-active .mms-persona__led {
    background: var(--color-cta);
    box-shadow: 0 0 8px var(--color-cta);
    animation: mms-pulse 1.5s ease-in-out infinite;
}

.mms-persona__label {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-text);
    line-height: 1.15;
}
.mms-persona__desc {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.3;
}

.mms-persona[data-offer="vip"] .mms-persona__chip {
    background: linear-gradient(135deg, #e6d29a 0%, #b89a5c 38%, #fff2cf 52%, #b89a5c 66%, #8a7038 100%);
}
.mms-persona[data-offer="vip"].is-active {
    border-color: rgba(255, 220, 180, 0.55);
    background:
        linear-gradient(180deg, rgba(255, 240, 220, 0.06), transparent 20%),
        linear-gradient(165deg, rgba(255, 220, 180, 0.13), rgba(51, 51, 58, 0.4));
    box-shadow:
        0 16px 42px -18px rgba(255, 220, 180, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.mms-persona[data-offer="vip"].is-active::after {
    background: repeating-linear-gradient(90deg,
        transparent 0 4px,
        rgba(255, 220, 180, 0.8) 4px 7px,
        transparent 7px 11px);
    box-shadow: 0 0 10px rgba(255, 220, 180, 0.45);
}
.mms-persona[data-offer="vip"].is-active .mms-persona__led {
    background: #e8c486;
    box-shadow: 0 0 8px #e8c486;
}
.mms-persona[data-offer="vip"].is-active .mms-persona__chip {
    filter: drop-shadow(0 0 6px rgba(255, 220, 180, 0.6));
}

.mms-persona__pop {
    position: absolute;
    top: 15px;
    right: -38px;
    z-index: 3;
    width: 140px;
    padding: 0.24rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    transform: rotate(45deg);
    transform-origin: center;
    background: linear-gradient(90deg, rgba(129, 166, 160, 0.95), rgba(98, 85, 110, 0.92));
    box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.55);
    font-family: var(--mono);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #eaf5f1;
    white-space: nowrap;
    pointer-events: none;
}
.mms-persona__pop-star {
    color: #d8efe9;
    text-shadow: 0 0 8px rgba(129, 166, 160, 0.95);
}

.mms-issuance__pass {
    max-width: 820px;
    margin: auto;
    margin-bottom: 2.5rem;
}

.mms-pass {
    position: relative;
    border: 1px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
    transition:
        background    600ms cubic-bezier(0.2, 0.7, 0.2, 1),
        border-color  600ms cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow    600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mms-pass[data-tier="essentiel"] {
    background:
        linear-gradient(165deg, #1f222b 0%, #14171f 50%, #0a0c12 100%);
    border-color: rgba(154, 141, 165, 0.16);
    box-shadow:
        0 24px 60px -22px rgba(0, 0, 0, 0.50),
        inset 0 1px 0 rgba(234, 234, 234, 0.04);
}

.mms-pass[data-tier="prioritaire"] {
    background:
        linear-gradient(180deg, rgba(234, 234, 234, 0.07) 0%, transparent 12%),
        radial-gradient(ellipse at 30% 25%, rgba(129, 166, 160, 0.12) 0%, transparent 55%),
        linear-gradient(165deg, #232732 0%, #16192a 50%, #0c0e16 100%);
    border-color: rgba(129, 166, 160, 0.35);
    box-shadow:
        0 28px 70px -20px rgba(0, 0, 0, 0.55),
        0 0 28px -10px rgba(129, 166, 160, 0.20),
        inset 0 1px 0 rgba(234, 234, 234, 0.08);
}

.mms-pass[data-tier="illimite"] {
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px, transparent 3px,
            rgba(234, 234, 234, 0.018) 3px, rgba(234, 234, 234, 0.018) 4px),
        radial-gradient(ellipse at 25% 25%, rgba(129, 166, 160, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 75%, rgba(98, 85, 110, 0.22) 0%, transparent 55%),
        linear-gradient(180deg, rgba(234, 234, 234, 0.06) 0%, transparent 10%),
        linear-gradient(165deg, #2a2e3a 0%, #181b28 50%, #0c0e16 100%);
    border-color: rgba(129, 166, 160, 0.55);
    box-shadow:
        0 30px 80px -22px rgba(0, 0, 0, 0.55),
        0 0 32px -10px rgba(129, 166, 160, 0.32),
        0 0 44px -16px rgba(98, 85, 110, 0.32),
        inset 0 1px 0 rgba(234, 234, 234, 0.10);
}

.mms-pass[data-tier="vip"] {
    background:

        linear-gradient(115deg,
            transparent 0%,
            rgba(129, 166, 160, 0.10) 30%,
            rgba(255, 220, 180, 0.10) 50%,
            rgba(98, 85, 110, 0.12) 70%,
            transparent 100%),

        linear-gradient(180deg, rgba(234, 234, 234, 0.10) 0%, transparent 12%),

        radial-gradient(ellipse at 20% 20%, rgba(129, 166, 160, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(98, 85, 110, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 220, 180, 0.06) 0%, transparent 70%),

        linear-gradient(165deg, #2d3140 0%, #1a1d2e 50%, #0c0e16 100%);
    border-color: rgba(255, 220, 180, 0.42);
    box-shadow:
        0 30px 90px -20px rgba(0, 0, 0, 0.60),
        0 0 40px -12px rgba(129, 166, 160, 0.32),
        0 0 60px -18px rgba(255, 220, 180, 0.25),
        inset 0 1px 0 rgba(255, 220, 180, 0.14);
}

.mms-pass[data-tier="vip"] .mms-pass__live {
    color: rgba(255, 220, 180, 0.90);
}
.mms-pass[data-tier="vip"] .mms-pass__live::before {
    background: #e8c486;
    box-shadow: 0 0 8px #e8c486;
}

.mms-pass::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 3px,
        rgba(234, 234, 234, 0.018) 3px,
        rgba(234, 234, 234, 0.018) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.mms-pass__scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(129, 166, 160, 0.35) 50%,
        transparent 100%);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}
.mms-pass.is-updating .mms-pass__scan {
    animation: mms-scan-down 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mms-pass__header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(154, 141, 165, 0.18);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: padding-top 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mms-pass__popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    height: 2.3rem;
    padding: 0 1rem;
    background: linear-gradient(90deg, rgba(129, 166, 160, 0.22), rgba(98, 85, 110, 0.20));
    border-bottom: 1px solid rgba(129, 166, 160, 0.40);
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d8efe9;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition:
        opacity   400ms cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-pass__popular-star {
    color: var(--color-cta);
    text-shadow: 0 0 10px var(--color-cta);
}
.mms-pass[data-tier="prioritaire"] .mms-pass__popular {
    opacity: 1;
    transform: translateY(0);
}
.mms-pass[data-tier="prioritaire"] .mms-pass__header {
    padding-top: calc(1rem + 2.3rem);
}
.mms-pass__brand {
    color: var(--color-text);
    font-weight: 700;
}
.mms-pass__brand b {
    font-weight: 300;
    color: var(--color-cta);
    margin: 0 0.18em;
}
.mms-pass__live {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    color: var(--color-cta);
}
.mms-pass__live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-cta);
    box-shadow: 0 0 8px var(--color-cta);
    animation: mms-pulse 1.5s ease-in-out infinite;
}

.mms-pass__body {
    position: relative;
    z-index: 2;
    display: grid;

    grid-template-columns: 1fr clamp(84px, 26vw, 120px);
    gap: 1.1rem;
    align-items: center;
    padding: 1.35rem 1.15rem;
}
@media (min-width: 640px) {
    .mms-pass__body {
        grid-template-columns: minmax(0, 1fr) clamp(170px, 30%, 230px);
        gap: 2rem;
        padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
    }
}

.mms-pass__identity {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.mms-pass__label {
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.mms-pass__name {
    margin: 0.4rem 0 0;
    font-size: clamp(1.55rem, 5.5vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.02;
    color: var(--color-text);
    transition: opacity 250ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-pass__tagline {
    margin: 0.7rem 0 0;
    max-width: 34ch;
    font-size: clamp(0.85rem, 2.4vw, 0.95rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.45;
    color: var(--color-text-secondary);
    transition: opacity 250ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-pass__level {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45em;
    margin-top: clamp(0.9rem, 2.6vw, 1.4rem);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}
.mms-pass__level-num {
    font-weight: 700;
    font-style: normal;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: var(--color-cta);
}
.mms-pass__level i { font-style: normal; opacity: 0.55; }

.mms-pass[data-tier="essentiel"]   .mms-pass__level-num::after { content: "01"; }
.mms-pass[data-tier="prioritaire"] .mms-pass__level-num::after { content: "02"; }
.mms-pass[data-tier="illimite"]    .mms-pass__level-num::after { content: "03"; }
.mms-pass[data-tier="vip"]         .mms-pass__level-num::after { content: "04"; }
.mms-pass[data-tier="vip"]         .mms-pass__level-num { color: #e8c486; }

.mms-pass.is-updating .mms-pass__name,
.mms-pass.is-updating .mms-pass__tagline {
    opacity: 0;
}

.mms-pass__viz {
    display: grid;
    place-items: center;
    min-width: 0;
}
.mms-pass__chipgraph {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1;
    overflow: visible;
}

.mms-chip__body {
    fill: rgba(129, 166, 160, 0.05);
    stroke: rgba(154, 141, 165, 0.45);
    stroke-width: 1.6;
    transition: stroke 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-chip__bezel {
    fill: none;
    stroke: rgba(154, 141, 165, 0.22);
    stroke-width: 1.1;
}
.mms-pass[data-tier="prioritaire"] .mms-chip__body,
.mms-pass[data-tier="illimite"]    .mms-chip__body { stroke: rgba(129, 166, 160, 0.6); }
.mms-pass[data-tier="vip"]         .mms-chip__body { stroke: rgba(255, 220, 180, 0.65); }

.mms-chip__trace {
    fill: none;
    stroke: rgba(154, 141, 165, 0.16);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke 500ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-chip__pad {
    fill: rgba(154, 141, 165, 0.20);
    transition:
        fill   500ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-chip__core {
    fill: rgba(154, 141, 165, 0.18);
    transition:
        fill   500ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-chip__crown {
    fill: #e8c486;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center bottom;
    transform: translateY(4px) scale(0.82);
    filter: drop-shadow(0 0 6px rgba(255, 220, 180, 0.6));
    transition:
        opacity   450ms ease,
        transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mms-pass[data-tier="essentiel"]   .mms-chip__trace:is([data-trace="1"], [data-trace="2"]),
.mms-pass[data-tier="prioritaire"] .mms-chip__trace:is([data-trace="1"], [data-trace="2"], [data-trace="3"], [data-trace="4"]),
.mms-pass[data-tier="illimite"]    .mms-chip__trace:is([data-trace="1"], [data-trace="2"], [data-trace="3"], [data-trace="4"], [data-trace="5"], [data-trace="6"]),
.mms-pass[data-tier="vip"]         .mms-chip__trace {
    stroke: rgba(129, 166, 160, 0.85);
    stroke-width: 1.8;
    stroke-dasharray: 7 9;
    filter: drop-shadow(0 0 4px rgba(129, 166, 160, 0.45));
    animation: mms-chip-flow 1.1s linear infinite;
}
.mms-pass[data-tier="essentiel"]   .mms-chip__pad:is([data-trace="1"], [data-trace="2"]),
.mms-pass[data-tier="prioritaire"] .mms-chip__pad:is([data-trace="1"], [data-trace="2"], [data-trace="3"], [data-trace="4"]),
.mms-pass[data-tier="illimite"]    .mms-chip__pad:is([data-trace="1"], [data-trace="2"], [data-trace="3"], [data-trace="4"], [data-trace="5"], [data-trace="6"]),
.mms-pass[data-tier="vip"]         .mms-chip__pad {
    fill: rgba(129, 166, 160, 0.95);
    filter: drop-shadow(0 0 4px rgba(129, 166, 160, 0.5));
}

.mms-pass[data-tier="essentiel"]   .mms-chip__core[data-core="1"],
.mms-pass[data-tier="prioritaire"] .mms-chip__core:is([data-core="1"], [data-core="2"]),
.mms-pass[data-tier="illimite"]    .mms-chip__core:is([data-core="1"], [data-core="2"], [data-core="3"]),
.mms-pass[data-tier="vip"]         .mms-chip__core {
    fill: var(--color-cta);
    filter: drop-shadow(0 0 5px rgba(129, 166, 160, 0.6));
}

.mms-pass[data-tier="vip"] .mms-chip__trace {
    stroke: rgba(255, 220, 180, 0.90);
    filter: drop-shadow(0 0 5px rgba(255, 220, 180, 0.5));
}
.mms-pass[data-tier="vip"] .mms-chip__pad {
    fill: rgba(255, 220, 180, 0.95);
    filter: drop-shadow(0 0 5px rgba(255, 220, 180, 0.55));
}
.mms-pass[data-tier="vip"] .mms-chip__core {
    fill: #e8c486;
    filter: drop-shadow(0 0 6px rgba(255, 220, 180, 0.65));
}
.mms-pass[data-tier="vip"] .mms-chip__crown {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes mms-chip-flow { to { stroke-dashoffset: -16; } }

.mms-pass__footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 0.9rem clamp(1.25rem, 3vw, 2rem) 1.1rem;
    border-top: 1px solid rgba(154, 141, 165, 0.18);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.20));
}
.mms-pass__bars {
    display: block;
    flex: 1 1 120px;
    height: 20px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(234, 234, 234, 0.5) 0px, rgba(234, 234, 234, 0.5) 1px,
        transparent 1px, transparent 3px,
        rgba(234, 234, 234, 0.5) 3px, rgba(234, 234, 234, 0.5) 5px,
        transparent 5px, transparent 7px,
        rgba(234, 234, 234, 0.5) 7px, rgba(234, 234, 234, 0.5) 8px,
        transparent 8px, transparent 12px,
        rgba(234, 234, 234, 0.5) 12px, rgba(234, 234, 234, 0.5) 14px,
        transparent 14px, transparent 16px
    );
    opacity: 0.55;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
            mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.mms-pass__cta { flex: none; }
@media (max-width: 480px) {
    .mms-pass__cta { flex: 1 1 100%; justify-content: center; }
}

.mms-pass__brandwrap {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.mms-pass__chip {
    position: relative;
    flex: none;
    width: 26px;
    height: 19px;
    border-radius: 4px;
    background: linear-gradient(135deg, #c9d4cf 0%, #8fa39d 36%, #e8efe9 52%, #8fa39d 66%, #5f726c 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.45);
    overflow: hidden;
}
.mms-pass__chip::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 5px; bottom: 5px;
    border-top: 1px solid rgba(40, 50, 48, 0.5);
    border-bottom: 1px solid rgba(40, 50, 48, 0.5);
}
.mms-pass__chip::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(40, 50, 48, 0.5);
}

.mms-pass[data-tier="vip"] .mms-pass__chip {
    background: linear-gradient(135deg, #e6d29a 0%, #b89a5c 36%, #fff2cf 52%, #b89a5c 66%, #8a7038 100%);
}
.mms-pass[data-tier="vip"] .mms-pass__chip::before,
.mms-pass[data-tier="vip"] .mms-pass__chip::after {
    border-color: rgba(70, 52, 20, 0.5);
    background: rgba(70, 52, 20, 0.5);
}

.mms-pass__sheen {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(115deg,
        transparent 35%,
        rgba(255, 255, 255, 0.08) 46%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(255, 255, 255, 0.08) 54%,
        transparent 65%);
    background-size: 250% 250%;
    background-position: 180% 0;
}
@media (hover: hover) and (pointer: fine) {
    .mms-pass:hover .mms-pass__sheen {
        opacity: 1;
        animation: mms-pass-sheen 900ms ease-out forwards;
    }
}
@keyframes mms-pass-sheen {
    from { background-position: 180% 0; }
    to   { background-position: -60% 0; }
}

.mms-expertise {
    position: relative;
    isolation: isolate;
    padding-block: clamp(4.5rem, 9vw, 8rem);
    overflow: hidden;
}

.mms-expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(46% 52% at 18% 30%, rgba(129, 166, 160, 0.12), transparent 72%),
        radial-gradient(50% 56% at 84% 72%, rgba(98, 85, 110, 0.13), transparent 74%);

    -webkit-mask: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
            mask: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
    animation: mms-exp-aurora 15s ease-in-out infinite alternate;
}
.mms-expertise__lede {
    margin: 0 0 clamp(2.25rem, 4.5vw, 3.25rem);
    max-width: 54ch;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.55;
    color: var(--color-text-secondary);
}

.mms-expertise__board {
    position: relative;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.mms-expertise__sweep {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    border-radius: 18px;
    pointer-events: none;
}
.mms-expertise__sweep::before {
    content: "";
    position: absolute;
    top: -25%;
    bottom: -25%;
    left: 0;
    width: 38%;

    transform: translateX(-160%) skewX(-12deg);
    background: linear-gradient(100deg, transparent, rgba(129, 166, 160, 0.06), rgba(234, 234, 234, 0.05), rgba(129, 166, 160, 0.06), transparent);
    animation: mms-exp-sweep 7.5s ease-in-out infinite;
}

.mms-expertise__grid {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: clamp(0.7rem, 1.4vw, 1rem);
    grid-template-columns: 1fr;
}
.mms-expertise__cell { display: flex; min-width: 0; }
@media (min-width: 560px) {
    .mms-expertise__grid { grid-template-columns: repeat(2, 1fr); }
    .mms-expertise__cell--5 { grid-column: span 2; }
}
@media (min-width: 860px) {
    .mms-expertise__grid { grid-template-columns: repeat(6, 1fr); }
    .mms-expertise__cell--1,
    .mms-expertise__cell--2 { grid-column: span 3; }
    .mms-expertise__cell--3,
    .mms-expertise__cell--4,
    .mms-expertise__cell--5 { grid-column: span 2; }
}

.mms-expertise__tile {
    --mx: 50%;
    --my: 50%;
    position: relative;
    isolation: isolate;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: clamp(140px, 18vw, 184px);
    padding: clamp(1.1rem, 1.8vw, 1.55rem);
    border-radius: 16px;
    background: linear-gradient(168deg, rgba(30, 30, 36, 0.85), rgba(10, 10, 13, 0.72));
    border: 1px solid rgba(154, 141, 165, 0.14);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transform-style: preserve-3d;
    transition:
        transform    220ms ease,
        border-color 300ms ease,
        box-shadow   300ms ease;
}
.mms-expertise__tile:hover {
    border-color: rgba(129, 166, 160, 0.30);
    box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.7);
}
.mms-expertise__tile:focus-visible {
    outline: 2px solid rgba(129, 166, 160, 0.65);
    outline-offset: 3px;
}

.mms-expertise__tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(240px circle at var(--mx) var(--my), rgba(129, 166, 160, 0.14), transparent 60%);
    opacity: 0;
    transition: opacity 300ms ease;
}
.mms-expertise__tile:hover::before { opacity: 1; }

.mms-expertise__spot {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    padding: 1px;
    pointer-events: none;
    background: radial-gradient(200px circle at var(--mx) var(--my), rgba(129, 166, 160, 0.85), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 300ms ease;
}
.mms-expertise__tile:hover .mms-expertise__spot { opacity: 1; }

.mms-expertise__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transform: translateZ(22px);
}
.mms-expertise__glyph {
    display: grid;
    place-items: center;
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(165deg, rgba(129, 166, 160, 0.14), rgba(10, 10, 13, 0.4));
    border: 1px solid rgba(129, 166, 160, 0.24);
    color: var(--color-cta);
}
.mms-expertise__glyph svg { width: 22px; height: 22px; }
.mms-expertise__code {
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}
.mms-expertise__name {
    position: relative;
    z-index: 2;
    margin: auto 0 0.35rem;
    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-text);
    transform: translateZ(28px);
}
.mms-expertise__essence {
    position: relative;
    z-index: 2;
    font-size: clamp(0.84rem, 1vw, 0.92rem);
    line-height: 1.4;
    color: var(--color-text-secondary);
    transform: translateZ(18px);
}
.mms-expertise__arrow {
    position: absolute;
    z-index: 2;
    top: clamp(1.1rem, 1.8vw, 1.55rem);
    right: clamp(1.1rem, 1.8vw, 1.55rem);
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1), color 300ms ease;
}
.mms-expertise__tile:hover .mms-expertise__arrow,
.mms-expertise__tile:focus-visible .mms-expertise__arrow {
    transform: translate(3px, -3px);
    color: var(--color-cta);
}

.mms-expertise__tile--alt .mms-expertise__glyph {
    background: linear-gradient(165deg, rgba(154, 141, 165, 0.18), rgba(10, 10, 13, 0.4));
    border-color: rgba(154, 141, 165, 0.42);
    color: #c3b3d0;
}
.mms-expertise__tile--alt::before {
    background: radial-gradient(240px circle at var(--mx) var(--my), rgba(154, 141, 165, 0.16), transparent 60%);
}
.mms-expertise__tile--alt .mms-expertise__spot {
    background: radial-gradient(200px circle at var(--mx) var(--my), rgba(154, 141, 165, 0.85), transparent 60%);
}
.mms-expertise__tile--alt:hover { border-color: rgba(154, 141, 165, 0.40); }

.mms-expertise__more {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-cta);
    text-decoration: none;
    transition: gap 250ms ease, color 250ms ease;
}
.mms-expertise__more svg { width: 16px; height: 16px; }
.mms-expertise__more:hover,
.mms-expertise__more:focus-visible { gap: 0.85em; color: #d8efe9; outline: none; }

.mms-gly-gear {
    transform-box: fill-box;
    transform-origin: center;
    animation: mms-gly-spin 14s linear infinite;
}
.mms-expertise__tile:hover .mms-gly-gear { animation-duration: 4s; }
.mms-gly-spark {
    transform-box: fill-box;
    transform-origin: center;
    animation: mms-gly-twinkle 3.6s ease-in-out infinite;
}
.mms-gly-spark2 { animation-delay: 1.4s; }
.mms-expertise__tile:hover .mms-gly-spark { animation-duration: 1.6s; }
.mms-gly-dot { animation: mms-gly-pulse 2.8s ease-in-out infinite; }
.mms-expertise__tile:hover .mms-gly-dot { animation-duration: 1s; }
.mms-gly-in {
    transform-box: fill-box;
    transform-origin: center;
    animation: mms-gly-bob 3.4s ease-in-out infinite;
}
.mms-expertise__tile:hover .mms-gly-in { animation-duration: 1.2s; }
.mms-gly-check {
    stroke-dasharray: 9;
    animation: mms-gly-pulse 3.2s ease-in-out infinite;
}
.mms-expertise__tile:hover .mms-gly-check { animation: mms-gly-draw 0.55s ease; }

@keyframes mms-gly-spin { to { transform: rotate(360deg); } }
@keyframes mms-gly-twinkle {
    0%, 100% { opacity: 0.5; transform: scale(0.82); }
    50%      { opacity: 1;   transform: scale(1.05); }
}
@keyframes mms-gly-pulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}
@keyframes mms-gly-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-1.6px); }
}
@keyframes mms-gly-draw {
    from { stroke-dashoffset: 9; }
    to   { stroke-dashoffset: 0; }
}

.mms-expertise.is-offscreen::before,
.mms-expertise.is-offscreen .mms-expertise__sweep::before,
.mms-expertise.is-offscreen :is(.mms-gly-gear, .mms-gly-spark, .mms-gly-dot, .mms-gly-in, .mms-gly-check) {
    animation-play-state: paused;
}

@keyframes mms-exp-sweep {
    0%   { transform: translateX(-160%) skewX(-12deg); opacity: 0; }
    18%  { opacity: 1; }
    82%  { opacity: 1; }
    100% { transform: translateX(330%) skewX(-12deg); opacity: 0; }
}
@keyframes mms-exp-aurora {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(0, -2.5%, 0) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .mms-expertise::before,
    .mms-expertise__sweep::before,
    .mms-gly-gear,
    .mms-gly-spark,
    .mms-gly-dot,
    .mms-gly-in,
    .mms-gly-check { animation: none; }
    .mms-expertise__sweep { display: none; }
    .mms-expertise__tile { transition: border-color 300ms ease, box-shadow 300ms ease; }
}

.mms-process {
    padding-block: clamp(4rem, 8vw, 6rem);
    isolation: isolate;
    overflow: hidden;
}

.mms-process__lede {
    margin: 0 0 clamp(2.5rem, 5vw, 4rem);
    max-width: 56ch;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.55;
    color: var(--color-text-secondary);
}

.mms-process__track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mms-process__track::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 5px;
    width: 1px;
    background: rgba(154, 141, 165, 0.20);
}

.mms-process__track::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 5px;
    width: 1px;
    height: 0;
    background: var(--color-cta);
    box-shadow: 0 0 6px var(--color-cta);
    transition: height 3000ms linear;
}
.mms-process.is-visible .mms-process__track::after {
    height: calc(100% - 12px);
}

.mms-process__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.mms-process__step-node {
    flex: 0 0 11px;
    width: 11px;
    height: 11px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 1px solid rgba(154, 141, 165, 0.35);
    position: relative;
    z-index: 2;
    transition:
        background 400ms ease,
        border-color 400ms ease,
        box-shadow 400ms ease,
        transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mms-process.is-visible .mms-process__step-node {
    background: var(--color-cta);
    border-color: var(--color-cta);
    box-shadow:
        0 0 8px var(--color-cta),
        0 0 16px rgba(129, 166, 160, 0.40);
    transform: scale(1.1);
}

.mms-process.is-visible .mms-process__step--1 .mms-process__step-node { transition-delay: 200ms; }
.mms-process.is-visible .mms-process__step--2 .mms-process__step-node { transition-delay: 1000ms; }
.mms-process.is-visible .mms-process__step--3 .mms-process__step-node { transition-delay: 1900ms; }
.mms-process.is-visible .mms-process__step--4 .mms-process__step-node { transition-delay: 2800ms; }

.mms-process__step-body {
    flex: 1;
    min-width: 0;
}
.mms-process__step-code {
    display: block;
    margin-bottom: 0.3rem;
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-cta);
}
.mms-process__step-name {
    margin: 0 0 0.4rem;
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.01em;
}
.mms-process__step-desc {
    margin: 0 0 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}
.mms-process__step-meta {
    display: block;
    font-family: var(--mono);
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    opacity: 0.75;
}

@media (min-width: 768px) {
    .mms-process__track {
        flex-direction: row;
        gap: 0;
    }

    .mms-process__track::before {
        top: 5px;
        bottom: auto;
        left: 12.5%;
        right: 12.5%;
        width: auto;
        height: 1px;
    }
    .mms-process__track::after {
        top: 5px;
        bottom: auto;
        left: 12.5%;
        width: 0;
        height: 1px;
        transition: width 3000ms linear;
    }
    .mms-process.is-visible .mms-process__track::after {
        width: 75%;
        height: 1px;
    }

    .mms-process__step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .mms-process__step-node {
        margin-top: 0;
    }
    .mms-process__step-body {
        max-width: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mms-process__track::after {
        height: calc(100% - 12px);
        width: 1px;
        transition: none;
    }
    .mms-process__step-node {
        background: var(--color-cta);
        border-color: var(--color-cta);
        box-shadow: 0 0 8px var(--color-cta);
        transform: none;
        transition: none;
    }
}
@media (prefers-reduced-motion: reduce) and (min-width: 768px) {
    .mms-process__track::after {
        height: 1px;
        width: 75%;
    }
}
.mms-qui {
    overflow: hidden;
}

.mms-qui__lede {
    margin: 1.25rem 0 clamp(1.75rem, 3.5vw, 2.75rem);
    max-width: 52ch;
    font-size: clamp(1rem, 0.6vw + 0.8rem, 1.125rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.mms-qui-band {
    position: relative;
    width: 100%;
}

.mms-qui-band::before,
.mms-qui-band::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(154, 141, 165, 0.16) 18%,
        rgba(154, 141, 165, 0.16) 82%, transparent);
    z-index: 3;
    pointer-events: none;
}
.mms-qui-band::before { top: 0; }
.mms-qui-band::after  { bottom: 0; }

.mms-qui-band__viewport {
    overflow: hidden;
    padding-block: clamp(14px, 1.6vw, 20px);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.mms-qui-band__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: mms-qui-scroll 22s linear infinite;
}

.mms-qui-band:hover .mms-qui-band__track,
.mms-qui-band:focus-within .mms-qui-band__track {
    animation-play-state: paused;
}
@keyframes mms-qui-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

.mms-qui-band__set {
    display: flex;
    align-items: stretch;
}

.mms-qui-pass,
.mms-qui-mark {
    margin-right: clamp(18px, 2vw, 30px);
}

.mms-qui-pass {
    position: relative;
    flex: none;
    width: clamp(300px, 26vw, 392px);
    height: 156px;
    display: grid;
    grid-template-columns: 86px 1fr;
    clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
    background:
        var(--pass-glow, transparent),
        linear-gradient(162deg, #16181f 0%, #0d0e14 55%, #090a0f 100%);
    box-shadow:
        inset 0 0 0 1px rgba(154, 141, 165, 0.10),
        inset 0 1px 0 rgba(234, 234, 234, 0.06);
}

.mms-qui-pass::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 20px; height: 20px;
    background: linear-gradient(135deg, rgba(129, 166, 160, 0.9), transparent 60%);
    -webkit-mask: linear-gradient(135deg, #000 0 1.4px, transparent 1.4px);
            mask: linear-gradient(135deg, #000 0 1.4px, transparent 1.4px);
    transform: translate(-1px, -1px);
    pointer-events: none;
}

.mms-qui-pass__stub {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 14px;
    color: var(--pass-accent, var(--color-cta));
}
.mms-qui-pass__icon {
    width: 42px;
    height: 42px;
    margin-top: 6px;
}
.mms-qui-pass__barcode {
    width: 54px;
    height: 20px;
    background: repeating-linear-gradient(90deg,
        currentColor 0 1px, transparent 1px 2px,
        currentColor 2px 4px, transparent 4px 7px,
        currentColor 7px 8px, transparent 8px 11px);
    opacity: 0.42;
}

.mms-qui-pass__body {
    position: relative;
    padding: 16px 18px 14px 20px;
    border-left: 1px dashed rgba(154, 141, 165, 0.32);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.mms-qui-pass__body::before,
.mms-qui-pass__body::after {
    content: "";
    position: absolute;
    left: -6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--color-bg);
    box-shadow: inset 0 0 0 1px rgba(154, 141, 165, 0.18);
}
.mms-qui-pass__body::before { top: -6px; }
.mms-qui-pass__body::after  { bottom: -6px; }

.mms-qui-pass__code {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pass-accent, var(--color-cta));
    margin-bottom: 9px;
}
.mms-qui-pass__title {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--color-text);
}
.mms-qui-pass__metiers {
    margin: 9px 0 0;
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.35;
    color: var(--color-text-secondary);
    letter-spacing: 0.01em;
}

.mms-qui-pass__live {
    position: absolute;
    top: 13px;
    right: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pass-accent, var(--color-cta));
    box-shadow: 0 0 8px var(--pass-accent, var(--color-cta));
    z-index: 2;
}

.mms-qui-pass--wellness {
    --pass-accent: #b9a9c7;
    --pass-glow: radial-gradient(150px 120px at 6% 22%, rgba(98, 85, 110, 0.42), transparent 70%);
}
.mms-qui-pass--tourism {
    --pass-accent: var(--color-cta);
    --pass-glow:
        radial-gradient(150px 120px at 6% 22%, rgba(129, 166, 160, 0.40), transparent 70%),
        radial-gradient(120px 90px at 2% 90%, rgba(196, 168, 138, 0.16), transparent 70%);
}
.mms-qui-pass--biz {
    --pass-accent: #b7aec0;
    --pass-glow:
        radial-gradient(150px 120px at 6% 22%, rgba(154, 141, 165, 0.30), transparent 70%),
        radial-gradient(140px 110px at 100% 100%, rgba(129, 166, 160, 0.16), transparent 65%);
}

.mms-qui-mark {
    position: relative;
    flex: none;
    display: flex;
    align-items: center;
    gap: 16px;
    width: clamp(212px, 18vw, 268px);
    padding: 18px 20px;
}
.mms-qui-mark__rule {
    flex: none;
    align-self: stretch;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(129, 166, 160, 0.85), rgba(129, 166, 160, 0.12));
}
.mms-qui-mark__inner {
    min-width: 0;
}

.mms-qui-mark__big {
    display: flex;
    align-items: baseline;
    gap: 7px;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--color-text);
}
.mms-qui-mark__unit {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0;
    color: var(--color-cta);
}
.mms-qui-mark__label {
    display: block;
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.mms-qui-mark__quote {
    margin: 0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.32;
    letter-spacing: -0.01em;
    color: var(--color-text);
    text-wrap: balance;
}
.mms-qui-mark__quote em {
    font-style: italic;
    color: var(--color-cta);
}
.mms-qui-mark__tag {
    display: block;
    margin-top: 11px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

a.mms-qui-mark--cta {
    text-decoration: none;
    align-items: stretch;
    transition: transform 350ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-qui-mark--cta .mms-qui-mark__rule {
    background: linear-gradient(180deg, var(--color-cta), rgba(129, 166, 160, 0.2));
}
.mms-qui-mark__cta-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}
.mms-qui-mark__cta-kicker {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.mms-qui-mark__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-bg);
    background:
        linear-gradient(180deg, rgba(234, 234, 234, 0.10) 0%, transparent 50%),
        linear-gradient(165deg, #95b7b1 0%, #81a6a0 50%, #6c948e 100%);
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
    box-shadow:
        inset 0 1px 0 rgba(234, 234, 234, 0.18),
        0 8px 18px -8px rgba(129, 166, 160, 0.45);
    transition:
        box-shadow 350ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter     350ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
a.mms-qui-mark--cta:hover {
    transform: translateY(-2px);
}
a.mms-qui-mark--cta:hover .mms-qui-mark__cta-btn {
    box-shadow:
        inset 0 1px 0 rgba(234, 234, 234, 0.25),
        0 14px 28px -10px rgba(129, 166, 160, 0.60),
        0 0 0 4px rgba(129, 166, 160, 0.10);
    filter: brightness(1.06);
}
a.mms-qui-mark--cta:focus-visible {
    outline: 2px solid var(--color-cta);
    outline-offset: 4px;
}

@media (max-width: 640px) {
    .mms-qui-pass {
        width: 252px;
        height: 134px;
        grid-template-columns: 68px 1fr;
    }
    .mms-qui-pass__icon    { width: 34px; height: 34px; margin-top: 4px; }
    .mms-qui-pass__barcode { width: 44px; height: 16px; }
    .mms-qui-pass__body    { padding: 12px 14px 11px 16px; }
    .mms-qui-pass__code    { font-size: 9px; margin-bottom: 7px; }
    .mms-qui-pass__title   { font-size: 19px; }
    .mms-qui-pass__metiers { font-size: 11.5px; margin-top: 7px; }
    .mms-qui-pass__live    { top: 10px; right: 11px; width: 6px; height: 6px; }

    .mms-qui-mark             { width: 188px; padding: 14px 16px; gap: 13px; }
    .mms-qui-mark__big        { font-size: 32px; }
    .mms-qui-mark__unit       { font-size: 13px; }
    .mms-qui-mark__label      { font-size: 8.5px; margin-top: 7px; }
    .mms-qui-mark__quote      { font-size: 15px; line-height: 1.3; }
    .mms-qui-mark__tag        { font-size: 8.5px; margin-top: 9px; }
    .mms-qui-mark__cta-kicker { font-size: 9px; }
    .mms-qui-mark__cta-btn    { font-size: 13px; padding: 10px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .mms-qui-band__track {
        animation: none;
    }
    .mms-qui-band__viewport {
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-mask-image: none;
                mask-image: none;
    }
    .mms-qui-band__set--dup { display: none; }
    .mms-qui-pass,
    .mms-qui-mark {
        scroll-snap-align: start;
    }
}

.mms-faq {
    padding-block: clamp(3rem, 6vw, 5rem);
}

.mms-faq__terminal {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    background:
        radial-gradient(ellipse at 18% 0%, rgba(129, 166, 160, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 100%, rgba(98, 85, 110, 0.07) 0%, transparent 55%),
        linear-gradient(165deg, #14171f 0%, #0a0c12 100%);
    border: 1px solid rgba(129, 166, 160, 0.25);
    border-radius: 14px;
    box-shadow:
        0 30px 80px -22px rgba(0, 0, 0, 0.55),
        0 0 50px -14px rgba(129, 166, 160, 0.18),
        inset 0 1px 0 rgba(234, 234, 234, 0.05);
    overflow: hidden;
    isolation: isolate;
}

.mms-faq__terminal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent 0, transparent 2px,
        rgba(129, 166, 160, 0.025) 2px, rgba(129, 166, 160, 0.025) 3px);
    pointer-events: none;
    z-index: 1;
}

.mms-faq__chrome {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    padding: 0.875rem clamp(1rem, 2.5vw, 1.5rem);
    border-bottom: 1px solid rgba(129, 166, 160, 0.20);
    background: linear-gradient(180deg, rgba(234, 234, 234, 0.03) 0%, transparent 100%);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mms-faq__chrome-squares {
    display: inline-flex;
    gap: 5px;
}
.mms-faq__chrome-square {
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: rgba(129, 166, 160, 0.20);
    border: 1px solid rgba(129, 166, 160, 0.40);
}
.mms-faq__chrome-square:nth-child(2) { background: rgba(98, 85, 110, 0.25); border-color: rgba(98, 85, 110, 0.50); }
.mms-faq__chrome-square:nth-child(3) { background: rgba(154, 141, 165, 0.20); border-color: rgba(154, 141, 165, 0.40); }

.mms-faq__chrome-title {
    display: inline-flex;
    align-items: center;
    gap: 0.65em;
    justify-content: center;
    color: var(--color-text-secondary);
    text-align: center;
    min-width: 0;
}
.mms-faq__chrome-app  { color: var(--color-text); font-weight: 600; }
.mms-faq__chrome-sep  { color: var(--color-cta); opacity: 0.6; }
.mms-faq__chrome-path { color: var(--color-cta); text-transform: lowercase; letter-spacing: 0.12em; }

.mms-faq__chrome-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    color: var(--color-text-secondary);
    white-space: nowrap;
}
.mms-faq__chrome-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-cta);
    box-shadow: 0 0 6px var(--color-cta);
}

.mms-faq__body {
    position: relative;
    z-index: 2;
    padding: 0.5rem clamp(1rem, 3vw, 2rem);
}

.mms-faq__entry {
    border-bottom: 1px dashed rgba(154, 141, 165, 0.18);

    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity   600ms cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-faq__entry:last-child { border-bottom: none; }

.mms-faq.is-visible .mms-faq__entry {
    opacity: 1;
    transform: none;
}
.mms-faq.is-visible .mms-faq__entry:nth-child(1) { transition-delay: 0ms; }
.mms-faq.is-visible .mms-faq__entry:nth-child(2) { transition-delay: 80ms; }
.mms-faq.is-visible .mms-faq__entry:nth-child(3) { transition-delay: 160ms; }
.mms-faq.is-visible .mms-faq__entry:nth-child(4) { transition-delay: 240ms; }
.mms-faq.is-visible .mms-faq__entry:nth-child(5) { transition-delay: 320ms; }
.mms-faq.is-visible .mms-faq__entry:nth-child(6) { transition-delay: 400ms; }

.mms-faq__question {
    appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    padding: 1.25rem 0.50rem;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    column-gap: 0.85rem;
    align-items: baseline;
    text-align: left;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    transition: color 250ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-faq__question:hover,
.mms-faq__question:focus-visible {
    color: var(--color-cta);
    outline: none;
}
.mms-faq__prompt {
    font-weight: 500;
    color: var(--color-cta);
    text-transform: lowercase;
}
.mms-faq__q-text {
    min-width: 0;
    word-wrap: break-word;
}

.mms-faq__caret {
    width: 9px;
    height: 9px;
    border-right: 1.5px solid var(--color-cta);
    border-bottom: 1.5px solid var(--color-cta);
    transform: rotate(45deg) translate(-2px, -2px);
    transform-origin: center;
    transition: transform 350ms cubic-bezier(0.2, 0.7, 0.2, 1);
    align-self: center;
}
.mms-faq__entry[data-open="true"] .mms-faq__caret {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.mms-faq__answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mms-faq__entry[data-open="true"] .mms-faq__answer-wrap {
    grid-template-rows: 1fr;
}
.mms-faq__answer-inner {
    overflow: hidden;
    min-height: 0;
}

.mms-faq__entry .mms-faq__answer-inner > * {
    opacity: 0;
    transform: translateY(-4px);
    transition:
        opacity   400ms cubic-bezier(0.2, 0.7, 0.2, 1) 100ms,
        transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1) 100ms;
}
.mms-faq__entry[data-open="true"] .mms-faq__answer-inner > * {
    opacity: 1;
    transform: none;
}

.mms-faq__answer-tag {
    display: block;
    margin: 0 0 0.65rem;
    padding-left: calc(2.4rem + 4.5em);
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-cta);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}
.mms-faq__a-text {
    margin: 0 0 1.4rem;
    padding-left: calc(2.4rem + 4.5em);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-wrap: pretty;
}

.mms-faq__statusbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem clamp(1rem, 2.5vw, 1.5rem);
    border-top: 1px solid rgba(129, 166, 160, 0.18);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: var(--color-text-secondary);
}
.mms-faq__statusbar-info { letter-spacing: 0.08em; }
.mms-faq__statusbar-caret {
    color: var(--color-cta);
    font-size: 0.9rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .mms-faq__chrome {
        font-size: 0.6rem;
        letter-spacing: 0.14em;
        padding: 0.75rem 0.9rem;
    }
    .mms-faq__chrome-title { gap: 0.4em; }
    .mms-faq__chrome-status span:last-child { display: none; }
    .mms-faq__chrome-square { width: 7px; height: 7px; }

    .mms-faq__question {
        grid-template-columns: auto auto 1fr;
        font-size: 0.78rem;
        padding: 1.1rem 0.15rem;
        column-gap: 0.55rem;
    }
    .mms-faq__caret { grid-column: 3; justify-self: end; }
    .mms-faq__answer-tag,
    .mms-faq__a-text {
        padding-left: 0;
    }
    .mms-faq__a-text {
        font-size: 0.92rem;
        line-height: 1.55;
    }
    .mms-faq__statusbar {
        font-size: 0.55rem;
        padding: 0.6rem 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mms-faq__entry,
    .mms-faq__answer-wrap,
    .mms-faq__entry .mms-faq__answer-inner > *,
    .mms-faq__caret,
    .mms-faq__question {
        transition: none;
    }
    .mms-faq__entry {
        opacity: 1;
        transform: none;
    }
    .mms-faq__entry .mms-faq__answer-inner > * {
        opacity: 1;
        transform: none;
    }
}

@keyframes mms-pulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.75); }
}
@keyframes mms-scan-down {
    0%   { transform: translateY(-100%); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(100%);  opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .mms-persona,
    .mms-persona__code,
    .mms-pass,
    .mms-pass__name,
    .mms-pass__tagline,
    .mms-pass__popular,
    .mms-chip__trace,
    .mms-chip__pad,
    .mms-chip__core,
    .mms-chip__crown,
    .mms-chip__body {
        transition: none;
    }
    .mms-persona.is-active .mms-persona__led,
    .mms-pass__live::before,
    .mms-pass.is-updating .mms-pass__scan,
    .mms-chip__trace,
    .mms-pass:hover .mms-pass__sheen {
        animation: none;
    }
}
