#lpBody {
    background: linear-gradient(rgb(242, 248, 241) 0%, rgb(255, 255, 255) 38%);
    color: black;
}

#header {
    z-index: 300;
}

.lpButton,
.lpButtonGhost {
    display: inline-block;
    border-radius: 4px;
    padding: 10px 18px;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1;
    border: solid 1px var(--principal-green);
}

.lpButton {
    background: var(--principal-green);
    color: white;
}

.lpButton:hover,
.lpButton:focus,
.lpButton:active {
    font-size: 1rem;
    background: white;
    color: var(--principal-green);
    border: solid 1px var(--principal-green);
}

.lpButtonGhost {
    background: white;
    color: var(--principal-green);
}

.lpButtonGhost:hover,
.lpButtonGhost:focus,
.lpButtonGhost:active {
    font-size: 1rem;
    background: var(--principal-green);
    color: white;
    border: solid 1px var(--principal-green);
}

.lpMain {
    width: min(1120px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 28px 0 72px 0;
}

.lpHero {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 40px;
    row-gap: 40px;
    border-radius: 4px;
    padding: 30px 0;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    min-height: 405px;
}

.lpSection {
    border: solid 1px lightgray;
    border-radius: 4px;
    background: white;
    box-shadow: 0 0 10px #a8a8a8;
}

.lpHeroLeft h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.lpHeroLeft p {
    margin: 0;
    color: #5f5f5f;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 20px 0;
}

.lpHeroCtas {
    margin-top: 22px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: flex-start;
    gap: 12px;
}

#exampleGifWrapper {
    min-width: min(400px, calc(100vw - 40px));
}

#exampleGif {
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 0 10px gray;
    max-width: min(400px, calc(100vw - 40px));
    object-fit: contain;
    display: block;
    background: white;
}

.lpSection {
    margin-top: 24px;
    padding: 24px;
}

.lpSection h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.lpSectionLead {
    margin: 8px 0 0 0;
    color: #5f5f5f;
}

.lpThreeCol {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lpMiniCard {
    border: solid 1px lightgray;
    border-left: solid 3px var(--principal-green);
    border-radius: 4px;
    background: #f8f8f8;
    padding: 14px;
}

.lpMiniCard h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.lpMiniCard p {
    margin: 6px 0 0 0;
    color: #5f5f5f;
    font-size: 1rem;
}

.lpCareerSnippets {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.lpCareerSnippet {
    border: solid 1px lightgray;
    border-left: solid 3px var(--principal-green);
    border-radius: 4px;
    background: #f8f8f8;
    padding: 12px;
    display: grid;
    grid-template-columns: min-content auto;
    column-gap: 12px;
}

.lpCareerIconWrapper {
    background: var(--principal-green-background-color);
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: grid;
    justify-content: center;
    align-content: center;
}

.lpCareerIconWrapper img {
    width: 2rem;
    padding: 0;
    margin: 0;
    display: block;
}

.lpFxIcon {
    font-family: "Times New Roman";
    font-style: italic;
    color: var(--principal-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.lpCareerSnippetBody h3 {
    margin: 0;
    font-weight: bold;
}

.lpCareerSnippetBody p {
    margin: 0;
    color: #5f5f5f;
}

.lpCareerStat {
    color: #333333 !important;
    font-weight: bold;
}

.lpCareerSnippetBody .sourceLink,
.lpCareerSnippetBody .sourceLink:hover,
.lpCareerSnippetBody .sourceLink:active,
.lpCareerSnippetBody .sourceLink:focus {
    font-style: italic;
    color: #757575;
    font-size: 0.8rem;
}

.lpCareerSnippetBody .sourceLink:hover {
    color: var(--pro-main-color);
}

.lpCareerSnippetBody .sourceLink + .lpCareerStat {
    margin-top: 12px;
}

.lpFaqList {
    margin-top: 6px;
}

.lpFaqItem {
    border-top: solid 1px lightgray;
}

.lpFaqQuestion {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.lpFaqQuestion:focus-visible {
    outline: solid 2px var(--principal-green);
    outline-offset: 2px;
}

.lpFaqQuestion::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    transition: transform 0.15s ease;
    flex-shrink: 0;
    transform-origin: center;
    margin-left: 10px;
}

.lpFaqItem.isOpen .lpFaqQuestion::before {
    transform: rotate(45deg) translateX(-50%);
}

.lpFaqAnswer {
    padding: 0 0 12px 0;
}

.lpFaqAnswer p {
    margin: 0;
    color: #5f5f5f;
}

.lpFinalCta {
    margin-top: 20px;
    padding: 24px;
    display: grid;
    row-gap: 10px;
}

.finalCtaInnerWrapper {
    display: grid;
    grid-template-columns: auto;
    column-gap: 40px;
    row-gap: 40px;
    justify-content: center;
    justify-items: center;
}

.lpFinalCta h2 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: bold;
}

.lpFinalCta p {
    margin: 0;
    color: #5f5f5f;
}

#avatarCtaButton {
    background: var(--principal-green);
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: none;
    margin-top: 60px;
    padding: 10px 60px;
    margin-bottom: 100px;
    border: solid 1px var(--principal-green);
}

#avatarCtaButton:hover,
#avatarCtaButton:active,
#avatarCtaButton:focus {
    background: white;
    color: var(--principal-green);
}

#bottomSectionMainTitle {
    font-size: 2rem;
    margin: 0;
    margin-top: 40px;
    text-align: center;
}

#avatarContainerOuterWrapper {
    display: grid;
    justify-content: center;
    justify-items: center;
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
}

#avatarContainerPre,
#avatarContainerPost {
    width: min-content;
    margin: 0 10px;
}

#avatarContainerPre {
    border-top: solid 1px #e7e7e7;
    border-left: solid 1px #e7e7e7;
}

#avatarContainerPost {
    border-top: solid 1px transparent;
    border-left: solid 1px transparent;
}

#avatarContainerPre .avatarCell,
#avatarContainerPost .populatedAvatarCell {
    border-bottom: solid 1px #e7e7e7;
    border-right: solid 1px #e7e7e7;
}

#avatarContainerPost .populatedAvatarCell {
    border: none;
    padding-right: 1px;
    padding-bottom: 1px;
}

.avatarRow {
    display: flex;
}

.avatarCell {
    width: 12px;
    height: 4px;
    width: 3px;
    height: 3px;
    width: 6px;
    height: 5px;
    border-bottom: solid 1px transparent;
    border-right: solid 1px transparent;
}

#avatarText {
    font-size: 1.1rem;
    margin: 10px 0 0 0;
    max-width: 400px;
    line-height: 1.5;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .lpHero {
        grid-template-columns: 1fr;
        min-height: unset;
    }
}

@media screen and (max-width: 780px) {
    .lpMain {
        width: min(1120px, calc(100vw - 40px));
    }

    .lpHeroLeft {
        padding: 24px;
    }

    .lpHeroLeft h1 {
        font-size: 1.8rem;
    }

    .lpThreeCol {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 560px) {
    .lpButton,
    .lpButtonGhost {
        padding: 9px 12px;
    }

    .lpHeroCtas {
        grid-template-columns: 1fr;
    }

    .lpCareerSnippet {
        grid-template-columns: 1fr;
    }
}
