/* =========================================================
   MAAMVERSE PRIVATE WISH — V45.5
   FULL REPLACEMENT view-v45.css

   Loads AFTER view.css.

   V45.5:
   - Mobile floating music overlap reduced
   - Mobile section spacing tightened
   - Final signature mobile-safe
   - Memory / Connection typography refined
   - Premium bilingual final preserved
========================================================= */

:root {
    --mv-theme-bg-top: #080919;
    --mv-theme-bg-bottom: #03040c;
    --mv-theme-star-rgb: 215, 220, 255;
}


/* =========================================================
   THEME-AWARE OPENING
========================================================= */

.cinematic-opening {
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(var(--accent-rgb), .14),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            var(--mv-theme-bg-top) 0%,
            var(--mv-theme-bg-bottom) 100%
        ) !important;
}

.aurora-one {
    background: rgba(var(--accent-rgb), .78) !important;
}

.aurora-two {
    background: rgba(var(--accent-2-rgb), .68) !important;
}

.opening-grid {
    background-image:
        linear-gradient(
            rgba(var(--accent-rgb), .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(var(--accent-2-rgb), .028) 1px,
            transparent 1px
        ) !important;
}

.cinematic-kicker {
    color: var(--accent) !important;
}

.cinematic-gift {
    border-color: rgba(var(--accent-rgb), .38) !important;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(255, 255, 255, .13),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(var(--accent-rgb), .22),
            rgba(var(--accent-2-rgb), .09)
        ),
        rgba(10, 12, 28, .92) !important;

    box-shadow:
        0 0 78px
        rgba(var(--accent-rgb), .20) !important;
}

.gift-orbit {
    border-color: rgba(var(--accent-rgb), .25) !important;
}

.gift-star {
    background: var(--accent) !important;

    box-shadow:
        0 0 18px
        rgba(var(--accent-rgb), .95) !important;
}

.cinematic-open-button {
    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--accent-2)
        ) !important;

    box-shadow:
        0 18px 52px
        rgba(var(--accent-rgb), .27) !important;
}

.cinematic-open-button:hover {
    box-shadow:
        0 25px 72px
        rgba(var(--accent-rgb), .40) !important;
}

.opening-flash {
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, .95),
            rgba(var(--accent-rgb), .40) 18%,
            transparent 55%
        ) !important;
}

.opening-particles i {
    background: rgba(var(--mv-theme-star-rgb), .78) !important;

    box-shadow:
        0 0 13px
        rgba(var(--accent-rgb), .70) !important;
}


/* =========================================================
   THEME-AWARE AMBIENT FIELD
========================================================= */

.ambient-one {
    background: var(--accent) !important;
}

.ambient-two {
    background: var(--accent-2) !important;
}

.ambient-three {
    background: var(--warm) !important;
    opacity: .075;
}

.hero-light {
    background:
        radial-gradient(
            circle,
            rgba(var(--accent-rgb), .15),
            transparent 65%
        ) !important;
}


/* =========================================================
   VIDEO MEMORY
========================================================= */

.video-section {
    padding-top: 68px !important;
}

.video-card {
    position: relative;

    width: min(1120px, 100%);
    margin: auto;

    padding: clamp(24px, 4vw, 46px);

    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: center;

    gap: clamp(28px, 5vw, 64px);

    overflow: hidden;

    border: 1px solid rgba(var(--accent-rgb), .20);
    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(var(--accent-rgb), .075),
            rgba(10, 12, 29, .90)
        );

    box-shadow:
        0 34px 100px
        rgba(0, 0, 0, .34);
}

.video-copy {
    position: relative;
    z-index: 5;
}

.video-copy h2 {
    margin: 17px 0;

    font-family: var(--mv-font-display);
    font-size: clamp(36px, 4.8vw, 62px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -1.5px;

    text-wrap: balance;
}

.video-copy > p {
    max-width: 430px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.72;
}

.video-state {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 24px;

    color: var(--success);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-state::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 14px
        currentColor;
}

.video-frame {
    position: relative;
    z-index: 4;

    width: 100%;
    min-width: 0;

    padding: 8px;

    overflow: hidden;

    border: 1px solid rgba(var(--accent-rgb), .28);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(var(--accent-rgb), .12),
            rgba(255, 255, 255, .018)
        );

    box-shadow:
        0 28px 85px
        rgba(0, 0, 0, .40);

    isolation: isolate;
}

.video-frame video {
    position: relative;
    z-index: 3;

    display: block;

    width: 100%;
    max-height: min(68svh, 720px);

    border-radius: 19px;

    background: #020308;

    object-fit: contain;
    outline: 0;
}

.video-frame-glass {
    position: absolute;
    z-index: 4;

    inset: 8px;

    border-radius: 19px;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, .045),
            transparent 25%,
            transparent 74%,
            rgba(var(--accent-rgb), .055)
        );
}

.video-orbit {
    position: absolute;
    z-index: 1;

    left: 50%;
    top: 50%;

    width: 78%;
    aspect-ratio: 1;

    border: 1px solid rgba(var(--accent-rgb), .20);
    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        scale(.72);

    opacity: .36;

    box-shadow:
        0 0 80px
        rgba(var(--accent-rgb), .18);

    animation:
        mvV45VideoOrbit
        8s
        linear
        infinite;
}

.video-card.playing .video-orbit {
    opacity: .76;
    animation-duration: 3.8s;
}

.video-card.playing .video-frame {
    border-color: rgba(var(--accent-rgb), .50);

    box-shadow:
        0 34px 100px rgba(0, 0, 0, .44),
        0 0 60px rgba(var(--accent-rgb), .12);
}

.video-error {
    margin-top: 12px;

    color: #ff96aa;

    font-size: 12px;
    text-align: center;
}

@keyframes mvV45VideoOrbit {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg)
            scale(.72);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg)
            scale(.72);
    }
}


/* =========================================================
   RELATIONSHIP MOTION PERSONALITIES
========================================================= */

body[data-motion-profile="electric"] .hero-light {
    animation-duration: 2.7s;
}

body[data-motion-profile="electric"] .gift-orbit.orbit-one {
    animation-duration: 4.2s;
}

body[data-motion-profile="electric"] .gift-orbit.orbit-two {
    animation-duration: 5.2s;
}

body[data-motion-profile="electric"] .gift-orbit.orbit-three {
    animation-duration: 7s;
}

body[data-motion-profile="electric"] .opening-particles i {
    width: 4px;
    height: 4px;

    box-shadow:
        0 0 10px rgba(var(--accent-rgb), .9),
        0 0 24px rgba(var(--accent-2-rgb), .55) !important;
}

body[data-motion-profile="electric"] .bond-symbol {
    animation-duration: 2.2s;
}


body[data-motion-profile="bloom"] .opening-particles i {
    width: 5px;
    height: 8px;

    border-radius: 70% 30% 70% 30%;

    background: rgba(var(--accent-rgb), .82) !important;

    animation:
        mvV45PetalFloat
        7s
        ease-in-out
        infinite !important;
}

body[data-motion-profile="bloom"] .opening-particles i:nth-child(even) {
    animation-delay: -3.2s !important;
}

@keyframes mvV45PetalFloat {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(12deg);

        opacity: .38;
    }

    50% {
        transform:
            translate3d(16px, -34px, 0)
            rotate(150deg);

        opacity: 1;
    }
}


body[data-motion-profile="romantic"] .hero-icon,
body[data-motion-profile="romantic"] .final-icon {
    animation:
        mvV45RomanticFloat
        3.4s
        ease-in-out
        infinite !important;
}

@keyframes mvV45RomanticFloat {
    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-8px)
            scale(1.07);
    }
}

body[data-motion-profile="romantic"] .opening-particles i {
    box-shadow:
        0 0 13px rgba(var(--accent-rgb), .88),
        0 0 28px rgba(var(--accent-2-rgb), .34) !important;
}


body[data-motion-profile="brotherhood"] .gift-orbit {
    border-width: 1.2px;
    opacity: .9;
}

body[data-motion-profile="brotherhood"] .bond-line i {
    animation-duration: 1.15s;
}

body[data-motion-profile="brotherhood"] .hero-light {
    animation-duration: 3.2s;
}


body[data-motion-profile="aurora"] .opening-aurora {
    opacity: .23;
}

body[data-motion-profile="aurora"] .ambient-one,
body[data-motion-profile="aurora"] .ambient-two {
    opacity: .14;
}


body[data-motion-profile="midnight"] .opening-grid {
    opacity: .075;
}

body[data-motion-profile="midnight"] .opening-particles i {
    opacity: .62;
}


body[data-motion-profile="golden"] .opening-particles i,
body[data-motion-profile="golden"] .final-particles i {
    box-shadow:
        0 0 15px var(--warm),
        0 0 30px rgba(var(--accent-rgb), .25) !important;
}


body[data-motion-profile="blessing"] .ambient-one,
body[data-motion-profile="blessing"] .ambient-two,
body[data-motion-profile="blessing"] .ambient-three {
    animation-duration: 22s !important;
    opacity: .075;
}

body[data-motion-profile="blessing"] .hero-light {
    animation-duration: 7s;
}

body[data-motion-profile="blessing"] .gift-orbit {
    animation-duration: 14s !important;
}


body[data-motion-profile="legacy"] .ambient-one,
body[data-motion-profile="legacy"] .ambient-two {
    animation-duration: 20s !important;
}

body[data-motion-profile="legacy"] .gift-orbit {
    animation-duration: 12s !important;
}

body[data-motion-profile="legacy"] .live-card::before {
    animation-duration: 6.4s !important;
}


body[data-motion-profile="royal"] .opening-grid {
    opacity: .15;
}

body[data-motion-profile="royal"] .gift-orbit {
    border-color: rgba(var(--accent-2-rgb), .36) !important;
}


body[data-motion-profile="moonlight"] .opening-aurora {
    opacity: .14;
}

body[data-motion-profile="moonlight"] .gift-orbit {
    animation-duration: 13s !important;
}

body[data-motion-profile="moonlight"] .hero-light {
    animation-duration: 6.4s;
}


/* =========================================================
   THEME FINISHING
========================================================= */

body[data-theme-key="rose_galaxy"] .message-heart,
body[data-theme-key="floral_dream"] .message-heart {
    filter:
        drop-shadow(
            0 0 22px
            rgba(var(--accent-rgb), .34)
        );
}

body[data-theme-key="electric_pulse"] .live-card::before,
body[data-theme-key="brotherhood_blue"] .live-card::before {
    filter:
        drop-shadow(
            0 0 13px
            rgba(var(--accent-rgb), .62)
        )
        drop-shadow(
            0 0 30px
            rgba(var(--accent-2-rgb), .22)
        ) !important;
}

body[data-theme-key="warm_blessing"] .wish-message,
body[data-theme-key="family_legacy"] .wish-message {
    color: #ece7df;
}

body[data-theme-key="moonlight_elegance"] .opening-grid,
body[data-theme-key="midnight_memory"] .opening-grid {
    background-size: 86px 86px;
}


/* =========================================================
   BILINGUAL COPY ARCHITECTURE
========================================================= */

.mv-copy-stack {
    width: 100%;

    display: grid;

    gap: 13px;
}

.mv-copy-stack-hero {
    width: min(790px, 100%);

    margin: 16px auto 0;

    text-align: center;
}

.mv-copy-stack-section {
    margin-top: 4px;
}

.mv-copy-stack-centered {
    width: min(900px, 100%);

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.mv-copy-language-block {
    min-width: 0;
}

.mv-copy-primary-block {
    position: relative;
}

.mv-copy-secondary-block {
    margin-top: 5px;
    padding-top: 13px;

    border-top:
        1px solid
        rgba(var(--accent-rgb), .10);
}

.mv-copy-stack-hero .mv-copy-secondary-block {
    width: min(700px, 100%);

    margin-left: auto;
    margin-right: auto;
}

.mv-language-label {
    display: block;

    width: max-content;

    margin-bottom: 9px;

    color: rgba(var(--accent-rgb), .76);

    font-family:
        Manrope,
        "Noto Sans Bengali",
        Arial,
        sans-serif;

    font-size: 7px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.mv-copy-stack-centered .mv-language-label,
.mv-copy-stack-hero .mv-language-label {
    margin-left: auto;
    margin-right: auto;
}


/* Primary selected language does not need a label */

body[data-copy-language="bn"] .mv-primary-language-label,
body[data-copy-language="en"] .mv-primary-language-label {
    display: none !important;
}

body[data-copy-language="bn"] .mv-secondary-language-label,
body[data-copy-language="en"] .mv-secondary-language-label,
body[data-copy-language="balanced"] .mv-primary-language-label,
body[data-copy-language="balanced"] .mv-secondary-language-label {
    display: block;
}


/* =========================================================
   BILINGUAL TYPOGRAPHY
========================================================= */

.mv-copy-primary,
.mv-copy-secondary {
    max-width: 100%;

    margin: 0;

    unicode-bidi: plaintext;

    overflow-wrap: break-word;
    word-break: normal;

    text-wrap: pretty;

    letter-spacing: 0;

    transition:
        color .32s ease,
        opacity .32s ease,
        transform .32s ease;
}

.mv-copy-primary[data-copy-lang="bn"],
.mv-copy-secondary[data-copy-lang="bn"] {
    font-family:
        "Noto Serif Bengali",
        "Noto Sans Bengali",
        serif !important;
}

.mv-copy-primary[data-copy-lang="en"],
.mv-copy-secondary[data-copy-lang="en"] {
    font-family:
        "Cormorant Garamond",
        "DM Serif Display",
        Georgia,
        serif !important;
}

.mv-copy-body[data-copy-lang="bn"] {
    font-family:
        "Noto Sans Bengali",
        Manrope,
        Arial,
        sans-serif !important;
}

.mv-copy-body[data-copy-lang="en"] {
    font-family:
        Manrope,
        Arial,
        sans-serif !important;
}

.mv-copy-heading {
    max-width: 900px;

    margin: 0 !important;

    font-size: clamp(32px, 3.3vw, 49px) !important;
    font-weight: 600 !important;
    letter-spacing: -.55px !important;
}

.mv-copy-heading[data-copy-lang="bn"] {
    line-height: 1.31 !important;
}

.mv-copy-heading[data-copy-lang="en"] {
    line-height: 1.12 !important;
}

.mv-copy-primary.mv-copy-body {
    max-width: 840px;

    margin-top: 13px !important;

    color: rgba(229, 232, 246, .82) !important;

    font-size: clamp(14px, 1.14vw, 16.5px) !important;
    font-weight: 500 !important;
}

.mv-copy-primary.mv-copy-body[data-copy-lang="bn"] {
    line-height: 1.78 !important;
}

.mv-copy-primary.mv-copy-body[data-copy-lang="en"] {
    line-height: 1.72 !important;
}

.mv-copy-secondary {
    color: rgba(210, 215, 235, .58) !important;
    opacity: 1;
}

.mv-copy-secondary-heading {
    max-width: 820px;

    font-size: clamp(18px, 1.65vw, 25px) !important;
    font-weight: 600 !important;
}

.mv-copy-secondary-heading[data-copy-lang="bn"] {
    line-height: 1.43 !important;
}

.mv-copy-secondary-heading[data-copy-lang="en"] {
    line-height: 1.22 !important;
}

.mv-copy-secondary-body {
    max-width: 790px;

    margin-top: 8px !important;

    font-size: clamp(12px, .98vw, 14.5px) !important;
    font-weight: 500 !important;
    line-height: 1.72 !important;
}

.memory-copy .mv-copy-primary,
.memory-copy .mv-copy-secondary {
    margin-left: 0 !important;
    margin-right: 0 !important;

    text-align: left;
}

.bond-card .mv-copy-primary,
.bond-card .mv-copy-secondary,
.final-content .mv-copy-primary,
.final-content .mv-copy-secondary {
    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center;
}


/* =========================================================
   HERO BILINGUAL SUBTITLE
========================================================= */

.hero-subtitle.mv-copy-primary,
.hero-subtitle.mv-copy-secondary {
    width: 100%;
}

.hero-subtitle.mv-copy-primary {
    max-width: 760px;

    margin: 0 auto !important;

    color: rgba(234, 236, 248, .88) !important;

    font-family:
        Manrope,
        "Noto Sans Bengali",
        Arial,
        sans-serif !important;

    font-size: clamp(14px, 1.28vw, 18px) !important;
    font-weight: 600 !important;
    line-height: 1.60 !important;
}

.hero-subtitle.mv-copy-secondary {
    max-width: 690px;

    margin: 0 auto !important;

    font-family:
        Manrope,
        "Noto Sans Bengali",
        Arial,
        sans-serif !important;

    font-size: clamp(11.5px, .94vw, 13.5px) !important;
    line-height: 1.60 !important;
}


/* =========================================================
   MEMORY BILINGUAL POLISH
========================================================= */

.memory-copy .mv-copy-stack-section {
    gap: 12px;
}

.memory-copy .mv-copy-heading {
    max-width: 720px;

    font-size: clamp(31px, 3.05vw, 45px) !important;
}

.memory-copy .mv-copy-heading[data-copy-lang="bn"] {
    line-height: 1.34 !important;
}

.memory-copy .mv-copy-heading[data-copy-lang="en"] {
    line-height: 1.14 !important;
}

.memory-copy .mv-copy-primary.mv-copy-body {
    max-width: 690px;
}

.memory-copy .mv-copy-secondary-block {
    margin-top: 9px;
    padding-top: 13px;
}

.memory-copy .mv-copy-secondary-heading,
.memory-copy .mv-copy-secondary-body {
    max-width: 660px;
}


/* =========================================================
   CONNECTION BILINGUAL POLISH
========================================================= */

.bond-card .mv-copy-stack-centered {
    width: min(870px, 100%);
}

.bond-card .mv-copy-heading {
    max-width: 800px;

    font-size: clamp(32px, 3.15vw, 47px) !important;
}

.bond-card .mv-copy-heading[data-copy-lang="bn"] {
    line-height: 1.34 !important;
}

.bond-card .mv-copy-primary.mv-copy-body {
    max-width: 760px;
}

.bond-card .mv-copy-secondary-heading {
    max-width: 720px;
}

.bond-card .mv-copy-secondary-body {
    max-width: 690px;
}


/* =========================================================
   BALANCED LANGUAGE MODE
========================================================= */

body[data-copy-language="balanced"] .mv-copy-stack {
    gap: 16px;
}

body[data-copy-language="balanced"] .mv-copy-secondary-block {
    padding-top: 16px;

    border-top-color:
        rgba(var(--accent-rgb), .14);
}

body[data-copy-language="balanced"] .mv-copy-secondary-heading {
    color: rgba(239, 241, 250, .82) !important;

    font-size: clamp(24px, 2.3vw, 35px) !important;
}

body[data-copy-language="balanced"] .mv-copy-secondary-body {
    color: rgba(224, 228, 242, .75) !important;

    font-size: clamp(13.5px, 1.08vw, 15.5px) !important;
}

body[data-copy-language="balanced"] .hero-subtitle.mv-copy-secondary {
    color: rgba(229, 232, 246, .76) !important;

    font-size: clamp(13px, 1.08vw, 15.5px) !important;
}


/* =========================================================
   PERSONAL USER COPY
========================================================= */

.mv-user-copy,
.wish-message.mv-user-copy,
.surprise-message.mv-user-copy {
    white-space: pre-wrap !important;

    unicode-bidi: plaintext;

    overflow-wrap: anywhere !important;
    word-break: normal !important;

    font-family:
        Manrope,
        "Noto Sans Bengali",
        Arial,
        sans-serif !important;

    line-height: 1.92 !important;
}


/* =========================================================
   BILINGUAL REVEAL
========================================================= */

.reveal-section.is-visible .mv-copy-secondary-block,
.wish-final.is-visible .mv-copy-secondary-block {
    animation:
        mvV45SecondaryReveal
        .74s
        cubic-bezier(.2, .8, .2, 1)
        both;

    animation-delay: .14s;
}

@keyframes mvV45SecondaryReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   PREMIUM FINAL SECTION
========================================================= */

.wish-final {
    position: relative !important;

    min-height: min(900px, 100svh) !important;

    padding:
        clamp(88px, 9vw, 138px)
        clamp(18px, 4vw, 56px)
        clamp(74px, 7vw, 108px) !important;

    display: grid !important;
    place-items: center !important;

    overflow: hidden !important;

    isolation: isolate;
}

.wish-final::before {
    content: "";

    position: absolute;
    z-index: -2;

    width: min(840px, 78vw);
    aspect-ratio: 1;

    left: 50%;
    top: 46%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(var(--accent-rgb), .13) 0%,
            rgba(var(--accent-rgb), .055) 28%,
            transparent 69%
        );

    filter: blur(4px);
}

.wish-final::after {
    content: "";

    position: absolute;
    z-index: -1;

    width: min(1180px, 94vw);
    height: 1px;

    left: 50%;
    top: 50%;

    transform: translateX(-50%);

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(var(--accent-rgb), .22),
            rgba(255, 255, 255, .20),
            rgba(var(--accent-rgb), .22),
            transparent
        );

    opacity: .42;
}

.final-content.final-content-v453 {
    position: relative !important;
    z-index: 5 !important;

    width: min(1080px, 100%) !important;

    margin: 0 auto !important;

    padding:
        clamp(32px, 5vw, 66px)
        clamp(24px, 5vw, 72px)
        clamp(28px, 4vw, 52px) !important;

    overflow: hidden;

    border: 1px solid rgba(var(--accent-rgb), .20) !important;
    border-radius: clamp(28px, 4vw, 48px) !important;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(var(--accent-rgb), .12),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(18, 22, 42, .82),
            rgba(6, 9, 21, .88)
        ) !important;

    box-shadow:
        0 44px 120px rgba(0, 0, 0, .40),
        inset 0 1px 0 rgba(255, 255, 255, .045),
        0 0 90px rgba(var(--accent-rgb), .065) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.final-content.final-content-v453::before {
    content: "";

    position: absolute;

    width: 46%;
    height: 2px;

    left: 27%;
    top: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(var(--accent-rgb), .92),
            rgba(255, 255, 255, .72),
            rgba(var(--accent-2-rgb), .82),
            transparent
        );

    box-shadow:
        0 0 24px
        rgba(var(--accent-rgb), .72);
}

.final-content.final-content-v453::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    pointer-events: none;

    background:
        linear-gradient(
            125deg,
            rgba(255, 255, 255, .035),
            transparent 22%,
            transparent 76%,
            rgba(var(--accent-rgb), .04)
        );
}


/* =========================================================
   FINAL TOP
========================================================= */

.final-topline {
    position: relative;
    z-index: 3;

    display: grid;
    justify-items: center;

    gap: 21px;

    text-align: center;
}

.final-topline .section-kicker {
    margin: 0 !important;

    color: var(--accent) !important;

    font-family:
        Manrope,
        Arial,
        sans-serif !important;

    font-size: clamp(8px, .7vw, 10px) !important;
    font-weight: 800 !important;
    letter-spacing: clamp(3.2px, .55vw, 6px) !important;
}

.final-orbit-emblem {
    position: relative;

    width: clamp(104px, 8.8vw, 134px);
    aspect-ratio: 1;

    display: grid;
    place-items: center;
}

.final-orbit-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.final-orbit-ring-one {
    width: 100%;
    height: 100%;

    border: 1px solid rgba(var(--accent-rgb), .30);

    box-shadow:
        0 0 36px
        rgba(var(--accent-rgb), .10);

    animation:
        mvV45FinalOrbit
        11s
        linear
        infinite;
}

.final-orbit-ring-one::before {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    left: 12%;
    top: 17%;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 16px
        rgba(var(--accent-rgb), .95);
}

.final-orbit-ring-two {
    width: 72%;
    height: 72%;

    border: 1px dashed rgba(var(--accent-2-rgb), .28);

    animation:
        mvV45FinalOrbitReverse
        15s
        linear
        infinite;
}

.final-icon {
    position: relative;
    z-index: 3;

    margin: 0 !important;

    font-size: clamp(52px, 4.8vw, 74px) !important;
    line-height: 1 !important;

    filter:
        drop-shadow(
            0 15px 30px
            rgba(0, 0, 0, .28)
        )
        drop-shadow(
            0 0 22px
            rgba(var(--accent-rgb), .18)
        );
}


/* =========================================================
   FINAL MESSAGE
========================================================= */

.final-message-panel {
    position: relative;
    z-index: 4;

    width: min(900px, 100%);

    margin:
        clamp(28px, 3.5vw, 42px)
        auto
        0;

    padding:
        clamp(24px, 3vw, 38px)
        clamp(18px, 4vw, 52px);

    overflow: hidden;

    border: 1px solid rgba(var(--accent-rgb), .12);
    border-radius: clamp(22px, 3vw, 34px);

    background:
        linear-gradient(
            145deg,
            rgba(var(--accent-rgb), .055),
            rgba(255, 255, 255, .018)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, .03);
}

.final-message-panel::before,
.final-message-panel::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border: 1px solid rgba(var(--accent-rgb), .10);
    border-radius: 50%;

    pointer-events: none;
}

.final-message-panel::before {
    left: -74px;
    top: -72px;
}

.final-message-panel::after {
    right: -74px;
    bottom: -74px;
}

.final-message-spark {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    margin: 0 auto 18px;

    border: 1px solid rgba(var(--accent-rgb), .24);
    border-radius: 50%;

    color: var(--accent);

    font-size: 11px;

    background: rgba(var(--accent-rgb), .065);

    box-shadow:
        0 0 26px
        rgba(var(--accent-rgb), .12);
}

.mv-copy-stack-final {
    width: min(840px, 100%) !important;

    margin: 0 auto !important;

    gap: 0 !important;
}

.mv-copy-stack-final .mv-copy-language-block {
    width: 100%;
}

.mv-copy-stack-final .mv-language-label {
    margin: 0 auto 11px !important;

    color: rgba(var(--accent-rgb), .86) !important;

    font-size: 7px !important;
    letter-spacing: 2.6px !important;
}

.mv-copy-stack-final #finalText {
    max-width: 800px !important;

    margin: 0 auto !important;

    color: rgba(248, 249, 255, .96) !important;

    font-size: clamp(28px, 2.75vw, 40px) !important;
    font-weight: 600 !important;
    letter-spacing: -.2px !important;
    text-align: center !important;

    text-wrap: balance;
}

.mv-copy-stack-final #finalText[data-copy-lang="bn"] {
    font-family:
        "Noto Serif Bengali",
        "Noto Sans Bengali",
        serif !important;

    line-height: 1.44 !important;
}

.mv-copy-stack-final #finalText[data-copy-lang="en"] {
    font-family:
        "Cormorant Garamond",
        "DM Serif Display",
        Georgia,
        serif !important;

    line-height: 1.25 !important;
}

.final-bilingual-divider {
    width: min(390px, 78%);

    margin:
        clamp(20px, 2.6vw, 30px)
        auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 12px;
}

.final-bilingual-divider span {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(var(--accent-rgb), .28)
        );
}

.final-bilingual-divider span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(var(--accent-rgb), .28),
            transparent
        );
}

.final-bilingual-divider i {
    color: rgba(var(--accent-rgb), .75);

    font-size: 8px;
    font-style: normal;
}

.mv-copy-stack-final .mv-copy-secondary-block {
    margin: 0 !important;
    padding: 0 !important;

    border-top: 0 !important;
}

.mv-copy-stack-final #finalTextSecondary {
    max-width: 720px !important;

    margin: 0 auto !important;

    color: rgba(208, 214, 235, .64) !important;

    font-size: clamp(15px, 1.42vw, 20px) !important;
    font-weight: 500 !important;
    text-align: center !important;

    text-wrap: balance;
}

.mv-copy-stack-final #finalTextSecondary[data-copy-lang="bn"] {
    font-family:
        "Noto Serif Bengali",
        "Noto Sans Bengali",
        serif !important;

    line-height: 1.62 !important;
}

.mv-copy-stack-final #finalTextSecondary[data-copy-lang="en"] {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif !important;

    line-height: 1.44 !important;
}

body[data-copy-language="balanced"] .mv-copy-stack-final #finalText,
body[data-copy-language="balanced"] .mv-copy-stack-final #finalTextSecondary {
    max-width: 760px !important;

    color: rgba(240, 243, 252, .90) !important;

    font-size: clamp(23px, 2.15vw, 32px) !important;
    font-weight: 600 !important;
}

body[data-copy-language="balanced"] .mv-copy-stack-final #finalText[data-copy-lang="bn"],
body[data-copy-language="balanced"] .mv-copy-stack-final #finalTextSecondary[data-copy-lang="bn"] {
    line-height: 1.47 !important;
}

body[data-copy-language="balanced"] .mv-copy-stack-final #finalText[data-copy-lang="en"],
body[data-copy-language="balanced"] .mv-copy-stack-final #finalTextSecondary[data-copy-lang="en"] {
    line-height: 1.25 !important;
}


/* =========================================================
   FINAL IDENTITY
========================================================= */

.final-identity-card {
    position: relative;
    z-index: 4;

    width: min(880px, 100%);

    margin:
        clamp(24px, 3.5vw, 38px)
        auto
        0;

    padding: clamp(21px, 2.8vw, 31px);

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap: clamp(20px, 3vw, 36px);

    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 26px;

    background: rgba(255, 255, 255, .018);
}

.final-name,
.final-signature {
    margin: 0 !important;

    display: grid !important;

    gap: 9px;

    text-align: center !important;
}

.final-name span,
.final-signature span {
    color: rgba(144, 151, 177, .66) !important;

    font-family:
        Manrope,
        Arial,
        sans-serif !important;

    font-size: 7px !important;
    font-weight: 800 !important;
    letter-spacing: 3.2px !important;
}

.final-name strong {
    color: rgba(249, 250, 255, .98) !important;

    font-family:
        Manrope,
        "Noto Sans Bengali",
        Arial,
        sans-serif !important;

    font-size: clamp(24px, 2.5vw, 37px) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -.7px !important;

    overflow-wrap: anywhere;
}

.final-signature strong {
    color: var(--accent) !important;

    font-family:
        "Parisienne",
        "Noto Serif Bengali",
        cursive !important;

    font-size: clamp(24px, 2.4vw, 36px) !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;

    text-shadow:
        0 0 26px
        rgba(var(--accent-rgb), .16);

    overflow-wrap: anywhere;
}

.final-identity-divider {
    width: 1px;
    height: 88px;

    display: grid;
    grid-template-rows: 1fr auto 1fr;
    justify-items: center;

    gap: 8px;
}

.final-identity-divider span {
    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(var(--accent-rgb), .28)
        );
}

.final-identity-divider span:last-child {
    background:
        linear-gradient(
            180deg,
            rgba(var(--accent-rgb), .28),
            transparent
        );
}

.final-identity-divider i {
    color: var(--accent);

    font-size: 7px;
    font-style: normal;
}


/* =========================================================
   FINAL BRAND
========================================================= */

.final-content-v453 .final-brand {
    position: relative;
    z-index: 4;

    margin:
        clamp(22px, 3vw, 34px)
        auto
        0 !important;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, .055);

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 10px !important;

    opacity: .58;
}

.final-content-v453 .final-brand img {
    width: 30px !important;
    height: 30px !important;

    object-fit: contain;
}

.final-content-v453 .final-brand p {
    margin: 0 !important;

    color: rgba(171, 178, 199, .82) !important;

    font-family:
        Manrope,
        Arial,
        sans-serif !important;

    font-size: 8px !important;
    letter-spacing: 1.15px !important;
}

.final-content-v453 .final-brand strong {
    color: rgba(221, 225, 239, .95) !important;
}


/* =========================================================
   FINAL MOTION
========================================================= */

@keyframes mvV45FinalOrbit {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}

@keyframes mvV45FinalOrbitReverse {
    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }
}

.wish-final.is-visible .final-message-panel {
    animation:
        mvV45FinalPanelIn
        .9s
        cubic-bezier(.18, .82, .2, 1)
        both;
}

.wish-final.is-visible .final-identity-card {
    animation:
        mvV45FinalPanelIn
        .9s
        cubic-bezier(.18, .82, .2, 1)
        .12s
        both;
}

@keyframes mvV45FinalPanelIn {
    from {
        opacity: 0;

        transform:
            translateY(20px)
            scale(.985);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .video-card {
        grid-template-columns: 1fr;

        gap: 26px;

        text-align: center;
    }

    .video-copy > p {
        margin-inline: auto;
    }

    .video-state {
        justify-content: center;
    }

    .memory-copy .mv-copy-heading,
    .bond-card .mv-copy-heading {
        font-size: clamp(29px, 4.8vw, 39px) !important;
    }

    .mv-copy-primary.mv-copy-body {
        font-size: 14px !important;
    }

    .mv-copy-secondary-heading {
        font-size: clamp(18px, 3.1vw, 23px) !important;
    }

    .mv-copy-secondary-body {
        font-size: 12.5px !important;
    }

}


/* =========================================================
   MOBILE — V45.5 POLISH
========================================================= */

@media (max-width: 700px) {

    /*
       Reduce huge cinematic dead-space between sections.
       Hero and Final keep their own layout.
    */

    .wish-section:not(.wish-final) {
        min-height: auto !important;

        padding-top: 58px !important;
        padding-bottom: 58px !important;
    }

    #wishImageSection,
    #videoSection,
    #messageSection,
    #bondSection,
    #surpriseSection,
    #musicSection {
        min-height: auto !important;
    }


    /* -----------------------------------------
       VIDEO
    ----------------------------------------- */

    .video-section {
        padding-top: 54px !important;
    }

    .video-card {
        padding: 20px 14px;

        border-radius: 25px;
    }

    .video-copy h2 {
        margin: 12px auto;

        font-size: clamp(31px, 9vw, 44px);
        letter-spacing: -.8px;
    }

    .video-copy > p {
        font-size: 12px;
        line-height: 1.58;
    }

    .video-frame {
        padding: 6px;

        border-radius: 20px;
    }

    .video-frame video {
        max-height: 62svh;

        border-radius: 15px;
    }

    .video-frame-glass {
        inset: 6px;

        border-radius: 15px;
    }


    /* -----------------------------------------
       FLOATING MUSIC — V45.5
       Compact mobile dock to prevent overlap
    ----------------------------------------- */

    #floatingMusic {
        position: fixed !important;

        right: 9px !important;
        bottom:
            calc(
                10px +
                env(safe-area-inset-bottom, 0px)
            ) !important;

        left: auto !important;
        top: auto !important;

        width: 46px !important;
        max-width: 46px !important;

        height: 46px !important;
        min-height: 46px !important;

        padding: 0 !important;
        margin: 0 !important;

        border-radius: 50% !important;

        z-index: 1600 !important;

        transform: none !important;

        filter:
            drop-shadow(
                0 9px 22px
                rgba(0, 0, 0, .36)
            );
    }

    #floatingMusicButton {
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;

        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;

        padding: 0 !important;
        margin: 0 !important;

        display: grid !important;
        place-items: center !important;

        gap: 0 !important;

        border-radius: 50% !important;

        overflow: hidden !important;
    }

    #floatingMusicText {
        display: none !important;
    }

    #floatingMusicIcon {
        margin: 0 !important;

        font-size: 15px !important;
        line-height: 1 !important;
    }


    /* -----------------------------------------
       BILINGUAL
    ----------------------------------------- */

    .mv-copy-stack {
        gap: 10px;
    }

    .mv-copy-secondary-block {
        margin-top: 6px;
        padding-top: 11px;
    }

    .mv-language-label {
        margin-bottom: 8px;

        font-size: 6.5px;
        letter-spacing: 2.1px;
    }


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .mv-copy-stack-hero {
        width: min(92vw, 720px);

        margin-top: 14px;
    }

    .hero-subtitle.mv-copy-primary {
        max-width: 94%;

        font-size: 14px !important;
        line-height: 1.60 !important;
    }

    .hero-subtitle.mv-copy-secondary {
        max-width: 92%;

        font-size: 11.5px !important;
        line-height: 1.58 !important;
    }


    /* -----------------------------------------
       MEMORY
    ----------------------------------------- */

    .memory-copy .mv-copy-heading {
        max-width: 100%;

        font-size: clamp(25px, 7vw, 31px) !important;

        letter-spacing: -.35px !important;
    }

    .memory-copy .mv-copy-heading[data-copy-lang="bn"] {
        line-height: 1.39 !important;
    }

    .memory-copy .mv-copy-heading[data-copy-lang="en"] {
        line-height: 1.18 !important;
    }

    .memory-copy .mv-copy-primary.mv-copy-body {
        max-width: 100%;

        margin-top: 10px !important;

        font-size: 12.8px !important;
    }

    .memory-copy .mv-copy-primary.mv-copy-body[data-copy-lang="bn"] {
        line-height: 1.76 !important;
    }

    .memory-copy .mv-copy-secondary-heading {
        max-width: 100%;

        font-size: clamp(17px, 4.7vw, 20px) !important;
    }

    .memory-copy .mv-copy-secondary-body {
        max-width: 100%;

        margin-top: 7px !important;

        font-size: 11.8px !important;
        line-height: 1.68 !important;
    }


    /* -----------------------------------------
       CONNECTION
    ----------------------------------------- */

    .bond-card .mv-copy-stack-centered {
        width: 100%;
    }

    .bond-card .mv-copy-heading {
        max-width: 100%;

        font-size: clamp(26px, 7.2vw, 32px) !important;

        letter-spacing: -.3px !important;
    }

    .bond-card .mv-copy-heading[data-copy-lang="bn"] {
        line-height: 1.39 !important;
    }

    .bond-card .mv-copy-heading[data-copy-lang="en"] {
        line-height: 1.18 !important;
    }

    .bond-card .mv-copy-primary.mv-copy-body {
        max-width: 100%;

        margin-top: 10px !important;

        font-size: 12.8px !important;
    }

    .bond-card .mv-copy-secondary-heading {
        max-width: 100%;

        font-size: clamp(17px, 4.8vw, 21px) !important;
    }

    .bond-card .mv-copy-secondary-body {
        max-width: 100%;

        font-size: 11.8px !important;
    }


    /* -----------------------------------------
       BALANCED
    ----------------------------------------- */

    body[data-copy-language="balanced"] .mv-copy-secondary-heading {
        font-size: clamp(20px, 5.8vw, 27px) !important;
    }

    body[data-copy-language="balanced"] .mv-copy-secondary-body {
        font-size: 12.8px !important;
    }


    /* -----------------------------------------
       FINAL
    ----------------------------------------- */

    .wish-final {
        min-height: auto !important;

        padding:
            58px
            8px
            76px !important;
    }

    .final-content.final-content-v453 {
        padding:
            26px
            10px
            28px !important;

        border-radius: 25px !important;
    }

    .final-topline {
        gap: 14px;
    }

    .final-topline .section-kicker {
        font-size: 7px !important;

        letter-spacing: 3.4px !important;
    }

    .final-orbit-emblem {
        width: 88px;
    }

    .final-icon {
        font-size: 48px !important;
    }

    .final-message-panel {
        margin-top: 20px;

        padding: 20px 13px;

        border-radius: 20px;
    }

    .final-message-spark {
        width: 30px;
        height: 30px;

        margin-bottom: 15px;
    }

    .mv-copy-stack-final #finalText,
    .mv-copy-stack-final #finalText[data-copy-lang="bn"],
    .mv-copy-stack-final #finalText[data-copy-lang="en"] {
        max-width: 100% !important;

        font-size:
            clamp(
                22px,
                6.2vw,
                27px
            ) !important;
    }

    .mv-copy-stack-final #finalText[data-copy-lang="bn"] {
        line-height: 1.47 !important;
    }

    .mv-copy-stack-final #finalText[data-copy-lang="en"] {
        line-height: 1.28 !important;
    }

    .final-bilingual-divider {
        width: min(300px, 78%);

        margin: 18px auto;

        gap: 10px;
    }

    .mv-copy-stack-final #finalTextSecondary,
    .mv-copy-stack-final #finalTextSecondary[data-copy-lang="bn"],
    .mv-copy-stack-final #finalTextSecondary[data-copy-lang="en"] {
        max-width: 94% !important;

        font-size: 13.5px !important;
    }

    .mv-copy-stack-final #finalTextSecondary[data-copy-lang="bn"] {
        line-height: 1.62 !important;
    }

    .mv-copy-stack-final #finalTextSecondary[data-copy-lang="en"] {
        line-height: 1.48 !important;
    }

    body[data-copy-language="balanced"] .mv-copy-stack-final #finalText,
    body[data-copy-language="balanced"] .mv-copy-stack-final #finalTextSecondary {
        max-width: 96% !important;

        font-size:
            clamp(
                19px,
                5.2vw,
                23px
            ) !important;
    }


    /* -----------------------------------------
       FINAL IDENTITY
    ----------------------------------------- */

    .final-identity-card {
        grid-template-columns: 1fr;

        margin-top: 20px;

        padding: 18px 13px 20px;

        gap: 15px;

        border-radius: 21px;
    }

    .final-identity-divider {
        width: min(280px, 84%);
        height: auto;

        margin: 0 auto;

        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: none;
        align-items: center;

        gap: 10px;
    }

    .final-identity-divider span {
        width: 100%;
        height: 1px;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(var(--accent-rgb), .26)
            );
    }

    .final-identity-divider span:last-child {
        background:
            linear-gradient(
                90deg,
                rgba(var(--accent-rgb), .26),
                transparent
            );
    }

    .final-name,
    .final-signature {
        width: 100%;

        gap: 7px;
    }

    .final-name span,
    .final-signature span {
        font-size: 6.5px !important;

        letter-spacing: 2.5px !important;
    }

    .final-name strong {
        max-width: 100%;

        margin: 0 auto;

        font-size:
            clamp(
                22px,
                6.5vw,
                29px
            ) !important;
    }

    /*
       V45.5:
       sender signature smaller + constrained
       so long names do not touch floating control.
    */

    .final-signature strong {
        display: block;

        width: fit-content;
        max-width: min(290px, 88%);

        margin: 0 auto;

        font-size:
            clamp(
                20px,
                5.7vw,
                26px
            ) !important;

        line-height: 1.32 !important;

        overflow-wrap: anywhere;
        word-break: normal;
    }

    .final-content-v453 .final-brand {
        margin-top: 20px !important;

        padding-top: 17px;

        flex-direction: column !important;

        gap: 5px !important;
    }

}


/* =========================================================
   SMALL MOBILE — 430px TARGET
========================================================= */

@media (max-width: 430px) {

    .wish-section:not(.wish-final) {
        padding-top: 52px !important;
        padding-bottom: 52px !important;
    }


    /* Floating music even smaller */

    #floatingMusic {
        width: 43px !important;
        max-width: 43px !important;

        height: 43px !important;
        min-height: 43px !important;

        right: 7px !important;

        bottom:
            calc(
                8px +
                env(safe-area-inset-bottom, 0px)
            ) !important;
    }

    #floatingMusicButton {
        width: 43px !important;
        min-width: 43px !important;
        max-width: 43px !important;

        height: 43px !important;
        min-height: 43px !important;
        max-height: 43px !important;
    }

    #floatingMusicIcon {
        font-size: 14px !important;
    }


    /* Memory */

    .memory-copy .mv-copy-heading {
        font-size:
            clamp(
                24px,
                6.8vw,
                28.5px
            ) !important;
    }

    .memory-copy .mv-copy-primary.mv-copy-body {
        font-size: 12.5px !important;
    }

    .memory-copy .mv-copy-secondary-heading {
        font-size:
            clamp(
                16.5px,
                4.6vw,
                19px
            ) !important;
    }

    .memory-copy .mv-copy-secondary-body {
        font-size: 11.5px !important;
    }


    /* Connection */

    .bond-card .mv-copy-heading {
        font-size:
            clamp(
                24px,
                6.8vw,
                29px
            ) !important;
    }

    .bond-card .mv-copy-primary.mv-copy-body {
        font-size: 12.5px !important;
    }

    .bond-card .mv-copy-secondary-heading {
        font-size:
            clamp(
                16.5px,
                4.6vw,
                19px
            ) !important;
    }

    .bond-card .mv-copy-secondary-body {
        font-size: 11.5px !important;
    }


    /* Final */

    .wish-final {
        padding-top: 52px !important;
        padding-bottom: 68px !important;
    }

    .final-content.final-content-v453 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .final-message-panel {
        padding-left: 11px;
        padding-right: 11px;
    }

    .mv-copy-stack-final #finalText,
    .mv-copy-stack-final #finalText[data-copy-lang="bn"],
    .mv-copy-stack-final #finalText[data-copy-lang="en"] {
        font-size:
            clamp(
                20.5px,
                6vw,
                24.5px
            ) !important;
    }

    .mv-copy-stack-final #finalTextSecondary,
    .mv-copy-stack-final #finalTextSecondary[data-copy-lang="bn"],
    .mv-copy-stack-final #finalTextSecondary[data-copy-lang="en"] {
        font-size: 12.8px !important;
    }

    body[data-copy-language="balanced"] .mv-copy-stack-final #finalText,
    body[data-copy-language="balanced"] .mv-copy-stack-final #finalTextSecondary {
        font-size:
            clamp(
                18px,
                5.1vw,
                21px
            ) !important;
    }

    .final-name strong {
        font-size:
            clamp(
                21px,
                6vw,
                27px
            ) !important;
    }

    .final-signature strong {
        max-width: 84%;

        font-size:
            clamp(
                19px,
                5.4vw,
                24px
            ) !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .wish-section:not(.wish-final) {
        padding-top: 46px !important;
        padding-bottom: 46px !important;
    }

    .memory-copy .mv-copy-heading,
    .bond-card .mv-copy-heading {
        font-size: 23px !important;
    }

    .memory-copy .mv-copy-primary.mv-copy-body,
    .bond-card .mv-copy-primary.mv-copy-body {
        font-size: 12px !important;
    }

    .mv-copy-secondary-heading {
        font-size: 16px !important;
    }

    .mv-copy-secondary-body {
        font-size: 11px !important;
    }

    .mv-copy-stack-final #finalText {
        font-size: 20px !important;
    }

    .mv-copy-stack-final #finalTextSecondary {
        font-size: 12px !important;
    }

    .final-signature strong {
        max-width: 82%;

        font-size: 19px !important;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .video-orbit,
    body[data-motion-profile] .opening-particles i,
    body[data-motion-profile] .gift-orbit,
    body[data-motion-profile] .hero-light,
    .final-orbit-ring-one,
    .final-orbit-ring-two,
    .reveal-section.is-visible .mv-copy-secondary-block,
    .wish-final.is-visible .mv-copy-secondary-block,
    .wish-final.is-visible .final-message-panel,
    .wish-final.is-visible .final-identity-card {
        animation: none !important;
    }

}