/* ── Final CTA — "Coming Soon" mobile app banner ── */

.final-cta {
    --fc-navy:     #1E2D4F;
    --fc-magenta:  #F03167;
    --fc-blush:    #E8B7C4;
    --fc-ivory:    #F7F5F2;
    --fc-gold:     #BF9855;
    --fc-graphite: #2B313B;

    position: relative;
    margin: 56px 0;
    padding: 44px 24px;
    border-radius: 14px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 8%, rgba(240, 49, 103, 0.22), transparent 45%),
        radial-gradient(circle at 6% 96%, rgba(191, 152, 85, 0.14), transparent 42%),
        linear-gradient(135deg, var(--fc-navy) 0%, #223a63 55%, #17223d 100%);
    box-shadow: 0 32px 64px -28px rgba(30, 45, 79, 0.5);
}

@media (min-width: 768px) {
    .final-cta {
        padding: 56px 48px;
        border-radius: 18px;
    }
}

@media (min-width: 1024px) {
    .final-cta {
        padding: 64px 72px;
    }
}

.final-cta__grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
}

@media (min-width: 1024px) {
    .final-cta__grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 56px;
    }
}

.final-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 560px;
}

@media (min-width: 1024px) {
    .final-cta__content {
        align-items: flex-start;
    }
}

/* pulsing "coming soon" badge */
.final-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(191, 152, 85, 0.14);
    border: 1px solid rgba(191, 152, 85, 0.4);
    color: var(--fc-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.final-cta__badge-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fc-gold);
}

.final-cta__badge-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--fc-gold);
    opacity: 0.5;
    animation: finalCtaPing 1.8s ease-out infinite;
}

@keyframes finalCtaPing {
    0% { transform: scale(0.6); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

.final-cta__title {
    font-size: clamp(24px, 3.6vw, 38px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: #fff;
}

.final-cta__text {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.65;
    color: rgba(247, 245, 242, 0.72);
}

.final-cta__platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}

@media (min-width: 1024px) {
    .final-cta__platforms {
        justify-content: flex-start;
    }
}

.final-cta__platform {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(247, 245, 242, 0.85);
}

.final-cta__platform i {
    color: var(--fc-gold);
    font-size: 13px;
}

.final-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

@media (min-width: 1024px) {
    .final-cta__actions {
        align-items: flex-start;
    }
}

.final-cta__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: var(--fc-magenta);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 18px 34px -14px rgba(240, 49, 103, 0.55);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.final-cta__cta:hover {
    transform: translateY(-2px);
    background: #d81f56;
}

.final-cta__hint {
    font-size: 12px;
    color: rgba(247, 245, 242, 0.5);
}

/* ── Phone mockup visual ── */
.final-cta__visual {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta__phone-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 49, 103, 0.24), transparent 70%);
    filter: blur(8px);
    z-index: 0;
    animation: fcGlowPulse 4.5s ease-in-out infinite;
}

@keyframes fcGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.18); opacity: 1; }
}

.final-cta__phone {
    position: relative;
    z-index: 1;
    width: 168px;
    height: 322px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    animation: fcPhoneFloat 5s ease-in-out infinite;
}

@keyframes fcPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* light sweep across the phone */
.final-cta__phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: -160%;
    width: 55%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    animation: fcPhoneShine 5.5s ease-in-out infinite;
}

@keyframes fcPhoneShine {
    0% { left: -160%; }
    45% { left: 160%; }
    100% { left: 160%; }
}

/* drifting sparks around the phone */
.final-cta__spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fc-gold);
    opacity: 0;
    z-index: 2;
    animation: fcSparkFloat 4.5s ease-in infinite;
}

.final-cta__spark--1 { left: 18%; bottom: 12%; animation-delay: 0s; }
.final-cta__spark--2 { left: 78%; bottom: 6%; background: var(--fc-magenta); animation-delay: 1.4s; }
.final-cta__spark--3 { left: 48%; bottom: 18%; animation-delay: 2.8s; }

@keyframes fcSparkFloat {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    18% { opacity: 0.9; }
    75% { opacity: 0.4; }
    100% { transform: translateY(-130px) scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .final-cta__phone-glow,
    .final-cta__phone,
    .final-cta__phone::after,
    .final-cta__spark,
    .final-cta__phone-icon,
    .final-cta__phone-progress span {
        animation: none !important;
    }
}

@media (min-width: 768px) {
    .final-cta__phone {
        width: 196px;
        height: 372px;
    }
}

.final-cta__phone-notch {
    position: absolute;
    top: 14px;
    width: 46px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.22);
}

.final-cta__phone-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fc-magenta), #ad1d49);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 24px -10px rgba(240, 49, 103, 0.6);
    animation: fcIconBeat 2.2s ease-in-out infinite;
}

@keyframes fcIconBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.14); }
    30% { transform: scale(1); }
    45% { transform: scale(1.08); }
    60% { transform: scale(1); }
}

.final-cta__phone-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fc-gold);
}

.final-cta__phone-dots {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.final-cta__phone-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fc-magenta);
    animation: finalCtaDotPulse 1.6s ease-in-out infinite;
}

.final-cta__phone-dot:nth-child(2) { animation-delay: 0.25s; }
.final-cta__phone-dot:nth-child(3) { animation-delay: 0.5s; }

@keyframes finalCtaDotPulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.5); opacity: 1; }
}

.final-cta__phone-progress {
    width: 92px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    margin-top: 6px;
}

.final-cta__phone-progress span {
    display: block;
    height: 100%;
    width: 15%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--fc-gold), var(--fc-magenta));
    animation: fcProgressLoad 2.8s ease-in-out infinite;
}

@keyframes fcProgressLoad {
    0% { width: 12%; }
    50% { width: 88%; }
    100% { width: 12%; }
}

@media (max-width: 640px) {
    .final-cta {
        margin: 40px 0;
        padding: 36px 20px;
    }
}

/* ── Slim variant — compact single-row banner ── */
.final-cta--slim {
    padding: 22px 24px;
    border-radius: 14px;
}

@media (min-width: 768px) {
    .final-cta--slim {
        padding: 26px 40px;
        border-radius: 18px;
    }
}

@media (min-width: 1024px) {
    .final-cta--slim {
        padding: 28px 48px;
    }
}

.final-cta--slim .final-cta__grid {
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta--slim .final-cta__grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 24px;
    }
}

.final-cta-slim__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .final-cta-slim__text {
        align-items: flex-start;
    }
}

.final-cta-slim__title {
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.final-cta--slim .final-cta__cta {
    padding: 12px 24px;
    font-size: 14px;
    flex-shrink: 0;
}
