/* ==========================================================================
   Responsible AI (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; content covers
   AI principles that apply across both DataArtha Prime and DataArtha Pulse,
   and the Resources section itself is cross-platform navigation, not inside
   either product's UI.
   ========================================================================== */

/* ---- Hero visual: AI chip guarded by a shield (2026-08-17, Track B
   Cluster A) — a literal "guardrails" visual, distinct from Privacy's lock
   (data protection) and AI Capabilities' embedded chip (product
   architecture): here the shield stands for AI operating within trust
   boundaries, with a checkmark confirming it.

   Frame+fill fix (2026-08-17): added the missing enclosing .raihv-frame
   (matching the site's established hero-visual convention — see
   it-consulting.css's comment for the full writeup). The shield glyph is
   already large (6rem) and reads as the dominant filled shape, so no
   resize was needed, only the outer border. ---- */

.raihv-fallback {
    position: absolute;
    inset: 0;
}

.raihv-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);
}

.raihv-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: color-mix(in srgb, var(--da-white) 18%, transparent);
}

.raihv-chip {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--accent, var(--da-teal-400));
}

.raihv-check {
    position: absolute;
    bottom: 22%;
    right: 30%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent, var(--da-teal-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--da-white);
    box-shadow: 0 6px 16px rgba(8, 25, 47, 0.35);
}

/* ---- Shared section label / title pattern ---- */

/* ---- Overview ---- */

.rai-intro {
    padding: 70px 0 20px;
    background: var(--da-white);
}

/* ---- Where Responsible AI Shows Up ---- */

.rai-capabilities {
    padding: 60px 0;
    background: var(--da-gray-100);
}

.rai-capability-text {
    font-size: 0.95rem;
    color: var(--da-gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- Benefits + Demo CTA ---- */

.rai-benefits {
    padding: 70px 0;
    background: var(--da-white);
}

.rai-consult-text {
    font-size: 0.98rem;
    color: var(--da-gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ---- Other industries ---- */

.rai-related {
    padding: 60px 0 70px;
    background: var(--da-gray-100);
}

/* ---- Closing CTA band ---- */

.rai-cta-band {
    background: var(--da-navy-700);
    padding: 60px 0;
}

.rai-cta-content {
    text-align: center;
    color: var(--da-white);
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {

    .rai-hero-title {
        font-size: 2.1rem;
    }

    .rai-hero-visual {
        max-width: 380px;
        margin-top: 1rem;
    }

    .rai-section-title {
        font-size: 1.65rem;
    }

    .rai-consult-card {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .rai-hero-title {
        font-size: 1.75rem;
    }

    .rai-section-title {
        font-size: 1.5rem;
    }

    .rai-capability-card,
    .rai-related-card {
        padding: 1.75rem;
    }

    .rai-consult-card {
        padding: 2rem 1.5rem;
    }

    .rai-cta-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rai-capability-card,
    .rai-related-card,
    .rai-consult-cta,
    .rai-cta-actions a {
        transition: none;
    }

    .rai-capability-card:hover,
    .rai-related-card:hover,
    .rai-consult-cta:hover,
    .rai-cta-actions a:hover {
        transform: none;
    }
}
