/**
 * Onboarding — Welcome Page (Stage 1)
 * Logo mark, welcome content, CTA
 */

/* Welcome container override — centered vertically higher */
.onboarding-container {
    padding-top: 15vh;
}

/* Welcome content */
.welcome-content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

/* Logo mark */
.logo-mark {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--om-space-8);
    background: white;
    border-radius: var(--om-radius-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 0.6s ease-out;
}

.logo-mark img {
    width: 50px;
    height: 50px;
}

/* Typography */
.welcome-title {
    font-size: var(--om-text-5xl);
    font-weight: var(--om-font-bold);
    color: white;
    margin-bottom: var(--om-space-6);
    line-height: var(--om-leading-tight);
    letter-spacing: var(--om-tracking-tight);
}

.welcome-subtitle {
    font-size: var(--om-text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--om-space-12);
    line-height: var(--om-leading-relaxed);
    font-weight: var(--om-font-normal);
}

/* CTA Button */
.welcome-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--om-space-4) var(--om-space-12);
    font-size: var(--om-text-lg);
    font-weight: var(--om-font-semibold);
    color: var(--om-aspiring-primary-500);
    background: white;
    border: none;
    border-radius: var(--om-radius-xl);
    text-decoration: none;
    transition: all var(--om-duration-300) var(--om-ease-out);
    box-shadow: var(--om-shadow-lg);
    cursor: pointer;
}

.welcome-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--om-shadow-2xl);
    color: var(--om-aspiring-primary-600);
}

.welcome-cta:active {
    transform: translateY(0);
}

.welcome-cta i {
    margin-left: var(--om-space-2);
    transition: transform var(--om-duration-300) var(--om-ease-out);
}

.welcome-cta:hover i {
    transform: translateX(4px);
}

/* Container fade in */
.onboarding-container {
    animation: fadeIn var(--om-duration-500) var(--om-ease-out);
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-title {
        font-size: var(--om-text-3xl);
    }

    .welcome-subtitle {
        font-size: var(--om-text-lg);
    }

    .logo-mark {
        width: 60px;
        height: 60px;
    }

    .logo-mark img {
        width: 36px;
        height: 36px;
    }
}
