.participant-plans-page {
    min-height: 70vh;
    overflow: hidden;
    background: #f8faf8;
    color: #24342b;
}

.pp-kicker {
    margin: 0 0 .55rem;
    color: #778f80;
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.pp-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgb(46 68 56 / .08);
    background:
        radial-gradient(circle at 86% 10%, rgb(237 205 196 / .46), transparent 22rem),
        radial-gradient(circle at 74% 78%, rgb(164 183 171 / .25), transparent 22rem),
        #fff;
    padding: clamp(3.2rem, 8vw, 6.3rem) 0;
}

.pp-hero__grid {
    display: grid;
    gap: clamp(2.5rem, 7vw, 5rem);
    align-items: center;
}

.pp-hero h1 {
    max-width: 13ch;
    margin: 0;
    color: #24342b;
    font-size: clamp(2.35rem, 6.5vw, 5rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.pp-hero__lead {
    max-width: 40rem;
    margin: 1rem 0 0;
    color: #65766c;
    font-size: clamp(.98rem, 1.8vw, 1.08rem);
    line-height: 1.68;
}

.pp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.45rem;
}

.pp-button {
    min-height: 2.95rem;
    border-radius: .8rem;
    padding: .65rem .95rem;
    font-size: .82rem;
    font-weight: 850;
}

.pp-button--primary {
    border: 1px solid #2e4438;
    background: #2e4438;
    color: #fff;
}

.pp-button--primary:hover,
.pp-button--primary:focus {
    border-color: #435b4d;
    background: #435b4d;
    color: #fff;
}

.pp-button--soft {
    border: 1px solid #d4ddd7;
    background: rgb(255 255 255 / .82);
    color: #52675b;
}

.pp-button--soft:hover,
.pp-button--soft:focus {
    border-color: #b6c5bb;
    background: #fff;
    color: #24342b;
}

.pp-hero__mini {
    display: flex;
    flex-wrap: wrap;
    gap: .38rem;
    margin-top: 1rem;
}

.pp-hero__mini span {
    border: 1px solid #dfe6e1;
    border-radius: 999px;
    background: rgb(255 255 255 / .72);
    padding: .35rem .58rem;
    color: #738178;
    font-size: .67rem;
    font-weight: 800;
}

.pp-hero__visual {
    position: relative;
    width: min(100%, 32rem);
    min-height: 30rem;
    margin-inline: auto;
}

.pp-hero-photo {
    position: absolute;
    inset: 1.5rem 5.8rem 2rem 0;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #dce7e0;
    box-shadow: 0 28px 70px rgb(46 68 56 / .14);
}

.pp-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    animation: ppHeroZoom 11s ease-in-out infinite alternate;
}

.pp-ai-card {
    position: absolute;
    right: 0;
    bottom: 1rem;
    z-index: 3;
    width: min(21rem, 72%);
    border: 1px solid rgb(255 255 255 / .8);
    border-radius: 1rem;
    background: rgb(255 255 255 / .93);
    padding: .9rem;
    box-shadow: 0 18px 46px rgb(46 68 56 / .16);
    backdrop-filter: blur(14px);
    animation: ppCardFloat 6s ease-in-out infinite;
}

.pp-ai-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.pp-ai-card__head > div:first-child {
    display: grid;
    gap: .15rem;
}

.pp-ai-card__head span {
    color: #829087;
    font-size: .62rem;
    font-weight: 800;
}

.pp-ai-card__head strong {
    color: #2e4438;
    font-size: .84rem;
}

.pp-ai-score {
    display: flex;
    align-items: baseline;
    gap: .1rem;
    color: #2e4438;
}

.pp-ai-score strong {
    font-size: 1.7rem;
    letter-spacing: -.04em;
}

.pp-ai-score span {
    color: #52675b;
    font-size: .72rem;
    font-weight: 850;
}

.pp-ai-card__rows {
    display: grid;
    gap: .55rem;
    margin-top: .8rem;
}

.pp-ai-card__rows > div {
    display: grid;
    gap: .24rem;
}

.pp-ai-card__rows > div > span {
    color: #66766d;
    font-size: .62rem;
    font-weight: 800;
}

.pp-ai-card__rows > div > div {
    height: .34rem;
    overflow: hidden;
    border-radius: 999px;
    background: #edf1ee;
}

.pp-ai-card__rows i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #778f80, #2e4438);
    transition: width 1.3s cubic-bezier(.2, .8, .2, 1);
}

.pp-ai-card > p {
    margin: .7rem 0 0;
    color: #87938c;
    font-size: .58rem;
    line-height: 1.45;
}

.pp-floating-note {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgb(255 255 255 / .86);
    border-radius: 999px;
    background: rgb(255 255 255 / .92);
    padding: .48rem .65rem;
    color: #52675b;
    font-size: .62rem;
    font-weight: 850;
    box-shadow: 0 10px 26px rgb(46 68 56 / .11);
    backdrop-filter: blur(10px);
}

.pp-floating-note--one {
    top: .25rem;
    right: 1rem;
    animation: ppNoteFloat 5s ease-in-out infinite;
}

.pp-floating-note--two {
    left: .3rem;
    bottom: .3rem;
    animation: ppNoteFloat 6.5s ease-in-out infinite 1s;
}

.pp-pulse {
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: #778f80;
    box-shadow: 0 0 0 0 rgb(119 143 128 / .45);
    animation: ppPulse 2s infinite;
}

.pp-how,
.pp-example,
.pp-other-benefits,
.pp-pricing,
.pp-faq,
.pp-final {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.pp-heading {
    max-width: 43rem;
}

.pp-heading h2,
.pp-example__content h2,
.pp-pricing__head h2,
.pp-faq__copy h2,
.pp-final__box h2 {
    margin: 0;
    color: #24342b;
    font-size: clamp(1.9rem, 4.8vw, 3.45rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.pp-heading--compact {
    max-width: 32rem;
}

.pp-how__steps {
    display: grid;
    gap: 0;
    margin-top: clamp(2rem, 5vw, 3rem);
    border-top: 1px solid #dfe6e1;
}

.pp-how__steps article {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .8rem 1rem;
    border-bottom: 1px solid #dfe6e1;
    padding: 1.3rem 0;
}

.pp-step-number {
    grid-column: 1 / -1;
    color: #a4b7ab;
    font-size: .67rem;
    font-weight: 900;
}

.pp-step-icon {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    place-items: center;
    border-radius: .9rem;
    background: linear-gradient(145deg, #edf3ef, #f7ece8);
    color: #435b4d;
}

.pp-step-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.pp-how__steps h3 {
    margin: 0;
    color: #2e4438;
    font-size: 1rem;
}

.pp-how__steps p {
    margin: .28rem 0 0;
    color: #738178;
    font-size: .84rem;
    line-height: 1.55;
}

.pp-example {
    background: #fff;
}

.pp-example__grid {
    display: grid;
    gap: clamp(2rem, 7vw, 5rem);
    align-items: center;
}

.pp-example__visual {
    width: min(100%, 27rem);
    margin-inline: auto;
}

.pp-example__visual img {
    display: block;
    width: 100%;
    max-height: 31rem;
    border-radius: 1.15rem;
    object-fit: cover;
    box-shadow: 0 22px 55px rgb(46 68 56 / .1);
    transition: transform .6s cubic-bezier(.2, .65, .3, 1);
}

.pp-example__visual:hover img {
    transform: translateY(-4px) rotate(-.5deg);
}

.pp-example__content {
    max-width: 38rem;
}

.pp-example__lead {
    margin: .9rem 0 0;
    color: #66766d;
    font-size: .92rem;
    line-height: 1.65;
}

.pp-example__relationship {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .75rem;
    align-items: start;
    margin-top: 1.2rem;
    border-radius: .9rem;
    background: #f3f7f4;
    padding: .85rem;
}

.pp-example__relationship-icon {
    display: grid;
    width: 2.45rem;
    height: 2.45rem;
    place-items: center;
    border-radius: .72rem;
    background: #fff;
    color: #52675b;
}

.pp-example__relationship-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.pp-example__relationship p {
    margin: 0;
    color: #52675b;
    font-size: .82rem;
    line-height: 1.55;
}

.pp-example__privacy {
    margin: .85rem 0 0;
    color: #829087;
    font-size: .75rem;
    line-height: 1.55;
}

.pp-ranking {
    display: grid;
    gap: .55rem;
    margin-top: 1.25rem;
}

.pp-ranking-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    border: 1px solid #e0e7e2;
    border-radius: .82rem;
    background: #fff;
    padding: .68rem .75rem;
    box-shadow: 0 7px 20px rgb(46 68 56 / .035);
    opacity: 0;
    transform: translateX(1.5rem);
}

.pp-ranking.is-visible .pp-ranking-card {
    animation: ppRankIn .55s forwards;
}

.pp-ranking.is-visible .pp-ranking-card:nth-child(2) {
    animation-delay: .14s;
}

.pp-ranking.is-visible .pp-ranking-card:nth-child(3) {
    animation-delay: .28s;
}

.pp-ranking-card > div {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
}

.pp-ranking-card > div > span {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: .55rem;
    background: #edf3ef;
    color: #435b4d;
    font-size: .7rem;
    font-weight: 900;
}

.pp-ranking-card > div > div {
    display: grid;
    gap: .1rem;
    min-width: 0;
}

.pp-ranking-card strong {
    overflow: hidden;
    color: #2e4438;
    font-size: .78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pp-ranking-card small {
    overflow: hidden;
    color: #86928b;
    font-size: .64rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pp-ranking-card b {
    color: #2e4438;
    font-size: .86rem;
}

.pp-other-benefits {
    background: #f8faf8;
}

.pp-benefit-grid {
    display: grid;
    gap: .7rem;
    margin-top: 1.7rem;
}

.pp-benefit-grid article {
    border: 1px solid #dfe6e1;
    border-radius: .95rem;
    background: #fff;
    padding: 1rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pp-benefit-grid article:hover {
    border-color: #bbc9c0;
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgb(46 68 56 / .075);
}

.pp-benefit-grid svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #52675b;
}

.pp-benefit-grid h3 {
    margin: .75rem 0 .35rem;
    color: #2e4438;
    font-size: .92rem;
}

.pp-benefit-grid p {
    margin: 0;
    color: #7a887f;
    font-size: .78rem;
    line-height: 1.55;
}

.pp-pricing {
    background: #fff;
}

.pp-pricing__head {
    display: grid;
    gap: 1rem;
    align-items: end;
}

.pp-pricing__head > div:first-child {
    max-width: 43rem;
}

.pp-billing {
    display: inline-flex;
    width: fit-content;
    border: 1px solid #dce4df;
    border-radius: .8rem;
    background: #f5f8f6;
    padding: .24rem;
}

.pp-billing button {
    min-height: 2.45rem;
    border: 0;
    border-radius: .6rem;
    background: transparent;
    padding: .46rem .82rem;
    color: #68786f;
    font-size: .76rem;
    font-weight: 850;
}

.pp-billing button.is-active {
    background: #2e4438;
    color: #fff;
    box-shadow: 0 5px 15px rgb(46 68 56 / .15);
}

.pp-plan-grid {
    display: grid;
    gap: .85rem;
    margin-top: clamp(2rem, 5vw, 2.8rem);
}

.pp-plan {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid #e0e7e2;
    border-radius: 1rem;
    background: #fff;
    padding: 1.05rem;
    box-shadow: 0 8px 24px rgb(46 68 56 / .045);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pp-plan:hover {
    border-color: #b9c7be;
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgb(46 68 56 / .09);
}

.pp-plan.is-featured {
    border-color: #8da497;
    box-shadow: 0 16px 40px rgb(46 68 56 / .1);
}

.pp-plan__recommended {
    position: absolute;
    top: 0;
    right: .9rem;
    transform: translateY(-50%);
    border-radius: 999px;
    background: #2e4438;
    padding: .32rem .56rem;
    color: #fff;
    font-size: .61rem;
    font-weight: 850;
}

.pp-plan__eyebrow {
    margin: 0 0 .3rem;
    color: #7f8e85;
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.pp-plan h3 {
    margin: 0;
    color: #24342b;
    font-size: 1.18rem;
    letter-spacing: -.03em;
}

.pp-plan__description {
    min-height: 2.8rem;
    margin: .45rem 0 0;
    color: #75837a;
    font-size: .78rem;
    line-height: 1.5;
}

.pp-plan__price {
    display: flex;
    align-items: baseline;
    gap: .2rem;
    margin-top: .75rem;
}

.pp-plan__price strong {
    color: #24342b;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.045em;
}

.pp-plan__price span {
    color: #52675b;
    font-size: .82rem;
    font-weight: 850;
}

.pp-plan > small {
    margin-top: .18rem;
    color: #8a968f;
    font-size: .65rem;
}

.pp-plan__saving {
    min-height: 1rem;
    margin: .38rem 0 0;
    color: #607b69;
    font-size: .64rem;
    font-weight: 850;
}

.pp-plan__saving.is-empty {
    visibility: hidden;
}

.pp-plan__features {
    display: grid;
    gap: 0;
    margin: .8rem 0 1rem;
    padding: 0;
    list-style: none;
}

.pp-plan__features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .55rem;
    border-bottom: 1px solid #edf1ee;
    padding: .52rem 0;
}

.pp-plan__features li span,
.pp-plan__features li strong {
    font-size: .7rem;
}

.pp-plan__features li span {
    color: #7b8980;
}

.pp-plan__features li strong {
    color: #435b4d;
    text-align: right;
}

.pp-plan__button {
    width: 100%;
    min-height: 2.75rem;
    margin-top: auto;
    border: 1px solid #c9d3cd;
    border-radius: .7rem;
    background: #fff;
    color: #52675b;
    font-size: .77rem;
    font-weight: 850;
}

.pp-plan__button:hover,
.pp-plan__button:focus {
    border-color: #b0bfb5;
    background: #edf3ef;
    color: #24342b;
}

.pp-plan__button.is-primary {
    border-color: #2e4438;
    background: #2e4438;
    color: #fff;
}

.pp-plan__button.is-primary:hover,
.pp-plan__button.is-primary:focus {
    border-color: #435b4d;
    background: #435b4d;
    color: #fff;
}

.pp-pricing__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-top: 1rem;
    color: #89958e;
    font-size: .68rem;
}

.pp-pricing__footer a {
    color: #52675b;
    font-weight: 850;
    text-decoration: none;
}

.pp-pricing__footer a:hover {
    text-decoration: underline;
}

.pp-faq {
    background: #f8faf8;
}

.pp-faq__grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.pp-faq__copy {
    max-width: 28rem;
}

.pp-accordion {
    overflow: hidden;
    border: 1px solid #dfe6e1;
    border-radius: .95rem;
    background: #fff;
}

.pp-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #e7ece9;
}

.pp-accordion .accordion-item:last-child {
    border-bottom: 0;
}

.pp-accordion .accordion-button {
    background: #fff;
    color: #2e4438;
    font-size: .82rem;
    font-weight: 850;
    box-shadow: none;
}

.pp-accordion .accordion-button:not(.collapsed) {
    background: #f5f8f6;
}

.pp-accordion .accordion-body {
    color: #6f7f75;
    font-size: .8rem;
    line-height: 1.6;
}

.pp-final {
    padding-top: 0;
    background: #f8faf8;
}

.pp-final__box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    border-radius: 1.15rem;
    background:
        radial-gradient(circle at 86% 15%, rgb(237 205 196 / .48), transparent 18rem),
        #edf3ef;
    padding: clamp(1.4rem, 4vw, 2.2rem);
}

.pp-final__box > div {
    max-width: 43rem;
}

.pp-final__box p:last-child {
    margin: .65rem 0 0;
    color: #68786f;
    font-size: .82rem;
    line-height: 1.55;
}

[data-reveal] {
    opacity: 0;
    transition:
        opacity .65s cubic-bezier(.2, .75, .25, 1) var(--delay, 0ms),
        transform .75s cubic-bezier(.2, .75, .25, 1) var(--delay, 0ms);
}

[data-reveal="up"] {
    transform: translateY(1.8rem);
}

[data-reveal="left"] {
    transform: translateX(-2rem);
}

[data-reveal="right"] {
    transform: translateX(2rem);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@keyframes ppHeroZoom {
    from { transform: scale(1.015); }
    to { transform: scale(1.07); }
}

@keyframes ppCardFloat {
    0%, 100% { transform: translateY(0) rotate(.3deg); }
    50% { transform: translateY(-7px) rotate(-.4deg); }
}

@keyframes ppNoteFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes ppPulse {
    0% { box-shadow: 0 0 0 0 rgb(119 143 128 / .42); }
    70% { box-shadow: 0 0 0 .5rem rgb(119 143 128 / 0); }
    100% { box-shadow: 0 0 0 0 rgb(119 143 128 / 0); }
}

@keyframes ppRankIn {
    from {
        opacity: 0;
        transform: translateX(1.5rem);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 48rem) {
    .pp-how__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-bottom: 1px solid #dfe6e1;
    }

    .pp-how__steps article {
        display: block;
        border-bottom: 0;
        padding: 1.3rem 1.25rem 1.3rem 0;
    }

    .pp-how__steps article + article {
        border-left: 1px solid #dfe6e1;
        padding-left: 1.25rem;
    }

    .pp-step-number {
        display: block;
        margin-bottom: .8rem;
    }

    .pp-how__steps h3 {
        margin-top: .8rem;
    }

    .pp-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pp-pricing__head {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .pp-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pp-final__box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .pp-final__box .btn {
        flex: 0 0 auto;
    }
}

@media (min-width: 64rem) {
    .pp-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(25rem, .95fr);
    }

    .pp-example__grid {
        grid-template-columns: minmax(20rem, .78fr) minmax(0, 1.22fr);
    }

    .pp-benefit-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pp-faq__grid {
        grid-template-columns: minmax(15rem, .65fr) minmax(0, 1.35fr);
    }
}

@media (min-width: 75rem) {
    .pp-plan-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pp-plan.is-featured {
        transform: translateY(-.3rem);
    }
}

@media (max-width: 63.99rem) {
    .pp-hero__visual {
        min-height: 27rem;
    }
}

@media (max-width: 47.99rem) {
    .pp-hero {
        padding-top: 2.7rem;
    }

    .pp-hero__visual {
        min-height: 24rem;
    }

    .pp-hero-photo {
        inset: 1rem 3.6rem 2.4rem 0;
    }

    .pp-ai-card {
        width: min(20rem, 80%);
    }

    .pp-floating-note--one {
        right: .15rem;
    }

    .pp-example__visual {
        max-width: 21rem;
    }

    .pp-example__visual img {
        max-height: 24rem;
    }
}



.reveal-delay-1 { --delay: 70ms; }
.reveal-delay-2 { --delay: 140ms; }
.reveal-delay-3 { --delay: 210ms; }
.reveal-delay-4 { --delay: 280ms; }
