/* ============================================
   Clear-Sight — Homepage (index) outcome reframe
   Layered on top of style-v2.css + style-app.css.
   Scoped to homepage-only classes so nothing here
   changes other pages. New rules only; no globals.
   ============================================ */

/* === Outcome strip (reuses the .v2-proof shell, swaps numbers for verbs) === */
.home-outcomes-strip .v2-proof__item {
    max-width: 230px;
    gap: 4px;
}
.home-outcome__lead {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1875rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-heading);
}
.home-outcome__sub {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

/* === Outcome showcase — "What you walk away with" (2x2 image cards) === */
.home-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}
.home-showcase__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    align-items: center;
    background: var(--bg-section-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}
.home-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.home-showcase__media { flex: none; }
/* Reuse the device frame from style-app.css, just smaller for a card thumbnail. */
.home-showcase__media .app-phone {
    width: 118px;
    height: auto;
}
.home-showcase__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}
.home-showcase__card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--text-heading);
    margin-bottom: 6px;
}
.home-showcase__card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* === Framework-as-proof: small stat row re-homed from the old number strip === */
.home-proof-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2xl);
    margin: var(--space-2xl) auto 0;
}
.home-proof-stats .v2-proof__item { max-width: 160px; }

/* How-it-works footnote + framework link */
.home-footnote {
    text-align: center;
    margin-top: var(--space-2xl);
    color: var(--text-muted);
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .home-showcase__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}
