/* ============================================
   PlaceZap Quick Launch Page Styles (quick-launch.css)
   Builds on style.css and home.css variables
   ============================================ */

.launch-section {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.launch-box {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
}

.launch-box h2 {
    margin-bottom: 0.25rem;
    font-size: 1.75rem;
    text-align: center;
}

.launch-box .mb-3 {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: center;
    color: var(--gray-medium);
}

.math-challenge {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
}

.math-challenge p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.math-question {
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin: 0.25rem 0;
}

.launch-box .form-group {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.math-input {
    max-width: 150px;
    margin: 0.25rem auto;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.math-input:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.launch-next-steps {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    font-size: 0.9rem;
}

.launch-next-steps ol {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
}

.launch-next-steps li {
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .launch-box {
        padding: 1.5rem;
    }
}
