/* ==========================================================================
   AI Capabilities (AI child page of the Resources hub)
   Uses tokens from css/brand-v1.6.css. Master-brand / cross-platform page,
   so accents stay Navy + Teal — never Indigo or Coral here, even though
   the content describes AI capabilities embedded in both DataArtha Prime
   and DataArtha Pulse; the Resources section itself is cross-platform
   navigation, not inside either product's UI.
   ========================================================================== */

/* ---- Hero visual: AI chip nested inside a platform panel (2026-08-17,
   Track B Cluster A) — a literal read of this page's own headline (AI
   built into the platform, not bolted on): a chip embedded AMONG the
   platform's own content lines, not overlapping an edge or floating
   outside it the way Privacy's lock badge does.

   Frame+fill fix (2026-08-17): panel was 70% width with no height
   constraint, leaving visible margin instead of matching the site's
   full-bleed frame convention (see it-consulting.css's comment for the
   full writeup) — changed to inset:0, added a 5th content line and
   enlarged the chip so the panel itself IS the frame. ---- */

.aichv-fallback {
    position: absolute;
    inset: 0;
}

.aichv-platform {
    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);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
}

.aichv-platform-line {
    height: 8px;
    border-radius: 4px;
    background: color-mix(in srgb, var(--da-white) 20%, transparent);
    width: 100%;
}

.aichv-platform-line--short {
    width: 55%;
}

.aichv-chip {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--accent, var(--da-teal-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--da-white);
    margin: 0.2rem 0;
}

/* ---- Shared section label / title pattern ---- */

/* ---- Overview ---- */

.aic-intro {
    padding: 70px 0 20px;
    background: var(--da-white);
}

/* ---- Where AI Helps Most ---- */

.aic-capabilities {
    padding: 60px 0;
    background: var(--da-gray-100);
}

.aic-capability-text {
    font-size: 0.95rem;
    color: var(--da-gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- Benefits + Demo CTA ---- */

.aic-benefits {
    padding: 70px 0;
    background: var(--da-white);
}

.aic-consult-text {
    font-size: 0.98rem;
    color: var(--da-gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ---- Other industries ---- */

.aic-related {
    padding: 60px 0 70px;
    background: var(--da-gray-100);
}

/* ---- Closing CTA band ---- */

.aic-cta-band {
    background: var(--da-navy-700);
    padding: 60px 0;
}

.aic-cta-content {
    text-align: center;
    color: var(--da-white);
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {

    .aic-hero-title {
        font-size: 2.1rem;
    }

    .aic-hero-visual {
        max-width: 380px;
        margin-top: 1rem;
    }

    .aic-section-title {
        font-size: 1.65rem;
    }

    .aic-consult-card {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .aic-hero-title {
        font-size: 1.75rem;
    }

    .aic-section-title {
        font-size: 1.5rem;
    }

    .aic-capability-card,
    .aic-related-card {
        padding: 1.75rem;
    }

    .aic-consult-card {
        padding: 2rem 1.5rem;
    }

    .aic-cta-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aic-capability-card,
    .aic-related-card,
    .aic-consult-cta,
    .aic-cta-actions a {
        transition: none;
    }

    .aic-capability-card:hover,
    .aic-related-card:hover,
    .aic-consult-cta:hover,
    .aic-cta-actions a:hover {
        transform: none;
    }
}
