/* ==========================================================================
   Solutions (hub) page-specific styles
   Uses tokens from css/brand-v1.6.css. Master-brand / cross-platform page,
   so accents stay Navy + Teal — never Indigo or Coral here. The six solution
   cards are intentionally NOT colour-coded by platform (that would fight the
   Prime/Pulse accent system); the "Prime", "Pulse", or "Prime & Pulse" chip
   on each card carries that information in neutral text instead.
   ========================================================================== */

/* ---- Hero ---- */

/* ---- Hero visual: 6-tile solution index (2026-08-17, Track B Cluster A) —
   an honest labeled menu grid, not a fake dashboard. Equal-weight 2x3 grid,
   one tile per real solution page, ordered to match the page's own grid
   below. This is the "orthogonal labeled grid" member of Cluster A's four
   distinct multi-node layouts (see docs/known-issues.md) — deliberately
   NOT reused for IT Consulting's hub (linear pipeline instead), AI
   Automation (dense unlabeled chip grid), or Enterprise Industries (radial
   wheel), so no two hub/grid pages share a layout. ---- */

.shv-fallback {
    position: absolute;
    inset: 0;
}

.shv-grid {
    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);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.85rem;
    padding: 1.5rem;
}

.shv-tile {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.5rem;
}

.shv-tile i {
    font-size: 1.3rem;
    color: var(--accent, var(--da-teal-400));
}

.shv-tile span {
    font-size: 0.72rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--da-white) 82%, transparent);
    line-height: 1.25;
}

/* ---- Shared section label / title pattern ---- */

/* ---- Intro ---- */

.sol-intro {
    padding: 70px 0 20px;
    background: var(--da-white);
}

/* ---- Solutions grid ---- */

.sol-grid-section {
    padding: 60px 0 80px;
    background: var(--da-white);
}

.sol-card-platforms {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--da-font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--da-gray-500);
    background: var(--da-white);
    border: 1px solid var(--da-gray-300);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
}

.sol-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--da-navy-900);
    margin-bottom: 0.65rem;
}

.sol-card-text {
    font-size: 0.98rem;
    color: var(--da-gray-500);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ---- Closing CTA band ---- */

.sol-cta-band {
    background: var(--da-navy-700);
    padding: 60px 0;
}

.sol-cta-content {
    text-align: center;
    color: var(--da-white);
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {

    .sol-hero-title {
        font-size: 2.1rem;
    }

    .sol-hero-visual {
        max-width: 380px;
        margin-top: 1rem;
    }

    .sol-section-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 575.98px) {
    .sol-hero-title {
        font-size: 1.75rem;
    }

    .sol-section-title {
        font-size: 1.5rem;
    }

    .sol-card {
        padding: 1.75rem;
    }

    .sol-cta-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sol-card,
    .sol-cta-actions a {
        transition: none;
    }

    .sol-card:hover,
    .sol-cta-actions a:hover {
        transform: none;
    }
}
