/* ── Home / landing page ─────────────────────────────────────────────────── */

.vv-home { background: #FFFFFF; }

/* ── Eyebrow label ───────────────────────────────────────── */
.vv-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 1rem;
}
.vv-eyebrow-light { color: #FF8F5E; }

/* ── Hero ────────────────────────────────────────────────── */
.vv-hero {
    background: #F5F6FA;
    padding: 4rem 2rem 5rem;
}
.vv-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.vv-hero-copy { flex: 1 1 460px; min-width: 320px; }
.vv-hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #1A1A2E;
    margin-bottom: 1.5rem;
}
.vv-hero-headline .accent { color: #FF6B35; }
.vv-hero-sub {
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.6;
    max-width: 42ch;
    margin-bottom: 2rem;
}
.vv-hero-ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; }

.vv-btn-lg { width: auto; padding: 0.85rem 1.75rem; font-size: 1rem; }

.vv-btn-ghost {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A2E;
    text-decoration: none;
    padding: 0.85rem 0.5rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s;
}
.vv-btn-ghost:hover { border-color: #FF6B35; }

.vv-btn-outline {
    display: inline-block;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FF6B35;
    border: 1.5px solid #FF6B35;
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
    transition: background 0.15s, color 0.15s;
}
.vv-btn-outline:hover { background: #FF6B35; color: #fff; }

/* ── Hero visual: phase strip + sample report ───────────── */
.vv-hero-visual {
    flex: 1 1 480px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vv-phase-illustration {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
}
.vv-phase-illustration-img {
    width: 100%;
    height: auto;
    display: block;
}
.vv-phase-caption {
    text-align: center;
    font-size: 0.8rem;
    color: #6B7A8D;
    margin-bottom: 0.15rem;
}
.vv-phase-attribution {
    text-align: center;
    font-size: 0.7rem;
    color: #9AA5B4;
}
.vv-phase-captions {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.vv-report-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 8px 24px rgba(26,26,46,0.08);
}
.vv-report-card-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6B7A8D;
    margin-bottom: 0.9rem;
}
.vv-report-card-caption {
    margin-top: 0.9rem;
    font-size: 0.78rem;
    color: #6B7A8D;
    line-height: 1.5;
}

/* ── Shared metrics table (used in hero report card) ────── */
.vv-metrics-table { display: flex; flex-direction: column; }
.vv-metrics-row {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr;
    padding: 0.55rem 0;
    font-size: 0.88rem;
    color: #1A1A2E;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.vv-metrics-row:last-child { border-bottom: none; }
.vv-metrics-head {
    font-weight: 600;
    color: #6B7A8D;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Generic section scaffolding ────────────────────────── */
.vv-section { padding: 4.5rem 2rem; }
.vv-section-inner { max-width: 1180px; margin: 0 auto; }
.vv-section-tint { background: #F5F6FA; }
.vv-section-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1A1A2E;
    margin-bottom: 1.25rem;
}

/* ── Dark coach section ─────────────────────────────────── */
.vv-section-dark {
    background: #0F2540;
    color: #E7ECF3;
}
.vv-section-dark .vv-section-headline {
    color: #FFFFFF;
}
.vv-coach-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.vv-coach-copy { flex: 1 1 420px; min-width: 300px; }
.vv-section-sub-light {
    font-size: 1.02rem;
    color: #B7C2D4;
    line-height: 1.6;
    max-width: 42ch;
    margin-bottom: 1.75rem;
}

.vv-roster-card {
    flex: 1 1 420px;
    min-width: 300px;
    background: #16314F;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}
.vv-roster-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.7fr 0.8fr;
    padding: 0.85rem 1.1rem;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vv-roster-row:last-child { border-bottom: none; }
.vv-roster-head {
    font-weight: 600;
    color: #8FA3BD;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Feature grid ────────────────────────────────────────── */
.vv-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}
.vv-feature-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A2E;
    margin: 0.9rem 0 0.5rem;
}
.vv-feature-card p {
    font-size: 0.92rem;
    color: #6B7A8D;
    line-height: 1.55;
}
.vv-prop-icon-lg {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.12);
    display: grid;
    place-items: center;
}

/* ── How it works steps ─────────────────────────────────── */
.vv-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.vv-step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.6rem;
}
.vv-step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 0.4rem;
}
.vv-step p {
    font-size: 0.9rem;
    color: #6B7A8D;
    line-height: 1.55;
}

/* ── Closing dual CTA ────────────────────────────────────── */
.vv-cta-section { padding-bottom: 5rem; }
.vv-cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.vv-cta-card {
    background: #F5F6FA;
    border-radius: 14px;
    padding: 2rem;
}
.vv-cta-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 0.5rem;
}
.vv-cta-card p {
    font-size: 0.92rem;
    color: #4A5568;
    margin-bottom: 1.25rem;
}
.vv-cta-card .vv-btn-primary,
.vv-cta-card .vv-btn-outline {
    display: inline-block;
    width: auto;
    text-align: center;
    box-sizing: border-box;
}
.vv-cta-card .vv-btn-lg {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

/* ── Responsive ──────────────────────────────────────────── */
/* Breakpoints aligned with the 768px used for .vv-layout/.vv-pitch on the
   login/signup pages, so the whole site shifts to mobile layout at the
   same width. */
@media (max-width: 768px) {
    .vv-feature-grid, .vv-steps { grid-template-columns: 1fr; }
    .vv-cta-split { grid-template-columns: 1fr; }
    .vv-roster-row { grid-template-columns: 1.2fr 0.8fr 0.9fr 0.7fr; font-size: 0.8rem; }
    .vv-hero-headline { font-size: 2.4rem; }
}

@media (max-width: 480px) {
    .vv-hero { padding: 3rem 1.25rem 3rem; }
    .vv-section { padding: 3rem 1.25rem; }
    .vv-metrics-row { grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr; font-size: 0.8rem; }
}