/* --- Landing Page Styles --- */
.landing-body {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Animated background orbs */
.landing-body::before, .landing-body::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}
.landing-body::before {
    background: rgba(16, 185, 129, 0.25);
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}
.landing-body::after {
    background: rgba(245, 158, 11, 0.25);
    bottom: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(30px); }
}

.landing-container {
    margin: auto;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    padding: 40px 20px;
    box-sizing: border-box;
}

.text-center { text-align: center; }

.avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #10b981;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
    margin-bottom: 20px;
    object-fit: cover;
}

.landing-title {
    font-size: 2.8rem;
    margin: 0 0 5px 0;
    background: linear-gradient(to right, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.landing-subtitle {
    font-size: 1.3rem;
    color: #a1a1aa;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.landing-bio {
    font-size: 1.1rem;
    color: #d4d4d8;
    margin: 0 0 30px 0;
    line-height: 1.6;
    padding: 0 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-cta {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

/* Loading Animation Styles */
.progress-bar-container {
    width: 80%;
    max-width: 250px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    margin: 15px auto 0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #10b981;
    animation: loadBar 3s ease-out forwards;
}

@keyframes loadBar {
    0% { width: 0%; }
    20% { width: 30%; }
    40% { width: 45%; }
    70% { width: 80%; }
    90% { width: 95%; }
    100% { width: 100%; }
}

/* Touch Device Fallback Visibility (Phones & Tablets like iPad Pro) */
@media (pointer: coarse), (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

.secondary-cta {
    background: rgba(255,255,255,0.05);
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: none;
}
.secondary-cta:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
}
