.ph-6dfc0384-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ph-6dfc0384-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.05);
    z-index: 0;
    animation: ph-6dfc0384-zoom 20s infinite alternate ease-in-out;
}

.ph-6dfc0384-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 20, 0.65);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.ph-6dfc0384-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ph-6dfc0384-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    animation: ph-6dfc0384-float 4s ease-in-out infinite, ph-6dfc0384-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ph-6dfc0384-badge-dot {
    width: 8px;
    height: 8px;
    background: #32C770;
    border-radius: 50%;
    box-shadow: 0 0 10px #32C770;
}

.ph-6dfc0384-headline {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -1px;
}

/* JS injected spans for word animation */
.ph-6dfc0384-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: ph-6dfc0384-fadeUpWord 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ph-6dfc0384-desc {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px;
    max-width: 700px;
    opacity: 0;
    animation: ph-6dfc0384-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.ph-6dfc0384-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: ph-6dfc0384-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.ph-6dfc0384-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ph-6dfc0384-btn-primary {
    background: #32C770;
    color: #fff;
    border: 1px solid transparent;
}

.ph-6dfc0384-btn-primary:hover {
    background: #2ab564;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(50, 199, 112, 0.4);
}

.ph-6dfc0384-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.ph-6dfc0384-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.ph-6dfc0384-trust {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: ph-6dfc0384-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.ph-6dfc0384-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    z-index: 2;
    opacity: 0;
    animation: ph-6dfc0384-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.ph-6dfc0384-scroll-dot {
    width: 4px;
    height: 6px;
    background: #fff;
    border-radius: 2px;
    margin: 6px auto 0;
    animation: ph-6dfc0384-scrollDrop 2s infinite ease-in-out;
}

/* Animations */
@keyframes ph-6dfc0384-zoom {
    0% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes ph-6dfc0384-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes ph-6dfc0384-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ph-6dfc0384-fadeUpWord {
    from { opacity: 0; transform: translateY(20px) rotate(2deg); }
    to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes ph-6dfc0384-scrollDrop {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 768px) {
    .ph-6dfc0384-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .ph-6dfc0384-btn { width: 100%; }
}
