.crew-landing-page {
    background: var(--yf-cream, #f5eddf);
}

.crew-page {
    --crew-navy: var(--yf-navy, #14224a);
    --crew-cyan: var(--yf-water, #3bb4c4);
    --crew-cyan-dark: #238897;
    --crew-green: var(--yf-olive, #7e9c85);
    --crew-cream: var(--yf-cream, #f5eddf);
    --crew-white: var(--yf-cream-card, #fffdf8);
    --crew-text: var(--color-text-soft, #334155);
    overflow: hidden;
    color: var(--crew-text);
    background: var(--crew-cream);
}

.crew-page * {
    box-sizing: border-box;
}

.crew-page a {
    text-underline-offset: .18em;
}

.crew-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.crew-hero {
    position: relative;
    padding: clamp(56px, 8vw, 112px) 0 clamp(72px, 9vw, 128px);
    background:
        radial-gradient(circle at 84% 14%, rgba(27, 184, 201, .19), transparent 24rem),
        linear-gradient(180deg, #fffaf4 0%, var(--crew-cream) 100%);
}

.crew-hero::after {
    content: "";
    position: absolute;
    right: -7vw;
    bottom: -70px;
    left: -7vw;
    height: 120px;
    background: var(--crew-cyan);
    border-radius: 50% 50% 0 0 / 55% 55% 0 0;
    transform: rotate(-2deg);
}

.crew-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: center;
}

.crew-eyebrow {
    margin: 0 0 16px;
    color: var(--crew-green);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.crew-hero h1,
.crew-heading h2,
.crew-signup h2 {
    margin: 0;
    color: var(--crew-navy);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .98;
}

.crew-hero h1 {
    max-width: 760px;
    font-size: clamp(3.4rem, 7vw, 6.9rem);
}

.crew-hero h1 span {
    color: var(--crew-cyan);
}

.crew-hero__lead {
    max-width: 660px;
    margin: clamp(24px, 3vw, 38px) 0 0;
    font-size: clamp(1.18rem, 1.7vw, 1.5rem);
    line-height: 1.55;
}

.crew-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.crew-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.crew-button:hover,
.crew-button:focus-visible {
    transform: translateY(-2px);
}

.crew-button--primary {
    color: #fff;
    background: var(--crew-green);
    box-shadow: 0 18px 35px rgba(73, 105, 51, .2);
}

.crew-button--primary:hover,
.crew-button--primary:focus-visible {
    color: #fff;
    background: #5f8346;
    box-shadow: 0 20px 42px rgba(73, 105, 51, .28);
}

.crew-button--secondary {
    color: var(--crew-navy);
    border-color: rgba(8, 43, 75, .14);
    background: rgba(255, 255, 255, .68);
}

.crew-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    color: #617086;
    font-size: .92rem;
    font-weight: 700;
}

.crew-trust li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--crew-cyan-dark);
}

.crew-hero__visual {
    position: relative;
    z-index: 1;
}

.crew-hero__halo {
    position: absolute;
    inset: 8% -10% -8% 4%;
    border-radius: 54% 46% 48% 52%;
    background: linear-gradient(145deg, rgba(27, 184, 201, .28), rgba(111, 149, 84, .12));
    transform: rotate(6deg);
}

.crew-hero__card {
    position: relative;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(8, 43, 75, .08);
    border-radius: 38px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 28px 70px rgba(8, 43, 75, .16);
    transform: rotate(2deg);
}

.crew-hero__card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.crew-hero__card-kicker {
    position: absolute;
    z-index: 2;
    top: 32px;
    left: 32px;
    margin: 0;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--crew-navy);
    background: rgba(255, 255, 255, .92);
    font-size: .78rem;
    font-weight: 800;
}

.crew-hero__stamp {
    position: absolute;
    right: 28px;
    bottom: 28px;
    padding: 13px 16px;
    border-radius: 16px;
    color: var(--crew-navy);
    background: #fff7ef;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: .85;
    box-shadow: 0 10px 30px rgba(8, 43, 75, .16);
}

.crew-hero__stamp strong {
    color: var(--crew-cyan);
    font-size: 1.35em;
}

.crew-benefits,
.crew-ways,
.crew-life,
.crew-process,
.crew-signup,
.crew-faq {
    position: relative;
    padding: clamp(76px, 9vw, 132px) 0;
}

.crew-benefits {
    padding-top: clamp(120px, 13vw, 180px);
    background: var(--crew-cyan);
}

.crew-benefits .crew-eyebrow,
.crew-benefits .crew-heading h2,
.crew-benefits .crew-heading > p:last-child {
    color: #fff;
}

.crew-heading {
    max-width: 720px;
}

.crew-heading--center {
    margin-inline: auto;
    text-align: center;
}

.crew-heading h2,
.crew-signup h2 {
    font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.crew-heading > p:last-child,
.crew-signup__intro > p {
    margin: 24px 0 0;
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    line-height: 1.65;
}

.crew-card-grid {
    display: grid;
    gap: 20px;
}

.crew-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 50px;
}

.crew-info-card {
    min-height: 270px;
    padding: 34px;
    border-radius: 28px;
    background: var(--crew-white);
    box-shadow: 0 20px 46px rgba(8, 43, 75, .12);
}

.crew-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--crew-navy);
    font-size: 1.5rem;
}

.crew-info-card h3,
.crew-action-card h3,
.crew-process__list h3,
.crew-impact h3 {
    margin: 24px 0 10px;
    color: var(--crew-navy);
    font-size: 1.35rem;
    line-height: 1.2;
}

.crew-info-card p,
.crew-action-card p,
.crew-process__list p,
.crew-impact p {
    margin: 0;
    line-height: 1.6;
}

.crew-ways {
    background: var(--crew-white);
}

.crew-ways__grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(48px, 8vw, 110px);
    align-items: start;
}

.crew-card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crew-action-card {
    display: flex;
    gap: 20px;
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(8, 43, 75, .1);
    border-radius: 24px;
    background: #fbf7f0;
}

.crew-action-card > span {
    flex: 0 0 auto;
    color: var(--crew-cyan-dark);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.crew-action-card h3 {
    margin-top: 0;
}

.crew-ways__note {
    grid-column: 2;
    margin: 4px 0 0;
    padding: 18px 22px;
    border-left: 4px solid var(--crew-green);
    border-radius: 0 16px 16px 0;
    color: #4e6075;
    background: #f4f8f0;
    font-size: .94rem;
    line-height: 1.6;
}

.crew-ways__note strong {
    color: var(--crew-navy);
}

.crew-life {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 10%, rgba(27, 184, 201, .12), transparent 25%),
        radial-gradient(circle at 90% 86%, rgba(111, 149, 84, .13), transparent 27%),
        var(--crew-cream);
}

.crew-heading--wide {
    max-width: 930px;
}

.crew-situations {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 54px;
}

.crew-situation-card {
    position: relative;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(8, 43, 75, .09);
    border-radius: 28px;
    background: rgba(255, 254, 253, .94);
    box-shadow: 0 18px 44px rgba(8, 43, 75, .09);
}

.crew-situation-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: var(--crew-cyan);
}

.crew-situation-card:nth-child(2n)::before {
    background: var(--crew-green);
}

.crew-situation-card__tag {
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--crew-cyan-dark);
    background: rgba(27, 184, 201, .1);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .045em;
    line-height: 1.2;
    text-transform: uppercase;
}

.crew-situation-card:nth-child(2n) .crew-situation-card__tag {
    color: #55783f;
    background: rgba(111, 149, 84, .12);
}

.crew-situation-card h3 {
    margin: 24px 0 12px;
    color: var(--crew-navy);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    line-height: 1.2;
}

.crew-situation-card > p:not(.crew-situation-card__idea) {
    margin: 0;
    line-height: 1.65;
}

.crew-situation-card__idea {
    margin: auto 0 0;
    padding: 18px 0 0;
    color: #51657c;
    font-size: .9rem;
    line-height: 1.55;
}

.crew-situation-card__idea strong {
    color: var(--crew-navy);
}

.crew-life__cta {
    display: flex;
    max-width: 1050px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 48px auto 0;
    padding: 28px 30px;
    border: 2px solid rgba(27, 184, 201, .55);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(8, 43, 75, .08);
}

.crew-life__cta > div {
    display: grid;
    gap: 6px;
}

.crew-life__cta strong {
    color: var(--crew-navy);
    font-size: 1.28rem;
}

.crew-life__cta span {
    line-height: 1.55;
}

.crew-life__cta .crew-button {
    flex: 0 0 auto;
}

.crew-process {
    background: var(--crew-cream);
}

.crew-process__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 54px 0 0;
    padding: 0;
    list-style: none;
}

.crew-process__list li {
    padding: 30px;
    border-top: 4px solid var(--crew-cyan);
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, .62);
}

.crew-process__list li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--crew-navy);
    font-weight: 900;
}

.crew-process__list h3 {
    margin-top: 22px;
}

.crew-impact {
    display: flex;
    max-width: 900px;
    align-items: center;
    gap: 24px;
    margin: 50px auto 0;
    padding: 28px 34px;
    border: 2px solid var(--crew-cyan);
    border-radius: 24px;
    background: #fff;
}

.crew-impact > span {
    color: var(--crew-cyan);
    font-size: 3rem;
}

.crew-impact h3 {
    margin-top: 0;
}

.crew-signup {
    color: #fff;
    background: var(--crew-navy);
}

.crew-signup__grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(48px, 7vw, 90px);
    align-items: start;
}

.crew-signup .crew-eyebrow,
.crew-signup h2 {
    color: #fff;
}

.crew-signup__intro > p:not(.crew-eyebrow):not(.crew-fineprint) {
    color: rgba(255, 255, 255, .86);
}

.crew-qr-card {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 22px;
    align-items: center;
    margin-top: 36px;
    padding: 18px;
    border-radius: 24px;
    color: var(--crew-navy);
    background: #fff;
}

.crew-qr-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.crew-qr-card strong,
.crew-qr-card span {
    display: block;
}

.crew-qr-card strong {
    margin-bottom: 7px;
    font-size: 1.05rem;
}

.crew-qr-card span {
    color: #5c6d82;
    font-size: .92rem;
    line-height: 1.5;
}

.crew-qr-card a {
    color: var(--crew-cyan-dark);
    font-weight: 800;
}

.crew-fineprint {
    color: rgba(255, 255, 255, .66);
    font-size: .82rem !important;
    line-height: 1.55 !important;
}

.crew-form-card {
    padding: clamp(26px, 4vw, 44px);
    border-radius: 32px;
    color: var(--crew-text);
    background: var(--crew-white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.crew-form,
.crew-form label {
    display: grid;
    gap: 8px;
}

.crew-form {
    gap: 22px;
}

.crew-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.crew-form label,
.crew-form legend {
    color: var(--crew-navy);
    font-size: .92rem;
    font-weight: 800;
}

.crew-form input[type="text"],
.crew-form input[type="email"],
.crew-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1.5px solid #ced8dc;
    border-radius: 13px;
    color: var(--crew-navy);
    background: #fff;
    font: inherit;
    font-weight: 500;
}

.crew-form textarea {
    min-height: 120px;
    resize: vertical;
}

.crew-form input:focus,
.crew-form textarea:focus {
    border-color: var(--crew-cyan-dark);
    outline: 3px solid rgba(27, 184, 201, .18);
}

.crew-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.crew-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.crew-check-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid #d7e0e2;
    border-radius: 13px;
    background: #f7faf7;
    cursor: pointer;
}

.crew-check-grid input,
.crew-consent input {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    accent-color: var(--crew-green);
}

.crew-optional {
    color: #7b8999;
    font-size: .78rem;
    font-weight: 600;
}

.crew-consent {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 11px !important;
    color: #56677a !important;
    font-size: .8rem !important;
    font-weight: 500 !important;
    line-height: 1.5;
}

.crew-consent a {
    color: var(--crew-cyan-dark);
    font-weight: 800;
}

.crew-form__submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.crew-required {
    margin: -10px 0 0;
    color: #798796;
    font-size: .76rem;
}

.crew-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

.crew-notice {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 14px;
    line-height: 1.5;
}

.crew-notice strong {
    display: block;
    color: var(--crew-navy);
}

.crew-notice--success {
    border: 1px solid #b8d7a4;
    background: #eff8e9;
}

.crew-notice--error {
    border: 1px solid #e4b7b2;
    background: #fff1ef;
}

.crew-faq {
    background: var(--crew-white);
}

.crew-faq__grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: clamp(48px, 8vw, 110px);
}

.crew-faq__items details {
    border-bottom: 1px solid #d9e0df;
}

.crew-faq__items summary {
    position: relative;
    padding: 22px 52px 22px 0;
    color: var(--crew-navy);
    font-size: 1.08rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.crew-faq__items summary::-webkit-details-marker {
    display: none;
}

.crew-faq__items summary::after {
    content: "+";
    position: absolute;
    top: 18px;
    right: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--crew-cyan);
    font-size: 1.3rem;
}

.crew-faq__items details[open] summary::after {
    content: "−";
}

.crew-faq__items details p {
    margin: -6px 0 22px;
    padding-right: 52px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    /* A QR code cannot be scanned usefully from the same mobile device. */
    .crew-qr-card {
        display: none;
    }

    .crew-hero__grid,
    .crew-ways__grid,
    .crew-signup__grid,
    .crew-faq__grid {
        grid-template-columns: 1fr;
    }

    .crew-hero__copy {
        text-align: center;
    }

    .crew-hero__lead,
    .crew-heading,
    .crew-signup__intro {
        margin-inline: auto;
    }

    .crew-actions,
    .crew-trust {
        justify-content: center;
    }

    .crew-hero__visual {
        width: min(560px, 88%);
        margin-inline: auto;
    }

    .crew-card-grid--three,
    .crew-process__list {
        grid-template-columns: 1fr;
    }

    .crew-ways__note {
        grid-column: auto;
    }

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

    .crew-life__cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .crew-info-card {
        min-height: auto;
    }
}

@media (max-width: 620px) {
    .crew-shell {
        width: min(100% - 28px, 1180px);
    }

    .crew-hero {
        padding-top: 42px;
    }

    .crew-hero__grid {
        gap: 44px;
    }

    .crew-hero h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .crew-button,
    .crew-actions {
        width: 100%;
    }

    .crew-trust {
        display: grid;
        gap: 8px;
    }

    .crew-hero__visual {
        width: 100%;
    }

    .crew-hero__card {
        padding: 10px;
        border-radius: 26px;
    }

    .crew-hero__card img {
        border-radius: 19px;
    }

    .crew-hero__card-kicker {
        top: 20px;
        left: 20px;
    }

    .crew-hero__stamp {
        right: 18px;
        bottom: 18px;
    }

    .crew-card-grid--two,
    .crew-situations,
    .crew-form__row,
    .crew-check-grid {
        grid-template-columns: 1fr;
    }

    .crew-action-card {
        min-height: auto;
    }

    .crew-situation-card {
        min-height: auto;
        padding: 26px 24px;
    }

    .crew-situation-card__idea {
        margin-top: 24px;
    }

    .crew-life__cta {
        padding: 24px;
    }

    .crew-impact {
        align-items: flex-start;
        padding: 24px;
    }

    .crew-form-card {
        border-radius: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .crew-button {
        transition: none;
    }
}
