/* ==========================================================
   Zero to Hero — Fit-to-Screen POSTER
   Theme: bright green poster, glassmorphism, vibrating text
   ========================================================== */

:root {
    /* Cream palette */
    --cream-50: #fffdf5;
    --cream-100: #fdf6e3;
    --cream-200: #f7ecc7;
    --cream-300: #f0dfa3;
    --cream-bg-1: #fff8e7;
    --cream-bg-2: #fbf0d6;

    /* Gold palette */
    --gold-300: #f3d27a;
    --gold-400: #e9b949;
    --gold-500: #d4af37;
    --gold-600: #b8860b;
    --gold-700: #8a6508;
    --gold-shine: #ffeb88;

    /* Accents */
    --neon-cyan: #ffe66e;       /* kept name for reuse — now soft amber */
    --neon-lime: #ffd1a8;       /* kept name — now peach */
    --neon-pink: #e9b949;
    --neon-yellow: #ffeb88;

    /* Ink (dark text) */
    --ink: #2a1d05;
    --ink-2: #4a3618;
    --ink-3: #7a6238;
    --white: #ffffff;

    /* Glass */
    --glass-bg: rgba(255, 253, 245, 0.7);
    --glass-border: rgba(255, 255, 255, 0.85);

    /* Legacy --green-* mapped to gold tones so existing rules cascade gracefully */
    --green-50: #fffdf5;
    --green-100: #fdf3d4;
    --green-200: #f7e3a4;
    --green-300: #f3d27a;
    --green-400: #e9b949;
    --green-500: #d4af37;
    --green-600: #b8860b;
    --green-700: #8a6508;
    --green-800: #5a4406;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    font-family: "Outfit", system-ui, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(at 0% 0%, #fff5d6 0%, transparent 55%),
        radial-gradient(at 100% 0%, #ffe9b3 0%, transparent 55%),
        radial-gradient(at 100% 100%, #fbe6a3 0%, transparent 55%),
        radial-gradient(at 0% 100%, #fff8e1 0%, transparent 55%),
        linear-gradient(180deg, #fffaeb 0%, #f9efd2 100%);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================
   ANIMATED BACKGROUND
   ========================================================== */
.bg-aurora {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    filter: blur(70px) saturate(140%);
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    width: 60vmax;
    height: 60vmax;
    opacity: 0.55;
    mix-blend-mode: screen;
    animation: float 20s ease-in-out infinite;
}
.blob--1 {
    background: radial-gradient(circle, var(--gold-300), transparent 60%);
    top: -25vmax;
    left: -20vmax;
    opacity: 0.5;
}
.blob--2 {
    background: radial-gradient(circle, var(--gold-shine), transparent 60%);
    bottom: -30vmax;
    right: -25vmax;
    animation-delay: -7s;
    opacity: 0.4;
}
.blob--3 {
    background: radial-gradient(circle, var(--gold-400), transparent 60%);
    top: 30%;
    left: 30%;
    width: 40vmax;
    height: 40vmax;
    opacity: 0.35;
    animation-delay: -13s;
}
@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        transform: translate3d(4vw, -3vh, 0) scale(1.08);
    }
    66% {
        transform: translate3d(-4vw, 4vh, 0) scale(0.95);
    }
}

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(184, 134, 11, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 134, 11, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.bg-rays {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        conic-gradient(
            from 220deg at 75% 40%,
            transparent 0deg,
            rgba(255, 235, 136, 0.22) 18deg,
            transparent 36deg,
            rgba(212, 175, 55, 0.18) 60deg,
            transparent 90deg,
            rgba(243, 210, 122, 0.16) 130deg,
            transparent 180deg
        );
    mask-image: radial-gradient(ellipse at 75% 40%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 75% 40%, #000 0%, transparent 70%);
    animation: spin 40s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.bubbles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================
   POSTER LAYOUT (fit to screen, no scroll)
   ========================================================== */
.poster {
    position: fixed;
    inset: 0;
    max-width: 480px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr auto auto auto;
    gap: 8px;
    padding: max(env(safe-area-inset-top, 12px), 12px) 14px
        max(env(safe-area-inset-bottom, 14px), 14px);
    overflow: hidden;
}

/* Desktop / tablet: center the poster column, decorate the sides */
@media (min-width: 481px) {
    .poster {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6),
            0 30px 80px rgba(184, 134, 11, 0.22);
    }
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -4;
        background:
            radial-gradient(at 0% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
            radial-gradient(at 100% 50%, rgba(255, 235, 136, 0.15) 0%, transparent 55%);
        pointer-events: none;
    }
    .fab {
        right: max(14px, calc(50vw - 240px + 14px));
    }
}

/* TOP BAR */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}
.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Sora", sans-serif;
}
.brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-shine));
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(184, 134, 11, 0.45);
}
.brand__name {
    font-weight: 700;
    color: var(--ink);
    font-size: 14px;
    letter-spacing: -0.01em;
}
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 253, 245, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: "Sora", sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ink-2);
    letter-spacing: 0.4px;
}
.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e54848;
    box-shadow: 0 0 0 0 rgba(229, 72, 72, 0.7);
    animation: ping 1.6s ease-out infinite;
}
@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 72, 72, 0.7);
    }
    80%, 100% {
        box-shadow: 0 0 0 9px rgba(229, 72, 72, 0);
    }
}

/* HERO ROW */
.hero-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
    gap: 4px;
    min-height: 0;
    z-index: 1;
}

/* LEFT COLUMN */
.left-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
    padding-right: 4px;
}
.kicker {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-family: "Sora", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--gold-700);
    background: linear-gradient(
        135deg,
        rgba(255, 235, 136, 0.85),
        rgba(243, 210, 122, 0.75)
    );
    border: 1px solid rgba(212, 175, 55, 0.55);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.18);
}
.kicker i {
    color: var(--gold-600);
    filter: drop-shadow(0 0 6px rgba(255, 235, 136, 0.8));
}

.title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.title__a {
    font-size: clamp(38px, 13.5vw, 72px);
    display: inline-block;
    -webkit-text-stroke: 1px rgba(138, 101, 8, 0.25);
}
.title__b {
    font-size: clamp(18px, 5.5vw, 28px);
    font-weight: 700;
    color: var(--ink-2);
    align-self: flex-start;
    padding-left: 4px;
}
.title__c {
    font-size: clamp(46px, 16vw, 88px);
    display: inline-block;
    -webkit-text-stroke: 1.5px rgba(138, 101, 8, 0.3);
}

/* Rainbow / shake animations — gold edition */
.rainbow {
    background: linear-gradient(
        100deg,
        #8a6508 0%,
        #b8860b 18%,
        #d4af37 38%,
        #ffeb88 55%,
        #d4af37 75%,
        #8a6508 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0;
    animation: rainbowSlide 4.5s linear infinite,
        shake 3.5s ease-in-out infinite;
    filter: drop-shadow(0 3px 0 rgba(138, 101, 8, 0.28))
        drop-shadow(0 0 14px rgba(255, 235, 136, 0.5));
}
.rainbow-2 {
    background: linear-gradient(
        100deg,
        #b8860b 0%,
        #e9b949 22%,
        #ffeb88 45%,
        #f3d27a 70%,
        #b8860b 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0;
    animation: rainbowSlide 4.5s linear infinite reverse,
        shake 3.2s ease-in-out infinite 0.4s;
    filter: drop-shadow(0 4px 0 rgba(138, 101, 8, 0.3))
        drop-shadow(0 0 18px rgba(255, 235, 136, 0.6));
}
.rainbow-3 {
    background: linear-gradient(100deg, #8a6508, #d4af37, #ffeb88, #b8860b);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbowSlide 5s linear infinite;
}

@keyframes rainbowSlide {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translate(0, 0) rotate(0);
    }
    8% {
        transform: translate(-1.5px, -1px) rotate(-1.2deg);
    }
    16% {
        transform: translate(1.5px, 1px) rotate(1.2deg);
    }
    24% {
        transform: translate(-1px, 1px) rotate(-0.8deg);
    }
    32% {
        transform: translate(1px, -1px) rotate(0.8deg);
    }
    40% {
        transform: translate(-1.5px, 0) rotate(-1deg);
    }
    48% {
        transform: translate(1.5px, 0) rotate(1deg);
    }
    56%, 100% {
        transform: translate(0, 0) rotate(0);
    }
}
.shake-soft {
    animation: shakeSoft 4s ease-in-out infinite;
}
@keyframes shakeSoft {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-0.5px, 0.5px);
    }
    50% {
        transform: translate(0.5px, -0.5px);
    }
    75% {
        transform: translate(0.5px, 0.5px);
    }
}
.wobble {
    animation: wobble 5s ease-in-out infinite;
}
@keyframes wobble {
    0%, 100% {
        transform: rotate(0) scale(1);
    }
    25% {
        transform: rotate(-1.2deg) scale(1.02);
    }
    75% {
        transform: rotate(1.2deg) scale(1.02);
    }
}

.subtitle {
    font-size: clamp(12px, 3.4vw, 15px);
    color: var(--ink-2);
    line-height: 1.35;
    max-width: 240px;
    font-weight: 500;
}
.subtitle strong {
    color: var(--green-700);
    font-weight: 700;
}

.hi-stat {
    display: inline-flex;
    flex-direction: column;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(255, 235, 136, 0.95),
        rgba(243, 210, 122, 0.95)
    );
    border: 2px solid #fff;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: rotate(-2deg);
}
.hi-stat__num {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: clamp(16px, 4.8vw, 22px);
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hi-stat__num span {
    color: var(--gold-700);
    font-size: 0.7em;
    margin-right: 2px;
}
.hi-stat__num small {
    font-size: 0.7em;
    color: var(--ink-3);
    margin: 0 2px;
}
.hi-stat__lbl {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--ink-2);
    text-transform: uppercase;
    margin-top: 2px;
}

.price-card {
    align-self: flex-start;
    padding: 10px 14px 10px;
    border-radius: 14px;
    max-width: 100%;
}
.price-card__tag {
    display: inline-block;
    font-family: "Sora", sans-serif;
    font-size: 9px;
    letter-spacing: 1.8px;
    font-weight: 800;
    color: var(--green-700);
    background: var(--green-100);
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 4px;
}
.price-card__amount {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-card__amount .rp {
    font-size: 14px;
    color: var(--green-700);
}
.price-card__amount .num {
    font-size: clamp(22px, 6vw, 30px);
    background: linear-gradient(135deg, var(--green-600), var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow: 0 14px 36px rgba(13, 58, 44, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* RIGHT COLUMN (photo) */
.right-col {
    position: relative;
    height: 100%;
    min-height: 0;
    align-self: stretch;
}
.halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    aspect-ratio: 1/1;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(255, 235, 136, 0.75) 0%,
        rgba(212, 175, 55, 0.35) 35%,
        rgba(184, 134, 11, 0) 65%
    );
    border-radius: 50%;
    filter: blur(2px);
    animation: haloPulse 4s ease-in-out infinite;
    z-index: 0;
}
@keyframes haloPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

.hero-photo {
    position: absolute;
    bottom: 0;
    right: -8%;
    height: 100%;
    width: auto;
    max-width: 130%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 2;
    filter: drop-shadow(0 22px 28px rgba(138, 101, 8, 0.35));
    animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) both,
        heroBob 5s ease-in-out 1s infinite;
}
@keyframes heroIn {
    from {
        opacity: 0;
        transform: translate(30px, 30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}
@keyframes heroBob {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -6px;
    }
}

.sparks {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.spark {
    position: absolute;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, var(--neon-yellow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(0.5px);
    animation: twinkle 2.4s ease-in-out infinite;
}
.spark--1 {
    top: 8%;
    left: 14%;
    animation-delay: 0s;
}
.spark--2 {
    top: 22%;
    right: 8%;
    width: 18px;
    height: 18px;
    animation-delay: 0.6s;
    background: radial-gradient(circle, var(--gold-shine) 0%, transparent 70%);
}
.spark--3 {
    bottom: 35%;
    left: 4%;
    animation-delay: 1.2s;
    background: radial-gradient(circle, var(--gold-400) 0%, transparent 70%);
}
.spark--4 {
    top: 45%;
    right: 22%;
    width: 10px;
    height: 10px;
    animation-delay: 1.8s;
}
@keyframes twinkle {
    0%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.speech-bubble {
    position: absolute;
    top: -2%;
    right: 26%;
    z-index: 3;
    padding: 6px 12px;
    background: #fff;
    border-radius: 14px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(13, 58, 44, 0.25);
    border: 2px solid var(--green-500);
    transform: rotate(-6deg);
    white-space: nowrap;
}
.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 0 solid transparent;
    border-top: 10px solid var(--green-500);
}
.bob {
    animation: bob 3.2s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% {
        transform: rotate(-6deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-4px);
    }
}

/* QUOTE STRIP */
.quote-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    z-index: 2;
}
.quote-strip i {
    color: var(--gold-600);
    font-size: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}
.quote-strip p {
    font-size: clamp(11px, 3.2vw, 13px);
    color: var(--ink-2);
    line-height: 1.35;
}
.quote-strip strong {
    font-weight: 800;
    font-size: 1.05em;
}

/* CTA ROW */
.cta-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.7fr;
    gap: 8px;
    z-index: 2;
}
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border: none;
    border-radius: 14px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        130deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    z-index: -1;
}
.btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: -1;
}
.btn:hover,
.btn:active {
    transform: translateY(-2px) scale(1.02);
}
.btn:active::after {
    left: 130%;
}

.btn--primary {
    color: var(--ink);
    background: linear-gradient(
        135deg,
        rgba(255, 235, 136, 0.95) 0%,
        rgba(212, 175, 55, 0.92) 100%
    );
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 10px 28px rgba(212, 175, 55, 0.5);
}

.btn--wa {
    color: #fff;
    background: linear-gradient(
        135deg,
        rgba(37, 211, 102, 0.92),
        rgba(13, 130, 65, 0.92)
    );
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 10px 28px rgba(37, 211, 102, 0.4);
}
.btn--wa i {
    font-size: 16px;
}

.btn--ghost {
    color: var(--gold-700);
    background: rgba(255, 253, 245, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
}

.blink {
    animation: btnBlink 1.6s ease-in-out infinite;
}
@keyframes btnBlink {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95),
            0 10px 28px rgba(212, 175, 55, 0.5),
            0 0 0 0 rgba(255, 235, 136, 0.85);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1),
            0 14px 38px rgba(212, 175, 55, 0.65),
            0 0 0 12px rgba(255, 235, 136, 0);
    }
}
.pulse {
    animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
            0 10px 28px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
            0 14px 36px rgba(37, 211, 102, 0.55),
            0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* FOOTER MINI */
.footer-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 10px;
    color: var(--ink-3);
    z-index: 2;
}
.footer-mini a {
    color: var(--ink-3);
    text-decoration: none;
}
.footer-mini a:hover {
    color: var(--gold-700);
}
.dot-sep {
    opacity: 0.45;
}

/* FLOATING WhatsApp FAB (extra easy access) */
.fab {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #0d8241);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    z-index: 50;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: fabPulse 2s ease-in-out infinite;
}
@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5),
            0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6),
            0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* ==========================================================
   RESPONSIVE — narrow phones & landscape
   ========================================================== */
@media (max-height: 700px) {
    .poster {
        gap: 6px;
    }
    .speech-bubble {
        font-size: 10px;
    }
    .subtitle {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .live-badge {
        font-size: 9.5px;
        padding: 5px 8px;
    }
    .btn {
        font-size: 11.5px;
        padding: 11px 6px;
    }
    .cta-row {
        grid-template-columns: 1.4fr 1fr 0.7fr;
    }
}

/* Landscape phone — re-flow into two stacked rows */
@media (orientation: landscape) and (max-height: 500px) {
    .title__a {
        font-size: clamp(28px, 9vw, 48px);
    }
    .title__c {
        font-size: clamp(34px, 11vw, 58px);
    }
    .fab {
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
tion-duration: 0.001ms !important;
    }
}
