/* ============================================================
   FelixChess — cta-strip-component.css
   Final CTA strip: one bold line + primary button.
   Low friction, high intent capture.
   ============================================================ */

.fc-cta {
    --fc-cta-accent: #aaff00;
    --fc-cta-accent-hover: #c8ff4d;
    --fc-cta-text: #ffffff;
    --fc-cta-sub: #ffffff;
    --fc-cta-ease: cubic-bezier(0.22, 1, 0.36, 1);

    background-color: #111410;
    padding-block: 96px 100px;
    text-align: center;
    border-top: 1px solid rgba(0 0 0 / 0.08);
    border-radius: 0;
}

.fc-cta__inner {
    display: grid;
    gap: 18px;
    justify-items: center;
}

/* ── Headline ────────────────────────────────────────────────── */
.fc-cta__title {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--fc-cta-text);
    margin: 0;
    max-width: 22ch;
}

/* ── Sub-line ────────────────────────────────────────────────── */
.fc-cta__sub {
    font-size: 20px;
    color: var(--fc-cta-sub);
    margin: 0;
    letter-spacing: 0.01em;
}

/* ── Button group ────────────────────────────────────────────── */
.fc-cta__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.fc-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
    white-space: nowrap;
}

/* Primary — lime fill */
.fc-cta__btn--primary {
    background: var(--fc-cta-accent);
    color: #0a0c0a;
    box-shadow: 0 10px 28px rgba(170 255 0 / 0.20);
}

.fc-cta__btn--primary:hover,
.fc-cta__btn--primary:focus-visible {
    background: var(--fc-cta-accent-hover);
    box-shadow: 0 12px 34px rgba(170 255 0 / 0.28);
    transform: translateY(-2px);
}

.fc-cta__btn:focus-visible {
    outline: 2px solid var(--fc-cta-accent);
    outline-offset: 3px;
}

/* ── Responsive: mobile ─────────────────────────────────────── */
@media (max-width: 47.99em) {
    .fc-cta {
        padding-block: 72px 80px;
    }

    .fc-cta__actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .fc-cta__btn {
        width: 100%;
    }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .fc-cta__btn {
        transition: none;
    }
}
