/* ===== DATING WRAPPED SLIDES CSS ===== */

/* ---- PROGRESS DOTS ---- */
.slide-progress { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 100; opacity: 0; transition: opacity 0.3s; }
.slide-progress.visible { opacity: 1; }
.slide-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.3s; }
.slide-dot.active { background: #fff; width: 22px; border-radius: 3px; }

/* ======================================================
   BACKGROUNDS — DATING/TINDER: PINK, RED, PURPLE, HOT
   ====================================================== */
.slide-inner {
    overflow: hidden;
    position: relative;
}

.s-bg-dt-intro      { background: linear-gradient(135deg, #FD297B, #FF5864) !important; }
.s-bg-dt-numbers    { background: linear-gradient(135deg, #FF655B, #FD297B) !important; }
.s-bg-dt-pickiness  { background: linear-gradient(135deg, #8B1A8F, #FD297B) !important; }
.s-bg-dt-texting    { background: linear-gradient(135deg, #FF5864, #C850C0) !important; }
.s-bg-dt-clock      { background: linear-gradient(135deg, #1A1A3E, #FD297B) !important; }
.s-bg-dt-conversion { background: linear-gradient(135deg, #FF655B, #8B1A8F) !important; }
.s-bg-dt-funnel     { background: linear-gradient(135deg, #FD297B, #4A0E4E) !important; }
.s-bg-dt-timeline   { background: linear-gradient(135deg, #FF5864, #1A1A3E) !important; }
.s-bg-dt-ghost      { background: linear-gradient(135deg, #2D1B69, #FF5864) !important; }
.s-bg-dt-situation  { background: linear-gradient(135deg, #C850C0, #FF655B) !important; }
.s-bg-dt-redflag    { background: linear-gradient(135deg, #B71C1C, #FF655B) !important; }
.s-bg-dt-addiction  { background: linear-gradient(135deg, #FD297B, #FF655B) !important; }
.s-bg-dt-worstdate  { background: linear-gradient(135deg, #4A0E4E, #FF5864) !important; }
.s-bg-dt-persona    { background: linear-gradient(135deg, #FD297B, #4A0E4E) !important; }
.s-bg-dt-opener     { background: linear-gradient(135deg, #FF5864, #C850C0) !important; }
.s-bg-dt-doubletext { background: linear-gradient(135deg, #FD297B, #FF655B) !important; }
.s-bg-dt-msgstats   { background: linear-gradient(135deg, #8B1A8F, #FF5864) !important; }
.s-bg-dt-deadconvos { background: linear-gradient(135deg, #2D1B69, #C850C0) !important; }

/* ---- APP PICKER ---- */
.app-picker {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: 1.5rem 0 1rem;
    flex-wrap: wrap;
}
.app-pick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 90px;
}
.app-pick-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}
.app-pick-btn.active {
    background: rgba(255,255,255,0.15);
    border-color: #FD297B;
    color: #fff;
    box-shadow: 0 0 20px rgba(253,41,123,0.3);
}
.app-pick-icon { font-size: 2rem; }
.app-pick-name { font-size: 0.85rem; font-weight: 600; }

/* ---- OPENER BUBBLE ---- */
.opener-bubble {
    background: rgba(255,255,255,0.12);
    border-radius: 20px 20px 4px 20px;
    padding: 1.2rem 1.8rem;
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    font-weight: 600;
    color: #fff;
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    line-height: 1.4;
}
.opener-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255,255,255,0.12);
}

@media (max-width: 480px) {
    .app-pick-btn { padding: 0.7rem 1rem; min-width: 75px; }
    .app-pick-icon { font-size: 1.5rem; }
    .app-pick-name { font-size: 0.75rem; }
    .opener-bubble { padding: 0.8rem 1.2rem; font-size: 1rem; }
}

/* ---- ADDICTION METER ---- */
.meter-bar-wrap { width: 100%; max-width: 300px; margin-top: 1rem; }
.meter-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 6px; }
.meter-track { width: 100%; height: 16px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.meter-fill { height: 100%; width: 0%; border-radius: 10px; transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1); }
.dt-meter-fill { background: linear-gradient(90deg, #FFD700, #FF8C00, #FD297B, #DC143C); }
.meter-level { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-top: 6px; text-align: center; }

/* ---- SLIDE CONTENT LAYOUT ---- */
.s-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 400px; }
.s-watermark { position: absolute; bottom: 1.2rem; right: 1.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; color: rgba(255,255,255,0.25); z-index: 2; }
.s-eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 5px; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; text-transform: uppercase; }
.s-big-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(3.5rem, 14vw, 7rem); font-weight: 700; line-height: 1; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.s-caption { font-size: 1rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }
.s-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 10vw, 4rem); font-weight: 700; margin-bottom: 1rem; text-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.s-roast { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin-top: 1.5rem; max-width: 320px; line-height: 1.5; font-style: italic; background: rgba(0,0,0,0.2); padding: 0.8rem 1.2rem; border-radius: 12px; backdrop-filter: blur(10px); }
.s-next { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); font-size: 1.2rem; cursor: pointer; padding: 0.6rem 1.8rem; border-radius: 50px; transition: all 0.3s; z-index: 10; font-family: 'Space Grotesk', sans-serif; }
.s-next:hover { border-color: rgba(255,255,255,0.8); color: #fff; background: rgba(255,255,255,0.25); }

/* ---- MODULE-SPECIFIC COMPONENTS ---- */
.funnel-container { width: 100%; max-width: 300px; margin: 1rem auto; }
.ghost-stats { display: flex; gap: 2rem; justify-content: center; margin: 1rem 0; }
.ghost-stat { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.ghost-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.redflag-display { font-size: 4rem; margin: 1rem 0; }

/* ============================================================
   SCENE ANIMATIONS — DATING / LOVE THEMED CSS SHAPES (2-3X SCALED)
   ============================================================ */
.scene { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }

/* ======================
   SLIDE 0 — INTRO (SCALED 2.5x)
   ====================== */
/* CSS Heart shape — 2.5x */
.intro-heart {
    position: absolute;
    width: 150px; height: 138px;
    animation: heartFloat 5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite alternate;
}
.intro-heart::before,
.intro-heart::after {
    content: ''; position: absolute; top: 0;
    width: 82px; height: 130px;
    background: rgba(255,255,255,0.2);
    border-radius: 82px 82px 0 0;
}
.intro-heart::before { left: 75px; transform: rotate(-45deg); transform-origin: 0 100%; }
.intro-heart::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }
.ih-1 { top: 8%; right: 8%; }
.ih-2 { bottom: 18%; left: 5%; width: 100px; height: 90px; animation-delay: 1.5s; animation-duration: 6s; }
.ih-2::before, .ih-2::after { width: 55px; height: 85px; border-radius: 55px 55px 0 0; }
.ih-2::before { left: 50px; }

/* Tinder flame (teardrop) — 2.5x */
.intro-flame {
    position: absolute; top: 12%; left: 10%;
    width: 125px; height: 175px;
    background: linear-gradient(180deg, #FF5864, #FD297B, #FF655B);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(180deg);
    box-shadow: 0 0 75px rgba(253,41,123,0.5);
    animation: flameFlicker 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.intro-flame::before {
    content: ''; position: absolute; top: 38px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 88px;
    background: linear-gradient(180deg, #FFD700, #FF655B);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* Swipe card — 2.5x */
.intro-card {
    position: absolute; bottom: 12%; right: 8%;
    width: 225px; height: 300px;
    background: rgba(255,255,255,0.12);
    border-radius: 35px;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 30px 88px rgba(0,0,0,0.4);
    animation: cardSwipeRight 4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.intro-card::before {
    content: ''; position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
    width: 125px; height: 15px;
    background: rgba(255,255,255,0.25);
    border-radius: 8px;
    box-shadow: 0 -30px 0 rgba(255,255,255,0.15);
}
.intro-card::after {
    content: ''; position: absolute; top: 45px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 100px;
    border: 6px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* ======================
   SLIDE 1 — THE NUMBERS (SCALED 2.5x)
   ====================== */
/* Green checkmark circle */
.numbers-check {
    position: absolute; top: 10%; right: 8%;
    width: 175px; height: 175px;
    border: 8px solid rgba(76,217,100,0.5);
    border-radius: 50%;
    animation: checkPulse 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.numbers-check::before {
    content: ''; position: absolute; top: 95px; left: 40px;
    width: 40px; height: 10px;
    background: rgba(76,217,100,0.6);
    border-radius: 5px;
    transform: rotate(45deg);
}
.numbers-check::after {
    content: ''; position: absolute; top: 80px; left: 60px;
    width: 70px; height: 10px;
    background: rgba(76,217,100,0.6);
    border-radius: 5px;
    transform: rotate(-45deg);
}

/* Red X mark — 2.5x */
.numbers-x {
    position: absolute; bottom: 12%; left: 8%;
    width: 150px; height: 150px;
    border: 8px solid rgba(255,88,100,0.4);
    border-radius: 50%;
    animation: xShake 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.numbers-x::before,
.numbers-x::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 75px; height: 10px;
    background: rgba(255,88,100,0.5);
    border-radius: 5px;
}
.numbers-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.numbers-x::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* Small swipe cards stack — 2.5x */
.numbers-stack {
    position: absolute; top: 40%; left: 5%;
    width: 175px; height: 238px;
    background: rgba(255,255,255,0.08);
    border-radius: 25px;
    border: 4px solid rgba(255,255,255,0.12);
    animation: stackDrift 5s ease-in-out infinite alternate;
}
.numbers-stack::before {
    content: ''; position: absolute; top: -20px; left: 15px;
    width: 175px; height: 238px;
    background: rgba(255,255,255,0.06);
    border-radius: 25px;
    border: 4px solid rgba(255,255,255,0.08);
    transform: rotate(6deg);
}
.numbers-stack::after {
    content: ''; position: absolute; top: -35px; left: 30px;
    width: 175px; height: 238px;
    background: rgba(255,255,255,0.04);
    border-radius: 25px;
    border: 4px solid rgba(255,255,255,0.06);
    transform: rotate(12deg);
}

/* Floating heart — 2.5x */
.numbers-heart {
    position: absolute; bottom: 8%; right: 30%;
    width: 88px; height: 80px;
    animation: heartBeat 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.numbers-heart::before,
.numbers-heart::after {
    content: ''; position: absolute; top: 0;
    width: 48px; height: 75px;
    background: rgba(253,41,123,0.35);
    border-radius: 48px 48px 0 0;
}
.numbers-heart::before { left: 42px; transform: rotate(-45deg); transform-origin: 0 100%; }
.numbers-heart::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }

/* ======================
   SLIDE 2 — PICKINESS SCORE (SCALED 2.5x)
   ====================== */
.pickiness-card-left {
    position: absolute; top: 12%; left: 6%;
    width: 200px; height: 270px;
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    border: 4px solid rgba(255,88,100,0.3);
    box-shadow: 0 20px 62px rgba(0,0,0,0.4);
    animation: cardSwipeLeft 5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.pickiness-card-left::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 75px; height: 10px;
    background: rgba(255,88,100,0.5);
    transform: translate(-50%, -50%) rotate(45deg);
}
.pickiness-card-left::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 75px; height: 10px;
    background: rgba(255,88,100,0.5);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pickiness-card-right {
    position: absolute; bottom: 14%; right: 6%;
    width: 200px; height: 270px;
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    border: 4px solid rgba(76,217,100,0.3);
    box-shadow: 0 20px 62px rgba(0,0,0,0.4);
    animation: cardSwipeRight 5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s infinite;
}
.pickiness-card-right::before {
    content: ''; position: absolute; top: 100px; left: 40px;
    width: 35px; height: 10px;
    background: rgba(76,217,100,0.5);
    border-radius: 5px;
    transform: rotate(45deg);
}
.pickiness-card-right::after {
    content: ''; position: absolute; top: 90px; left: 58px;
    width: 60px; height: 10px;
    background: rgba(76,217,100,0.5);
    border-radius: 5px;
    transform: rotate(-45deg);
}

/* Scale/balance line — 2.5x */
.pickiness-scale {
    position: absolute; top: 55%; right: 12%;
    width: 200px; height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    animation: scaleRock 3s ease-in-out infinite;
}
.pickiness-scale::before {
    content: ''; position: absolute; top: -45px; left: -10px;
    width: 50px; height: 50px;
    border: 6px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}
.pickiness-scale::after {
    content: ''; position: absolute; top: -45px; right: -10px;
    width: 50px; height: 50px;
    border: 6px solid rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* ======================
   SLIDE 3 — TEXTING STYLE (SCALED 2.5x)
   ====================== */
.texting-phone {
    position: absolute; top: 50%; right: 5%;
    width: 162px; height: 300px;
    border: 6px solid rgba(255,255,255,0.2);
    border-radius: 35px;
    transform: translateY(-50%);
    animation: phoneFloat 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.texting-phone::before {
    content: ''; position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
    width: 62px; height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}
.texting-phone::after {
    content: ''; position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
    width: 70px; height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 5px;
}

/* Chat bubble — right (sent) — 2.5x */
.texting-bubble-r {
    position: absolute; top: 15%; left: 8%;
    width: 250px; height: 90px;
    background: rgba(253,41,123,0.3);
    border-radius: 45px 45px 10px 45px;
    animation: bubblePopRight 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.texting-bubble-r::before {
    content: ''; position: absolute; top: 50%; left: 35px; transform: translateY(-50%);
    width: 150px; height: 10px;
    background: rgba(255,255,255,0.35);
    border-radius: 5px;
    box-shadow: 0 25px 0 rgba(255,255,255,0.2);
}

/* Chat bubble — left (received) — 2.5x */
.texting-bubble-l {
    position: absolute; bottom: 20%; left: 12%;
    width: 212px; height: 90px;
    background: rgba(255,255,255,0.15);
    border-radius: 45px 45px 45px 10px;
    animation: bubblePopLeft 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s infinite;
}
.texting-bubble-l::before {
    content: ''; position: absolute; top: 50%; left: 35px; transform: translateY(-50%);
    width: 112px; height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
}

/* Small heart — 2.5x */
.texting-heart {
    position: absolute; top: 30%; left: 52%;
    width: 60px; height: 55px;
    animation: heartBeat 2.5s ease-in-out infinite;
}
.texting-heart::before,
.texting-heart::after {
    content: ''; position: absolute; top: 0;
    width: 33px; height: 50px;
    background: rgba(253,41,123,0.4);
    border-radius: 33px 33px 0 0;
}
.texting-heart::before { left: 30px; transform: rotate(-45deg); transform-origin: 0 100%; }
.texting-heart::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }

/* Second bubble — 2.5x */
.texting-bubble-r2 {
    position: absolute; bottom: 35%; right: 10%;
    width: 175px; height: 70px;
    background: rgba(253,41,123,0.25);
    border-radius: 35px 35px 10px 35px;
    animation: bubblePopRight 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s infinite;
}
.texting-bubble-r2::before {
    content: ''; position: absolute; top: 50%; left: 30px; transform: translateY(-50%);
    width: 88px; height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

/* ======================
   SLIDE 4 — SWIPE O'CLOCK (SCALED 2.5x)
   ====================== */
.clock-face {
    position: absolute; top: 10%; right: 8%;
    width: 250px; height: 250px;
    border: 8px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    animation: clockFloat 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.clock-face::before {
    content: ''; position: absolute; top: 45px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 80px;
    background: rgba(255,255,255,0.5);
    border-radius: 5px;
    transform-origin: bottom center;
    animation: hourHand 12s linear infinite;
}
.clock-face::after {
    content: ''; position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 95px;
    background: rgba(255,255,255,0.35);
    border-radius: 4px;
    transform-origin: bottom center;
    animation: minuteHand 4s linear infinite;
}

/* Moon crescent — 2.5x */
.clock-moon {
    position: absolute; bottom: 15%; left: 8%;
    width: 150px; height: 150px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 30px -20px 0 0 rgba(255,255,255,0.2);
    animation: moonDrift 7s ease-in-out infinite alternate;
}

/* Star — 2.5x */
.clock-star {
    position: absolute; top: 25%; left: 18%;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: starTwinkle 2s ease-in-out infinite;
}
.cs-2 { top: 35%; left: 28%; width: 20px; height: 20px; animation-delay: 0.7s; }
.cs-3 { top: 18%; left: 30%; width: 15px; height: 15px; animation-delay: 1.4s; }

/* Phone outline — 2.5x */
.clock-phone {
    position: absolute; bottom: 10%; right: 15%;
    width: 125px; height: 225px;
    border: 6px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    animation: phoneFloat 5s ease-in-out 1s infinite alternate;
}
.clock-phone::before {
    content: ''; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

/* ======================
   SLIDE 5 — CONVERSION RATE (SCALED 2.5x)
   ====================== */
.conversion-funnel-top {
    position: absolute; top: 10%; right: 6%;
    width: 300px; height: 150px;
    border-left: 6px solid rgba(255,255,255,0.2);
    border-right: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid rgba(255,255,255,0.2);
    border-radius: 20px 20px 0 0;
    animation: funnelPulse 4s ease-in-out infinite;
}
.conversion-funnel-top::after {
    content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
    width: 75px; height: 100px;
    border-left: 6px solid rgba(255,255,255,0.2);
    border-right: 6px solid rgba(255,255,255,0.2);
}

/* Small hearts entering funnel — 2.5x */
.conversion-heart-in {
    position: absolute;
    width: 40px; height: 35px;
    animation: heartFallIn 3s ease-in infinite;
}
.conversion-heart-in::before,
.conversion-heart-in::after {
    content: ''; position: absolute; top: 0;
    width: 22px; height: 32px;
    background: rgba(255,255,255,0.3);
    border-radius: 22px 22px 0 0;
}
.conversion-heart-in::before { left: 20px; transform: rotate(-45deg); transform-origin: 0 100%; }
.conversion-heart-in::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }
.chi-1 { top: 2%; right: 20%; animation-delay: 0s; }
.chi-2 { top: 5%; right: 12%; animation-delay: 0.8s; }
.chi-3 { top: 0%; right: 28%; animation-delay: 1.6s; }

/* Swipe card stack — 2.5x */
.conversion-stack {
    position: absolute; bottom: 15%; left: 8%;
    width: 188px; height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 25px;
    border: 4px solid rgba(255,255,255,0.12);
    animation: stackDrift 6s ease-in-out infinite alternate;
}
.conversion-stack::before {
    content: ''; position: absolute; top: -15px; left: 12px;
    width: 188px; height: 250px;
    background: rgba(255,255,255,0.05);
    border-radius: 25px;
    border: 4px solid rgba(255,255,255,0.08);
    transform: rotate(4deg);
}

/* ======================
   SLIDE 6 — THE FUNNEL (SCALED 2.5x)
   ====================== */
.funnel-flame {
    position: absolute; top: 8%; left: 8%;
    width: 112px; height: 155px;
    background: linear-gradient(180deg, #FF5864, #FD297B);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(180deg);
    box-shadow: 0 0 62px rgba(253,41,123,0.4);
    animation: flameFlicker 3.5s ease-in-out infinite;
}
.funnel-flame::before {
    content: ''; position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 75px;
    background: linear-gradient(180deg, #FFD700, #FF655B);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* Cascading cards — 2.5x */
.funnel-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    border: 4px solid rgba(255,255,255,0.1);
}
.fc-1 { top: 10%; right: 10%; width: 138px; height: 180px; animation: cardFall 4s ease-in-out infinite; }
.fc-2 { top: 30%; right: 5%; width: 112px; height: 150px; animation: cardFall 4s ease-in-out 1s infinite; }
.fc-3 { bottom: 20%; right: 12%; width: 100px; height: 130px; animation: cardFall 4s ease-in-out 2s infinite; }

/* Broken heart — 2.5x */
.funnel-broken-heart {
    position: absolute; bottom: 10%; left: 10%;
    width: 125px; height: 115px;
    animation: brokenHeartDrift 5s ease-in-out infinite alternate;
}
.funnel-broken-heart::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 55px; height: 100px;
    background: rgba(255,88,100,0.3);
    border-radius: 55px 0 0 0;
    clip-path: polygon(0 0, 100% 15%, 90% 100%, 0 80%);
    transform: rotate(-10deg);
}
.funnel-broken-heart::after {
    content: ''; position: absolute; top: 0; right: 0;
    width: 55px; height: 100px;
    background: rgba(255,88,100,0.3);
    border-radius: 0 55px 0 0;
    clip-path: polygon(0 15%, 100% 0, 100% 80%, 10% 100%);
    transform: rotate(10deg) translateX(10px);
}

/* ======================
   SLIDE 7 — MATCH TIMELINE (SCALED 2.5x)
   ====================== */
.timeline-dot {
    position: absolute;
    width: 40px; height: 40px;
    background: rgba(253,41,123,0.5);
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.3);
    animation: timelineDotPulse 3s ease-in-out infinite;
}
.td-1 { top: 18%; left: 15%; animation-delay: 0s; }
.td-2 { top: 35%; left: 50%; animation-delay: 0.6s; }
.td-3 { top: 52%; left: 80%; animation-delay: 1.2s; }

.timeline-line {
    position: absolute; top: 20%; left: 15%;
    width: 70%; height: 8px;
    background: linear-gradient(90deg, rgba(253,41,123,0.4), rgba(255,255,255,0.2), rgba(253,41,123,0.4));
    transform: rotate(25deg);
    transform-origin: left center;
    animation: timelineGlow 4s ease-in-out infinite;
}
.timeline-line::before {
    content: ''; position: absolute; top: -5px; left: 0;
    width: 100%; height: 18px;
    background: linear-gradient(90deg, transparent, rgba(253,41,123,0.2), transparent);
    border-radius: 9px;
}

/* Heart markers — 2.5x */
.timeline-heart-marker {
    position: absolute;
    width: 55px; height: 50px;
    animation: heartBeat 2.5s ease-in-out infinite;
}
.timeline-heart-marker::before,
.timeline-heart-marker::after {
    content: ''; position: absolute; top: 0;
    width: 30px; height: 45px;
    background: rgba(253,41,123,0.45);
    border-radius: 30px 30px 0 0;
}
.timeline-heart-marker::before { left: 28px; transform: rotate(-45deg); transform-origin: 0 100%; }
.timeline-heart-marker::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }
.thm-1 { top: 26%; left: 32%; animation-delay: 0.3s; }
.thm-2 { bottom: 25%; right: 15%; animation-delay: 1s; }

/* Fast clock — 2.5x */
.timeline-fast-clock {
    position: absolute; bottom: 12%; left: 8%;
    width: 175px; height: 175px;
    border: 6px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: clockFloat 5s ease-in-out infinite alternate;
}
.timeline-fast-clock::before {
    content: ''; position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 55px;
    background: rgba(255,255,255,0.45);
    border-radius: 4px;
    transform-origin: bottom center;
    animation: fastClockHand 2s linear infinite;
}
.timeline-fast-clock::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 15px; height: 15px;
    background: rgba(253,41,123,0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* ======================
   SLIDE 8 — GHOST REPORT (SCALED 2.5x)
   ====================== */
.ghost-shape {
    position: absolute;
    background: rgba(255,255,255,0.12);
    border-radius: 50% 50% 0 0;
    animation: ghostDrift 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.gs-1 {
    top: 8%; right: 8%;
    width: 200px; height: 250px;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 85% 100%, 70% 80%, 55% 100%, 40% 80%, 25% 100%, 10% 80%, 0 100%);
}
.gs-1::before {
    content: ''; position: absolute; top: 75px; left: 45px;
    width: 30px; height: 35px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    box-shadow: 70px 0 0 rgba(0,0,0,0.3);
}
.gs-1::after {
    content: ''; position: absolute; top: 130px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 25px;
    border: 6px solid rgba(0,0,0,0.2);
    border-top: none;
    border-radius: 0 0 25px 25px;
}

.gs-2 {
    bottom: 12%; left: 6%;
    width: 138px; height: 175px;
    animation-delay: 1.5s;
    animation-duration: 6s;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 80% 100%, 60% 82%, 40% 100%, 20% 82%, 0 100%);
}
.gs-2::before {
    content: ''; position: absolute; top: 50px; left: 30px;
    width: 20px; height: 25px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    box-shadow: 50px 0 0 rgba(0,0,0,0.3);
}

/* Disappearing phone — 2.5x */
.ghost-phone {
    position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
    width: 138px; height: 250px;
    border: 6px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    animation: ghostFade 4s ease-in-out infinite;
}
.ghost-phone::before {
    content: ''; position: absolute; top: 50px; left: 20px;
    width: 75px; height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 5px;
    box-shadow: 0 30px 0 rgba(255,255,255,0.1), 12px 60px 0 rgba(255,255,255,0.08);
}
.ghost-phone::after {
    content: ''; position: absolute; bottom: 62px; right: 20px;
    width: 35px; height: 8px;
    background: rgba(76,217,100,0.3);
    border-radius: 4px;
}

/* ======================
   SLIDE 9 — SITUATIONSHIP (SCALED 2.5x)
   ====================== */
.situation-ring {
    position: absolute; top: 10%; right: 10%;
    width: 200px; height: 200px;
    border: 12px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    animation: ringFloat 5s ease-in-out infinite alternate;
}
.situation-ring::before {
    content: ''; position: absolute; top: -35px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 45px; height: 45px;
    background: rgba(255,215,0,0.25);
    box-shadow: 0 0 38px rgba(255,215,0,0.2);
}

/* Chain links — 2.5x */
.situation-chain {
    position: absolute; bottom: 15%; left: 8%;
    width: 125px; height: 75px;
    border: 8px solid rgba(255,255,255,0.2);
    border-radius: 38px;
    animation: chainPull 4s ease-in-out infinite;
}
.situation-chain::before {
    content: ''; position: absolute; top: 0; left: 75px;
    width: 125px; height: 75px;
    border: 8px solid rgba(255,255,255,0.15);
    border-radius: 38px;
}

/* Calendar — 2.5x */
.situation-cal {
    position: absolute; top: 50%; left: 8%;
    width: 150px; height: 138px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border-top: 10px solid rgba(253,41,123,0.5);
    animation: calFloat 6s ease-in-out infinite alternate;
    transform: translateY(-50%);
}
.situation-cal::before {
    content: ''; position: absolute; top: -25px; left: 30px;
    width: 15px; height: 35px;
    background: rgba(255,255,255,0.25);
    border-radius: 8px;
    box-shadow: 60px 0 0 rgba(255,255,255,0.25);
}
.situation-cal::after {
    content: ''; position: absolute; top: 45px; left: 25px;
    width: 15px; height: 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    box-shadow: 30px 0 0 rgba(255,255,255,0.2), 60px 0 0 rgba(255,255,255,0.2),
                0 30px 0 rgba(255,255,255,0.15), 30px 30px 0 rgba(255,255,255,0.15), 60px 30px 0 rgba(255,255,255,0.15);
}

/* Floating heart — 2.5x */
.situation-heart {
    position: absolute; bottom: 30%; right: 6%;
    width: 70px; height: 62px;
    animation: heartBeat 3s ease-in-out infinite;
}
.situation-heart::before,
.situation-heart::after {
    content: ''; position: absolute; top: 0;
    width: 38px; height: 58px;
    background: rgba(253,41,123,0.3);
    border-radius: 38px 38px 0 0;
}
.situation-heart::before { left: 35px; transform: rotate(-45deg); transform-origin: 0 100%; }
.situation-heart::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }

/* ======================
   SLIDE 10 — RED FLAG (SCALED 2.5x)
   ====================== */
.redflag-flag {
    position: absolute; top: 8%; right: 8%;
    width: 10px; height: 300px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    animation: flagFloat 5s ease-in-out infinite alternate;
}
.redflag-flag::before {
    content: ''; position: absolute; top: 0; left: 10px;
    width: 175px; height: 125px;
    background: linear-gradient(135deg, rgba(183,28,28,0.7), rgba(255,88,100,0.5));
    clip-path: polygon(0 0, 100% 10%, 90% 50%, 100% 90%, 0 100%);
    animation: flagWave 2s ease-in-out infinite;
}

.redflag-flag-sm {
    position: absolute; bottom: 18%; left: 10%;
    width: 8px; height: 200px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    animation: flagFloat 6s ease-in-out 1s infinite alternate;
}
.redflag-flag-sm::before {
    content: ''; position: absolute; top: 0; left: 8px;
    width: 125px; height: 88px;
    background: linear-gradient(135deg, rgba(183,28,28,0.5), rgba(255,88,100,0.3));
    clip-path: polygon(0 0, 100% 10%, 90% 50%, 100% 90%, 0 100%);
    animation: flagWave 2.5s ease-in-out 0.5s infinite;
}

/* Warning triangle — 2.5x */
.redflag-warning {
    position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);
    width: 0; height: 0;
    border-left: 88px solid transparent;
    border-right: 88px solid transparent;
    border-bottom: 150px solid rgba(255,88,100,0.15);
    animation: warningPulse 3s ease-in-out infinite;
}
.redflag-warning::before {
    content: ''; position: absolute; top: 60px; left: 50%; transform: translateX(-50%);
    width: 12px; height: 45px;
    background: rgba(255,255,255,0.3);
    border-radius: 6px;
}
.redflag-warning::after {
    content: ''; position: absolute; top: 115px; left: 50%; transform: translateX(-50%);
    width: 15px; height: 15px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

/* X marks — 2.5x */
.redflag-x {
    position: absolute; bottom: 10%; right: 20%;
    width: 75px; height: 75px;
    animation: xShake 3s ease-in-out infinite;
}
.redflag-x::before,
.redflag-x::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 70px; height: 8px;
    background: rgba(255,88,100,0.3);
    border-radius: 4px;
}
.redflag-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.redflag-x::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ======================
   SLIDE 11 — ADDICTION METER (SCALED 2.5x)
   ====================== */
.addiction-swipe-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    border: 4px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.asc-1 {
    top: 8%; right: 6%;
    width: 175px; height: 238px;
    animation: addictionSwipe1 3s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.asc-1::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 75px; height: 75px;
    transform: translate(-50%, -50%);
    border: 6px solid rgba(76,217,100,0.4);
    border-radius: 50%;
}
.asc-2 {
    top: 25%; left: 5%;
    width: 150px; height: 205px;
    animation: addictionSwipe2 3.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.5s infinite;
}
.asc-2::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 60px; height: 8px;
    background: rgba(255,88,100,0.5);
    transform: translate(-50%, -50%) rotate(45deg);
}
.asc-2::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 60px; height: 8px;
    background: rgba(255,88,100,0.5);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.asc-3 {
    bottom: 12%; right: 10%;
    width: 138px; height: 188px;
    animation: addictionSwipe1 4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s infinite;
}
.asc-3::before {
    content: ''; position: absolute; top: 38px; left: 50%; transform: translateX(-50%);
    width: 70px; height: 70px;
    border: 4px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}
.asc-3::after {
    content: ''; position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
    width: 75px; height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 5px;
}

/* Meter background glow — 2.5x */
.addiction-meter-bg {
    position: absolute; bottom: 20%; left: 50%;
    width: 750px; height: 200px;
    background: radial-gradient(ellipse, rgba(253,41,123,0.18), transparent 70%);
    transform: translateX(-50%);
    animation: meterBgPulse 3s ease-in-out infinite;
}

/* ======================
   SLIDE 12 — WORST DATE (SCALED 2.5x)
   ====================== */
.worstdate-broken {
    position: absolute; top: 10%; right: 10%;
    width: 175px; height: 160px;
    animation: brokenHeartDrift 4s ease-in-out infinite alternate;
}
.worstdate-broken::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 75px; height: 138px;
    background: rgba(255,88,100,0.25);
    border-radius: 75px 0 0 0;
    clip-path: polygon(0 0, 100% 15%, 85% 100%, 0 80%);
    transform: rotate(-12deg);
}
.worstdate-broken::after {
    content: ''; position: absolute; top: 0; right: 0;
    width: 75px; height: 138px;
    background: rgba(255,88,100,0.25);
    border-radius: 0 75px 0 0;
    clip-path: polygon(0 15%, 100% 0, 100% 80%, 15% 100%);
    transform: rotate(12deg) translateX(15px);
}

/* Cracked phone — 2.5x */
.worstdate-phone {
    position: absolute; bottom: 12%; left: 8%;
    width: 150px; height: 275px;
    border: 6px solid rgba(255,255,255,0.15);
    border-radius: 35px;
    animation: phoneCrack 5s ease-in-out infinite alternate;
}
.worstdate-phone::before {
    content: ''; position: absolute; top: 50px; left: 25px;
    width: 100px; height: 5px;
    background: rgba(255,255,255,0.2);
    transform: rotate(25deg);
    box-shadow: -12px 45px 0 rgba(255,255,255,0.15);
}
.worstdate-phone::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 50px; height: 8px;
    background: rgba(255,88,100,0.4);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Swipe card rejected — 2.5x */
.worstdate-card {
    position: absolute; top: 35%; right: 5%;
    width: 162px; height: 220px;
    background: rgba(255,255,255,0.06);
    border-radius: 25px;
    border: 4px solid rgba(255,255,255,0.1);
    animation: cardSwipeLeft 6s ease-in-out infinite;
}
.worstdate-card::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 60px; height: 8px;
    background: rgba(255,88,100,0.4);
    transform: translate(-50%, -50%) rotate(45deg);
}
.worstdate-card::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 60px; height: 8px;
    background: rgba(255,88,100,0.4);
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Rain drops (tears) — 2.5x */
.worstdate-tear {
    position: absolute;
    width: 10px; height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
    animation: tearFall 2s linear infinite;
}
.wt-1 { top: 5%; left: 30%; animation-delay: 0s; }
.wt-2 { top: 8%; left: 55%; animation-delay: 0.6s; }
.wt-3 { top: 2%; left: 75%; animation-delay: 1.2s; }

/* ======================
   SLIDE 13 — PERSONA (SCALED 2.5x)
   ====================== */
.persona-glow {
    position: absolute; top: 50%; left: 50%;
    width: 1000px; height: 1250px;
    background: radial-gradient(circle, rgba(253,41,123,0.25), transparent 70%);
    transform: translate(-50%, -50%);
    animation: personaGlow 3s ease-in-out infinite alternate;
}

/* Confetti hearts — 2.5x */
.persona-confetti {
    position: absolute;
    width: 45px; height: 40px;
    animation: confettiDrift 4s ease-in-out infinite;
}
.persona-confetti::before,
.persona-confetti::after {
    content: ''; position: absolute; top: 0;
    width: 25px; height: 38px;
    border-radius: 25px 25px 0 0;
}
.persona-confetti::before { left: 22px; transform: rotate(-45deg); transform-origin: 0 100%; }
.persona-confetti::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }
.pch-1 { top: 10%; left: 8%; }
.pch-1::before, .pch-1::after { background: rgba(253,41,123,0.4); }
.pch-2 { top: 14%; right: 12%; animation-delay: 0.7s; }
.pch-2::before, .pch-2::after { background: rgba(255,215,0,0.4); }
.pch-3 { bottom: 18%; left: 12%; animation-delay: 1.4s; }
.pch-3::before, .pch-3::after { background: rgba(255,255,255,0.3); }
.pch-4 { bottom: 12%; right: 10%; animation-delay: 2.1s; }
.pch-4::before, .pch-4::after { background: rgba(255,88,100,0.4); }
.pch-5 { top: 40%; left: 5%; animation-delay: 0.5s; }
.pch-5::before, .pch-5::after { background: rgba(200,80,192,0.4); }

/* Flame watermark — 2.5x */
.persona-flame {
    position: absolute; bottom: 14%; right: 8%;
    width: 88px; height: 120px;
    background: linear-gradient(180deg, rgba(255,88,100,0.2), rgba(253,41,123,0.15));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(180deg);
    opacity: 0.3;
}
.persona-flame::before {
    content: ''; position: absolute; top: 25px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 60px;
    background: linear-gradient(180deg, rgba(255,215,0,0.2), rgba(255,101,91,0.15));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}


/* ============================================================
   KEYFRAMES
   ============================================================ */

/* Hearts */
@keyframes heartFloat {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-70px) rotate(5deg); }
}
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}

/* Cards */
@keyframes cardSwipeRight {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.8; }
    40% { transform: translateX(60px) rotate(12deg); opacity: 1; }
    60% { transform: translateX(60px) rotate(12deg); opacity: 1; }
}
@keyframes cardSwipeLeft {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.8; }
    40% { transform: translateX(-60px) rotate(-12deg); opacity: 1; }
    60% { transform: translateX(-60px) rotate(-12deg); opacity: 1; }
}
@keyframes cardFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(50px) rotate(8deg); opacity: 0.3; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
}

/* Flame */
@keyframes flameFlicker {
    0%, 100% { transform: rotate(180deg) scale(1) translateY(0); }
    25% { transform: rotate(180deg) scale(1.08) translateY(-8px); }
    50% { transform: rotate(180deg) scale(0.95) translateY(4px); }
    75% { transform: rotate(180deg) scale(1.05) translateY(-6px); }
}

/* Bubbles */
@keyframes bubblePopRight {
    0% { transform: scale(0) translateX(40px); opacity: 0; }
    20% { transform: scale(1.05) translateX(0); opacity: 1; }
    80% { transform: scale(1) translateX(0); opacity: 1; }
    100% { transform: scale(0.95) translateX(0); opacity: 0.7; }
}
@keyframes bubblePopLeft {
    0% { transform: scale(0) translateX(-40px); opacity: 0; }
    20% { transform: scale(1.05) translateX(0); opacity: 1; }
    80% { transform: scale(1) translateX(0); opacity: 1; }
    100% { transform: scale(0.95) translateX(0); opacity: 0.7; }
}

/* Check / X */
@keyframes checkPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}
@keyframes xShake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(5deg); }
    20% { transform: rotate(-5deg); }
    30% { transform: rotate(3deg); }
    40% { transform: rotate(0deg); }
}

/* Stack */
@keyframes stackDrift {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-40px) rotate(2deg); }
}

/* Clock */
@keyframes clockFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(5deg); }
}
@keyframes hourHand {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}
@keyframes minuteHand {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}
@keyframes moonDrift {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-30px) translateX(20px); }
}
@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: rotate(45deg) scale(1); }
    50% { opacity: 1; transform: rotate(45deg) scale(1.3); }
}

/* Phone */
@keyframes phoneFloat {
    0% { transform: translateY(-50%) rotate(-2deg); }
    100% { transform: translateY(calc(-50% - 40px)) rotate(3deg); }
}

/* Ghost */
@keyframes ghostDrift {
    0% { transform: translateY(0) translateX(0); opacity: 0.8; }
    30% { opacity: 1; }
    50% { transform: translateY(-60px) translateX(30px); }
    70% { opacity: 0.4; }
    100% { transform: translateY(0) translateX(0); opacity: 0.8; }
}
@keyframes ghostFade {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    30% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
    60% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.95); }
}

/* Pickiness scale */
@keyframes scaleRock {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(12deg); }
    75% { transform: rotate(-12deg); }
}

/* Ring & chain */
@keyframes ringFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(10deg); }
}
@keyframes chainPull {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(25px); }
}
@keyframes calFloat {
    0% { transform: translateY(-50%) rotate(-1deg); }
    100% { transform: translateY(calc(-50% - 30px)) rotate(2deg); }
}

/* Funnel & conversion */
@keyframes funnelPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.04); opacity: 1; }
}
@keyframes heartFallIn {
    0% { transform: translateY(0); opacity: 0.8; }
    100% { transform: translateY(160px); opacity: 0; }
}

/* Flags */
@keyframes flagFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}
@keyframes flagWave {
    0%, 100% { transform: scaleX(1) skewY(0deg); }
    50% { transform: scaleX(0.95) skewY(2deg); }
}
@keyframes warningPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* Worst date */
@keyframes brokenHeartDrift {
    0% { transform: translateY(0) rotate(-3deg); }
    100% { transform: translateY(-40px) rotate(5deg); }
}
@keyframes phoneCrack {
    0% { transform: translateY(0) rotate(-1deg); }
    100% { transform: translateY(-30px) rotate(3deg); }
}
@keyframes tearFall {
    0% { transform: translateY(-20px); opacity: 0; }
    30% { opacity: 0.4; }
    100% { transform: translateY(240px); opacity: 0; }
}

/* Timeline */
@keyframes timelineDotPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; box-shadow: 0 0 0 0 rgba(253,41,123,0); }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 30px 10px rgba(253,41,123,0.3); }
}
@keyframes timelineGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
@keyframes fastClockHand {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

/* Addiction */
@keyframes addictionSwipe1 {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.7; }
    30% { transform: translateX(80px) rotate(15deg); opacity: 1; }
    60% { transform: translateX(80px) rotate(15deg); opacity: 0.8; }
    80% { transform: translateX(0) rotate(0deg); opacity: 0.6; }
}
@keyframes addictionSwipe2 {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.7; }
    30% { transform: translateX(-70px) rotate(-12deg); opacity: 1; }
    60% { transform: translateX(-70px) rotate(-12deg); opacity: 0.8; }
    80% { transform: translateX(0) rotate(0deg); opacity: 0.6; }
}
@keyframes meterBgPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* Persona */
@keyframes personaGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes confettiDrift {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-80px) rotate(180deg); opacity: 1; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.6; }
}

/* ---- ELEMENT ENTRANCE ANIMATIONS ---- */
@keyframes slideInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideEnter { from { opacity: 0; transform: scale(0.93); } to { opacity: 1; transform: scale(1); } }

.slide.active { animation: slideEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.slide.active .anim-in { animation: slideInUp 0.6s ease both; }

.d1 { animation-delay: 0.1s !important; opacity: 0; }
.d2 { animation-delay: 0.35s !important; opacity: 0; }
.d3 { animation-delay: 0.6s !important; opacity: 0; }
.d4 { animation-delay: 0.85s !important; opacity: 0; }
.d5 { animation-delay: 1.1s !important; opacity: 0; }
.d6 { animation-delay: 1.35s !important; opacity: 0; }
.slide.active .d1, .slide.active .d2, .slide.active .d3,
.slide.active .d4, .slide.active .d5, .slide.active .d6 { animation-fill-mode: both; }

/* Safety net: if GSAP fails, force content visible after 1.5s */
.slide.active .anim-in { animation: slideInUp 0.6s ease both, forceVisible 0s 1.5s forwards; }
@keyframes forceVisible { to { opacity: 1 !important; filter: none !important; transform: none !important; } }

/* ---- MOBILE (scaled down from 2.5x to ~1.5x on small screens) ---- */
@media (max-width: 480px) {
    .s-big-num { font-size: clamp(3rem, 12vw, 5rem); }
    .s-next { bottom: 2.5rem; }
    .intro-heart { width: 80px; height: 72px; }
    .intro-flame { width: 65px; height: 90px; }
    .intro-card { width: 120px; height: 160px; }
    .numbers-check { width: 90px; height: 90px; }
    .numbers-x { width: 80px; height: 80px; }
    .numbers-stack { width: 95px; height: 128px; }
    .numbers-heart { width: 65px; height: 60px; }
    .clock-face { width: 140px; height: 140px; }
    .clock-phone { width: 95px; height: 170px; }
    .clock-moon { width: 110px; height: 110px; }
    .gs-1 { width: 110px; height: 140px; }
    .gs-2 { width: 75px; height: 95px; }
    .ghost-phone { width: 105px; height: 180px; }
    .redflag-flag { height: 170px; }
    .redflag-flag::before { width: 130px; height: 95px; }
    .redflag-flag-sm { height: 130px; }
    .redflag-flag-sm::before { width: 95px; height: 66px; }
    .persona-glow { width: 80vw; height: 85vh; }
    .texting-phone { width: 90px; height: 165px; }
    .texting-bubble-r { width: 180px; height: 68px; }
    .texting-bubble-l { width: 155px; height: 68px; }
    .texting-bubble-r2 { width: 130px; height: 52px; }
    .texting-heart { width: 45px; height: 40px; }
    .worstdate-broken { width: 95px; height: 86px; }
    .timeline-fast-clock { width: 95px; height: 95px; }
    .timeline-heart-marker { width: 40px; height: 36px; }
    .addiction-swipe-card.asc-1 { width: 95px; height: 128px; }
    .addiction-swipe-card.asc-2 { width: 80px; height: 110px; }
    .addiction-swipe-card.asc-3 { width: 75px; height: 100px; }
    .addiction-meter-bg { width: 90vw; max-width: 400px; }
    .meter-bar-wrap { max-width: 260px; }
    .pickiness-card-left { width: 110px; height: 148px; }
    .pickiness-card-right { width: 110px; height: 148px; }
    .pickiness-scale { width: 150px; }
    .situation-ring { width: 110px; height: 110px; }
    .situation-chain { width: 95px; height: 56px; }
    .situation-cal { width: 115px; height: 105px; }
    .situation-heart { width: 52px; height: 46px; }
    .funnel-flame { width: 62px; height: 85px; }
    .funnel-card.fc-1 { width: 105px; height: 135px; }
    .funnel-card.fc-2 { width: 85px; height: 112px; }
    .funnel-card.fc-3 { width: 75px; height: 98px; }
    .funnel-broken-heart { width: 95px; height: 86px; }
    .conversion-funnel-top { width: 170px; height: 85px; }
    .conversion-stack { width: 140px; height: 188px; }
    .conversion-heart-in { width: 30px; height: 26px; }
}

/* ---- SMALL MOBILE ---- */
@media (max-width: 360px) {
    .intro-heart { width: 60px; height: 54px; }
    .intro-flame { width: 49px; height: 68px; }
    .intro-card { width: 90px; height: 120px; }
    .numbers-check { width: 68px; height: 68px; }
    .numbers-x { width: 60px; height: 60px; }
    .clock-face { width: 105px; height: 105px; }
    .gs-1 { width: 83px; height: 105px; }
    .gs-2 { width: 56px; height: 71px; }
    .ghost-phone { width: 79px; height: 135px; }
    .persona-glow { width: 75vw; height: 80vh; }
    .texting-phone { width: 68px; height: 124px; }
    .texting-bubble-r { width: 135px; height: 51px; }
    .texting-bubble-l { width: 116px; height: 51px; }
    .addiction-swipe-card.asc-1 { width: 71px; height: 96px; }
    .addiction-swipe-card.asc-2 { width: 60px; height: 83px; }
    .addiction-swipe-card.asc-3 { width: 56px; height: 75px; }
    .pickiness-card-left { width: 83px; height: 111px; }
    .pickiness-card-right { width: 83px; height: 111px; }
    .situation-ring { width: 83px; height: 83px; }
    .redflag-flag { height: 128px; }
    .redflag-flag::before { width: 98px; height: 71px; }
    .conversion-funnel-top { width: 128px; height: 64px; }
}
