/* ==========================================================================
   Solutions — Operational Efficiency page-specific styles
   Uses tokens from css/brand-v1.6.css. Master-brand / cross-platform page
   (lives under Solutions in nav), so the page accent stays Navy + Teal.
   Indigo and Coral appear only on the Prime/Pulse platform comparison cards,
   matching the convention used on about.html for the platform picker cards.
   ========================================================================== */

/* ---- Hero ---- */

/* ---- Hero visual: bottleneck widening into flow (2026-08-17, Track B
   Cluster A) — a literal bar-chart diagram of this page's own headline
   (remove manual bottlenecks, standardise processes into a smooth flow).
   Two narrow "pinch" bars (marked with an hourglass) followed by
   progressively taller bars, ending in a solid accent-colored "resolved"
   bar. ---- */

.soehv-fallback {
    position: absolute;
    inset: 0;
}

.soehv-frame {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.soehv-pipeline {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 24%;
    height: 50%;
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
}

.soehv-bar {
    position: relative;
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: color-mix(in srgb, var(--da-white) 22%, transparent);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.soehv-bar--pinch {
    background: color-mix(in srgb, var(--da-white) 14%, transparent);
    flex: 0.6;
}

.soehv-bar--pinch i {
    position: absolute;
    top: -1.6rem;
    font-size: 1rem;
    color: color-mix(in srgb, var(--da-white) 55%, transparent);
}

.soehv-bar--flow {
    background: var(--accent, var(--da-teal-600));
}

/* ---- Shared section label / title pattern ---- */

/* ---- The Challenge (intro) ---- */

.soe-intro {
    padding: 70px 0 20px;
    background: var(--da-white);
}

/* ---- Before / After visual (sits inside The Challenge section) ---- */

/* ---- What Changes: 4-up feature cards ---- */

.soe-changes {
    padding: 60px 0;
    background: var(--da-gray-100);
}

.soe-changes-text {
    font-size: 1.05rem;
    color: var(--da-gray-500);
    line-height: 1.7;
    width: 100%;
    margin-bottom: 2.5rem;
}

.soe-change-text {
    font-size: 0.92rem;
    color: var(--da-gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- Across Both Platforms: Prime = Indigo, Pulse = Coral ---- */

.soe-platforms {
    padding: 60px 0;
    background: var(--da-white);
}

.soe-platform-card-text {
    font-size: 1rem;
    color: var(--da-gray-500);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ---- Outcomes: chip row ---- */

.soe-outcomes {
    padding: 20px 0 70px;
    background: var(--da-white);
}

/* ---- Explore Other Solutions ---- */

.soe-explore {
    padding: 20px 0 80px;
    background: var(--da-gray-100);
}

/* ---- Closing CTA band ---- */

.soe-cta-band {
    background: var(--da-navy-700);
    padding: 60px 0;
}

.soe-cta-content {
    text-align: center;
    color: var(--da-white);
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {
    .soe-hero {
        padding: 130px 0 60px;
    }

    .soe-hero-title {
        font-size: 2.1rem;
    }

    .soe-hero-visual {
        max-width: 380px;
        margin-top: 1rem;
    }

    .soe-section-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 575.98px) {
    .soe-hero-title {
        font-size: 1.75rem;
    }

    .soe-section-title {
        font-size: 1.5rem;
    }

    .soe-cta-title {
        font-size: 1.4rem;
    }

    .soe-baf {
        flex-direction: column;
    }

    .soe-baf-arrow {
        transform: rotate(90deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .soe-change-card,
    .soe-platform-card,
    .soe-explore-card,
    .soe-cta-actions a {
        transition: none;
    }

    .soe-change-card:hover,
    .soe-platform-card:hover,
    .soe-explore-card:hover,
    .soe-cta-actions a:hover {
        transform: none;
    }
}
