/* sticky-cta.css — homepage sticky join bar.
   Slides up from the bottom once the hero scrolls out of view, giving a
   persistent path into the quiz. Uses homepage design tokens; RTL/LTR agnostic. */
.home-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: var(--color-white);
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(110%);
    transition: transform 0.35s ease;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.home-sticky-cta.visible {
    transform: translateY(0);
}

.home-sticky-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.home-sticky-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    min-width: 0;
}

.home-sticky-cta-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.home-sticky-cta-text small {
    font-size: 12px;
    color: var(--color-secondary);
}

.home-sticky-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .home-sticky-cta-text small { display: none; }
    .home-sticky-cta-btn { padding: 12px 20px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .home-sticky-cta { transition: none; }
}
