/* ============================================================
   ViaaMeetApp — welcome.css
   Welcome / Landing Page Styles
   ============================================================ */

.welcome-page {
    overflow: hidden;
}

/* ---- Container ---- */
.welcome-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* ---- Particles ---- */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.6), transparent);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ---- Welcome Card ---- */
.welcome-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 3rem 3.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: cardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Subtle floating animation after entrance */
.welcome-card {
    animation: cardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
        cardFloat 6s ease-in-out 0.8s infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ---- Logo ---- */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 88px;
    height: 88px;
    position: relative;
    filter: drop-shadow(0 8px 24px rgba(37, 99, 235, 0.5));
    animation: logoSpin 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes logoSpin {
    from {
        opacity: 0;
        transform: rotate(-20deg) scale(0.7);
    }

    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.app-name {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-name .accent {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    -webkit-background-clip: text;
    background-clip: text;
}

.app-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

/* ---- Feature Pills ---- */
.feature-pills {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(56, 189, 248, 0.4);
    color: #fff;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38BDF8;
    box-shadow: 0 0 8px #38BDF8;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ---- CTA Buttons ---- */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.cta-buttons .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
}

.cta-buttons .btn-primary {
    display: flex;
    justify-content: space-between;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.25s;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* ---- Footer ---- */
.welcome-footer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ---- Floating Feature Cards ---- */
.float-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    white-space: nowrap;
}

.float-card-1 {
    top: 18%;
    left: 5%;
    animation: floatCard1 5s ease-in-out infinite;
}

.float-card-2 {
    bottom: 22%;
    left: 3%;
    animation: floatCard2 6s ease-in-out infinite;
}

.float-card-3 {
    top: 25%;
    right: 5%;
    animation: floatCard3 7s ease-in-out infinite;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .welcome-card {
        padding: 2.5rem 1.75rem;
    }

    .app-name {
        font-size: 2rem;
    }

    .float-card {
        display: none;
    }
}