/* =========================================
   IPP INDEX PAGE
   Page-specific styles only.
   Shared quote, icon, button, typography, and page styles live in the common CSS files.
========================================= */

/* HERO */

.ipp-index-hero {
    position: relative;
    height: 800px;
    overflow: hidden;
    background: var(--color-black);
}

.ipp-index-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.ipp-hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ipp-index-hero h1 {
    color: var(--color-white);
}

/* CAPABILITY PROVISION */

.ipp-capability {
    background: var(--color-white);
    padding: 0 0 60px;
}

.ipp-capability-inner {
    position: relative;
    height: 620px;
    border-radius: 20px;
    overflow: hidden;
}

.ipp-capability-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
    display: block;
    opacity: 0.72;
}

.ipp-capability-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(46, 64, 82, 0.72) 0%, rgba(46, 64, 82, 0.45) 42%, rgba(46, 64, 82, 0.12) 72%, rgba(46, 64, 82, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
}

.ipp-capability-content {
    position: absolute;
    top: 64px;
    left: 70px;
    max-width: 620px;
    color: var(--color-white);
    z-index: 2;
}

.ipp-capability-content h3 {
    margin: 0 0 24px;
}

.ipp-capability-content p {
    max-width: 560px;
    margin: 0 0 34px;
}

/* =========================================
   RESPONSIVE
========================================= */
