/* ==========================================================================
   HERO
   ========================================================================== */

#hero {
    padding-top: 230px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: var(--surface-teal, #16223B);
}

#hero .pageItemContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#hero .tag2 {
    background: rgba(244, 245, 247, 0.1);
    color: var(--text-white);
}

#hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-white);
    max-width: 850px;
}

#hero .heroSub {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #C7D2E4;
    max-width: 780px;
    margin-bottom: 30px;
}

.ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#hero .cta1 {
    background: #16223B;
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

main .cta {
    width: 280px;
}

@media (max-width: 1000px) {
    #hero {
        padding-top: 120px;
    }
}

@media (max-width: 650px) {
    #hero h1 {
        font-size: 30px;
    }

    #hero .heroSub {
        font-size: 16px;
        line-height: 1.5;
    }

    .ctas {
        flex-wrap: wrap;
    }
}

@media (max-width: 350px) {
    .ctas .cta {
        width: 100%;
    }
}


/* ==========================================================================
   SHARED SECTION UTILITIES
   ========================================================================== */

.lsection {
    padding-top: 120px;
    padding-bottom: 120px;
}

.lsection h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--teal-900);
    margin-top: 20px;
    max-width: 900px;
}

.lsectionP {
    font-size: 20px;
    line-height: 1.45;
    color: var(--text-mid-gray);
    margin-top: 20px;
    max-width: 900px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 16px;
    background: var(--surface-gray2);
    font-size: 14px;
    font-weight: 700;
    color: #E62154;
}

.box {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 30px 0 #C7D2E4;
}

.array {
    display: flex;
    flex-direction: row;
    gap: 56px;
    justify-content: space-between;
}

.arrayItem {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.array h3 {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -1.2px;
    color: #E62154;
    margin-bottom: 0;
}

.array p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-gray);
}

.array .statSource {
    font-size: 16px;
    font-style: normal;
    color: var(--text-light-gray, #939BAD);
}

@media (max-width: 1050px) {
    .array {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }
    .arrayItem {
        flex: 0 0 40%;
        margin-bottom: 40px;
    }
}
@media(max-width: 850px) {
    .arrayItem {
        flex: 0 0 100%;
    }
}

.arrayDivider {
    align-self: stretch;
    flex: 0 0 1px;
    background: var(--surface-gray3);
}

@media (max-width: 1050px) {
    .arrayDivider {
        display: none;
    }
}

@media (max-width: 650px) {
    .lsection {
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .lsection h2 {
        font-size: 30px;
        text-align: left;
    }

    .lsectionP {
        font-size: 16px;
        text-align: left;
        max-width: 100%;
        line-height: 1.5;
    }
}


/* ==========================================================================
   THE PROBLEM
   ========================================================================== */

.problemCard {
    display: flex;
    align-items: stretch;
    gap: 32px;
    margin-top: 40px;
    padding: 56px;
    background: var(--surface-domainreport, #FCFAF7);
}

.problemLeft {
    flex: 1 1 620px;
    display: flex;
    flex-direction: column;
}

.problemStats {
    margin-bottom: 24px;
}

.problemPara {
    max-width: none;
}

.problemRight {
    flex: 0 0 490px;
}

.problemRight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 1300px) {
    .problemCard {
        padding: 32px 24px;
        flex-direction: column-reverse;
    }
    .problemRight{
        max-height: 400px;
    }
}

@media (max-width: 800px) {
    .problemRight {
        flex: none;
    }

    .problemRight img {
        width: 100%;
        height: 260px;
    }
}

.engineSubheading {
    margin-top: 56px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--teal-900);
    max-width: 900px;
}

.whyGrid {
    margin-top: 40px;
    display: flex;
    gap: 24px;
}

.whyCard {
    flex: 1;
    background: var(--surface-gray2, #F4F5F7);
    border-radius: 20px;
    padding: 40px;
}

.whyCard h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--teal-900);
    margin: 0 0 16px;
}

.whyCard p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 800px) {
    .whyGrid {
        flex-direction: column;
    }

    .engineSubheading {
        font-size: 22px;
        margin-top: 40px;
    }
}


/* ==========================================================================
   AI BOUNDARY
   ========================================================================== */

#aiBoundary {
    background: var(--surface-teal, #16223B);
}

#aiBoundary h2,
#aiBoundary .lsectionP {
    color: var(--text-white, #F4F5F7);
}

.boundaryGrid {
    margin-top: 24px;
    display: flex;
    gap: 24px;
}

.boundaryCard {
    flex: 1;
    background: var(--surface-navy700, #24344E);
    border: 1px solid var(--surface-navy300, #7A90B4);
    border-radius: 20px;
    padding: 24px;
    color: var(--text-white, #F4F5F7);
}

.boundaryCard h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px;
}

.boundaryCard p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 800px) {
    .boundaryGrid {
        flex-direction: column;
    }
}


/* ==========================================================================
   COHORT ERODING
   ========================================================================== */

.loopCards {
    margin-top: 40px;
    display: flex;
    gap: 24px;
}

.loopCard {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
}

.loopCardImage {
    width: 100%;
    aspect-ratio: 545 / 394;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loopCard-navy .loopCardImage {
    background: #24344E;
}

.loopCard-pink .loopCardImage {
    background: #EA516D;
}

.loopCardImage img {
    max-width: 32%;
    max-height: 91%;
    object-fit: contain;
    display: block;
}

.loopCard-pink .loopCardImage img {
    max-width: 90%;
    max-height: 69%;
}

.loopCardBody {
    flex: 1;
    padding: 24px;
}

.loopCard-navy .loopCardBody {
    background: #E3E9F2;
}

.loopCard-pink .loopCardBody {
    background: #FBF2FB;
}

.loopCardBody h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.96px;
    color: var(--text-teal, #16223B);
    margin: 0 0 16px;
}

.loopCardBody p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

.noteBox {
    margin-top: 32px;
    padding: 24px;
    border-radius: 20px;
    background: #F9F5F0;
    border: 1px solid var(--surface-gray3, #D3D7E0);
}

.noteBox h4 {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 16px;
}

.noteBox p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

.checkList {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkList li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkList svg {
    flex-shrink: 0;
}

.checkList p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 800px) {
    .loopCards {
        flex-direction: column;
    }
}


/* ==========================================================================
   TRUST
   ========================================================================== */

#trust {
    background: #FEF0F3;
}

#trust .pageItemContainer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.trustLeft {
    flex: 1 1 671px;
}

.trustLeft p {
    margin-top: 20px;
}

.trustRight {
    flex: 0 0 490px;
}

.trustRight img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    #trust .pageItemContainer {
        flex-direction: column;
    }

    .trustLeft,
    .trustRight {
        width: 100%;
        flex: none;
    }
}


/* ==========================================================================
   WHAT YOU GET TODAY
   ========================================================================== */

.getCards {
    margin-top: 40px;
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.getCard {
    flex: 1;
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
}

.getCard-live {
    border: 3px solid #E62154;
    box-shadow: 4px 5px 8.5px rgba(51, 72, 106, 0.55);
}

.getCard-roadmap {
    background: #F9F5F0;
    border: 1px solid #D3D7E0;
}

.getCard h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary, #0B0E14);
    margin: 0 0 8px;
    letter-spacing: -0.48px;
}

.getDisclaimer {
    margin-top: 32px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-mid-gray);
    max-width: 900px;
}

@media (max-width: 800px) {
    .getCards {
        flex-direction: column;
    }
}


/* ==========================================================================
   Certifications / Status today
   ========================================================================== */

.statusToday {
    margin-top: 32px;
    background: var(--surface-teal, #24344E);
    border-radius: 20px;
    padding: 24px;
    color: var(--text-white, #F4F5F7);
}

.statusToday h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.48px;
    margin: 0 0 16px;
}

.statusToday p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faqList {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

.faqItem {
    border-bottom: 1px solid var(--surface-gray3);
}

.faqItemHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 24px 0;
}

.faqItemHeader h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-teal);
    margin: 0;
}

.faqItemHeader svg {
    width: 32px;
    height: 32px;
    margin-left: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: .4s;
}

.faqItemBody {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s linear, opacity 0.5s linear;
}

.faqItemBody p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 0 24px;
}

.faqItem.is-open .faqItemBody {
    max-height: 400px;
    opacity: 1;
}

.faqItem.is-open .faqItemHeader svg {
    transform: rotate(180deg);
}

@media (max-width: 650px) {
    .faqItemHeader h4 {
        font-size: 18px;
    }
}


.collabs {
    background-color: #ECF1F0;
}

.collabs-main {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
    margin-bottom: 40px;
}

.collabs-foundations {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.collabs-foundation-item {
    background: rgba(188, 224, 228, 0.35);
    border-radius: 8px;
    padding: 0;
}
.collabs-foundation-item:hover{
    transition: .4s;
    background: #00000001;
}
.collabs-foundation-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 24px 40px 0px;
}

.collabs-foundation-label {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
}

.collabs-foundation-icon {
    width: 24px;
    height: 12px;
    position: relative;
    transition: transform 0.2s ease;
}

.collabs-foundation-icon::before {
    content: "";
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 50%;
    margin: 0 auto;
    width: 12px;
    height: 12px;
    border-left: 2px solid var(--text-base);
    border-bottom: 2px solid var(--text-base);
    transform: translateY(-70%) rotate(-45deg);
}

.collabs-foundation-list {
    padding: 0 40px 24px 40px;
    display: flex;
    flex-direction: column;
    list-style: inside;
}

.collabs-foundation-list-item {
    font-size: 1.6rem;
    line-height: 1.45;
    color: var(--text-gray);
    margin-top: 10px;
    list-style: none;
    position: relative;
    padding-left: 1.2em;
}
.collabs-foundation-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
}


.collabs-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.collabs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.collabsHidden {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.25s ease, opacity 0.25s ease;
}

.collabsHidden > * {
    overflow: hidden;
}

.collabsHidden.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
}

.collabs-foundation-head.is-open .collabs-foundation-icon {
    transform: rotate(180deg);
}

.solutionProgress {
    margin-bottom: 56px;
    background: var(--surface-domainreport, #FCFAF7);
    border: 1px solid var(--surface-gray3, #D3D7E0);
    border-radius: 16px;
    padding: 24px;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-primary);
}

.solutionProgress strong {
    color: #E62154;
}

@media (max-width: 1100px) {
    .collabs-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .collabs-foundation-item {
        padding: 0;
    }

    .collabs-foundation-head {
        padding: 20px 24px 10px;
    }

    .collabs-foundation-list {
        padding: 0 24px 20px 24px;
    }

    .collabs-foundation-label {
        font-size: 2rem;
    }

    .collabs-logos {
        justify-content: center;
    }
}


/* ==========================================================================
   HELP NOW (reused from homepage)
   ========================================================================== */

.helpNowCard {
    display: flex;
    align-items: stretch;
    gap: 64px;
    background: #FEF0F3;
    border-radius: 24px;
    padding: 56px;
}

.helpNowText {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.helpNowText h3 {
    font-weight: 800;
    font-size: 32px;
    line-height: 1.3;
    color: var(--text-dark-teal);
    margin: 0 0 20px 0;
}

.helpNowText p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 0 16px 0;
}

.helpNowText ul {
    list-style: none;
    margin: 8px 0 20px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.helpNowText ul li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.helpNowText ul li strong {
    color: var(--text-dark-teal);
    font-weight: 700;
}

.helpNowText ul li a {
    color: var(--text-navy-blue);
    text-decoration: underline;
}

.helpNowImage {
    flex: 1;
}

.helpNowImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

@media (max-width: 850px) {
    .helpNowCard {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
    }

    .helpNowText h3 {
        font-size: 26px;
    }

    .helpNowImage img {
        max-height: 320px;
    }
}





/* Overide */
.accordionImage{
    max-height: 630px;
    padding: 24px;
}
.accordionImage img{
    object-fit: contain !important;
}

@media (max-width: 650px) {
    .accordionImage{
        max-height: 400px;
    }
}