.pathway-page,
.pathway-page * {
    letter-spacing: 0;
}

.pathway-page {
    --pathway-ink: #17321d;
    --pathway-muted: #5b6c5f;
    --pathway-line: #dce5dd;
    --pathway-surface: #ffffff;
    --pathway-soft: #f2f6f1;
    --pathway-warm: #fff7d4;
    background: #f7f9f6;
    color: var(--pathway-ink);
}

.pathway-intro {
    padding: 48px 0 38px;
    border-bottom: 1px solid var(--pathway-line);
    background: var(--pathway-surface);
}

.pathway-intro::after,
.pathway-workspace::after,
.pathway-step::after,
.pathway-result-hero::after,
.pathway-result-content::after,
.pathway-recommendations::after,
.pathway-result-cta::after,
.pathway-result-disclaimer::after {
    display: none;
}

.pathway-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 56px;
    align-items: end;
}

.pathway-intro .eyebrow {
    margin-bottom: 14px;
}

.pathway-intro h1 {
    max-width: 760px;
    margin: 0;
    font-size: 3rem;
    line-height: 1.06;
}

.pathway-intro p {
    max-width: 520px;
    margin: 0 0 6px;
    color: var(--pathway-muted);
    font-size: 1.05rem;
}

.pathway-workspace {
    padding: 42px 0 76px;
}

.pathway-form {
    position: relative;
}

.pathway-progress {
    display: none;
    gap: 14px;
    margin-bottom: 18px;
}

.pathway-form.is-enhanced .pathway-progress {
    display: grid;
}

.pathway-progress > div:first-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.pathway-progress span {
    color: var(--pathway-muted);
    font-size: .88rem;
    font-weight: 700;
}

.pathway-progress strong {
    color: var(--brand-green);
    font-size: .95rem;
}

.pathway-progress__track {
    height: 5px;
    overflow: hidden;
    border-radius: 3px;
    background: #dfe8df;
}

.pathway-progress__track span {
    display: block;
    width: 12.5%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
    transition: width .25s ease;
}

.pathway-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.pathway-step-list {
    display: none;
    position: sticky;
    top: 104px;
    overflow: hidden;
    border: 1px solid var(--pathway-line);
    border-radius: 8px;
    background: var(--pathway-surface);
}

.pathway-form.is-enhanced .pathway-step-list {
    display: grid;
}

.pathway-step-list button {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 54px;
    padding: 9px 12px;
    border: 0;
    border-bottom: 1px solid var(--pathway-line);
    background: transparent;
    color: var(--pathway-muted);
    font: inherit;
    font-size: .84rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.pathway-step-list button:last-child {
    border-bottom: 0;
}

.pathway-step-list button span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--pathway-line);
    border-radius: 50%;
    background: var(--pathway-soft);
    color: var(--brand-green);
    font-size: .78rem;
}

.pathway-step-list button.is-active {
    background: var(--pathway-warm);
    color: var(--brand-green);
}

.pathway-step-list button.is-active span {
    border-color: var(--brand-orange);
    background: var(--brand-yellow);
}

.pathway-step-list button.is-complete span {
    border-color: var(--brand-green);
    background: var(--brand-green);
    color: #fff;
}

.pathway-panel {
    min-width: 0;
    padding: 38px;
    border: 1px solid var(--pathway-line);
    border-radius: 8px;
    background: var(--pathway-surface);
    box-shadow: 0 12px 34px rgba(4, 58, 13, .07);
}

.pathway-step {
    padding: 0 0 42px;
}

.pathway-step + .pathway-step {
    margin-top: 42px;
    padding-top: 42px;
    border-top: 1px solid var(--pathway-line);
}

.pathway-form.is-enhanced .pathway-step {
    display: none;
    min-height: 590px;
    padding: 0;
}

.pathway-form.is-enhanced .pathway-step.is-active {
    display: block;
}

.pathway-form.is-enhanced .pathway-step + .pathway-step {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.pathway-step__heading {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 30px;
}

.pathway-step__number {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 8px;
    background: var(--brand-green);
    color: #fff;
    font-weight: 850;
}

.pathway-step__heading h2 {
    margin: 0 0 8px;
    font-size: 1.75rem;
    line-height: 1.16;
}

.pathway-step__heading p {
    max-width: 670px;
    margin: 0;
    color: var(--pathway-muted);
}

.pathway-step__heading .pathway-required-note {
    margin-top: 10px;
    color: #8b4f08;
    font-size: .8rem;
    font-weight: 750;
}

.pathway-required-note > span {
    color: #a62d22;
}

.pathway-required {
    display: inline;
    margin-left: 5px;
    color: #8b4f08 !important;
    font-size: .72rem !important;
    font-weight: 750 !important;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
}

.choice-grid + .choice-grid,
.pathway-field-grid + .choice-grid,
.field-validation-error + .choice-grid {
    margin-top: 28px;
}

.choice-grid legend {
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 2px;
    color: var(--brand-green);
    font-size: .94rem;
    font-weight: 800;
}

.choice-grid.has-client-error {
    padding: 10px;
    border: 1px solid #b73535;
    border-radius: 8px;
    background: #fff7f7;
}

.choice-grid.has-client-error legend::after {
    content: " Choose an option to continue.";
    color: #9b2323;
    font-weight: 700;
}

.choice-tile {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 66px;
    cursor: pointer;
}

.choice-tile input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
}

.choice-tile span {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    padding: 13px 14px 13px 42px;
    overflow-wrap: anywhere;
    border: 1px solid var(--pathway-line);
    border-radius: 8px;
    background: #fff;
    color: var(--pathway-ink);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.35;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.choice-tile span::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 17px;
    height: 17px;
    border: 2px solid #9cad9f;
    border-radius: 4px;
    background: #fff;
}

.choice-tile input[type="radio"] + span::before {
    border-radius: 50%;
}

.choice-tile input:checked + span {
    border-color: #d99b05;
    background: var(--pathway-warm);
    box-shadow: inset 0 0 0 1px rgba(234, 127, 18, .22);
}

.choice-tile input:checked + span::before {
    border-color: var(--brand-green);
    background: var(--brand-green);
    box-shadow: inset 0 0 0 3px #fff;
}

.choice-tile input[type="checkbox"]:checked + span::before {
    box-shadow: none;
}

.choice-tile input[type="checkbox"]:checked + span::after {
    content: "";
    position: absolute;
    left: 19px;
    width: 7px;
    height: 4px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}

.choice-tile input:focus-visible + span {
    outline: 3px solid rgba(234, 127, 18, .28);
    outline-offset: 2px;
}

.pathway-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.pathway-field-grid--rates {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.pathway-field--wide {
    grid-column: 1 / -1;
    max-width: 380px;
}

.pathway-field {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
}

.pathway-field label {
    color: var(--brand-green);
    font-size: .94rem;
    font-weight: 800;
}

.pathway-field label span {
    color: var(--pathway-muted);
    font-size: .82rem;
    font-weight: 600;
}

.pathway-field input {
    width: 100%;
    min-width: 0;
    border-radius: 8px;
}

.pathway-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--pathway-line);
}

.pathway-actions--end {
    justify-content: flex-end;
}

.wizard-next,
.wizard-previous {
    display: none;
}

.pathway-form.is-enhanced .wizard-next,
.pathway-form.is-enhanced .wizard-previous {
    display: inline-flex;
}

.pathway-actions .btn {
    border-radius: 8px;
}

.pathway-actions .btn-outline {
    color: var(--brand-green);
}

.pathway-consents {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.pathway-check {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--pathway-ink);
    cursor: pointer;
}

.pathway-check input {
    width: 19px;
    height: 19px;
    margin-top: 2px;
    accent-color: var(--brand-green);
}

.pathway-disclaimer {
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid #e7cf78;
    border-left: 4px solid var(--brand-orange);
    border-radius: 8px;
    background: #fffbea;
}

.pathway-disclaimer strong {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-green);
}

.pathway-disclaimer p {
    margin: 0;
    color: #4d5c50;
    font-size: .88rem;
    line-height: 1.6;
}

.pathway-validation-summary {
    margin-bottom: 18px;
    padding: 15px 18px;
    border: 1px solid #cf6d6d;
    border-radius: 8px;
    background: #fff4f4;
    color: #8b1d1d;
}

.pathway-validation-summary:empty,
.pathway-validation-summary.validation-summary-valid,
.field-validation-error:empty {
    display: none;
}

.pathway-validation-summary ul {
    margin: 0;
    padding-left: 20px;
}

.field-validation-error {
    display: block;
    color: #9b2323;
    font-size: .84rem;
    font-weight: 700;
}

.input-validation-error {
    border-color: #b73535;
    background: #fffafa;
}

.pathway-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

[data-backup-loads][hidden] {
    display: none;
}

.pathway-result-hero {
    padding: 52px 0 48px;
    border-bottom: 1px solid var(--pathway-line);
    background: var(--brand-green);
}

.pathway-result-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr);
    gap: 64px;
    align-items: end;
}

.pathway-result-hero .eyebrow {
    color: var(--brand-yellow);
}

.pathway-result-hero h1 {
    max-width: 860px;
    margin: 8px 0 18px;
    color: #fff;
    font-size: 3rem;
    line-height: 1.08;
}

.pathway-result-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
}

.pathway-result-hero p strong {
    color: #fff;
}

.pathway-result-hero__persona {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: rgba(255, 255, 255, .64) !important;
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.pathway-result-hero__persona strong {
    color: var(--brand-yellow) !important;
}

.pathway-result-hero__explanation {
    font-size: 1.04rem;
}

.pathway-result-hero__region {
    margin-top: 18px;
    font-size: .88rem;
}

.pathway-result-hero__aside {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.pathway-result-hero__aside > span {
    display: block;
    color: rgba(255, 255, 255, .64);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pathway-result-hero__aside > strong {
    display: block;
    margin: 4px 0 10px;
    color: var(--brand-yellow);
    font-size: 1.5rem;
}

.pathway-result-hero__aside p {
    margin: 0 0 16px;
    font-size: .88rem;
}

.pathway-result-hero__aside a {
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    text-decoration: underline;
}

.pathway-result-content,
.pathway-recommendations,
.pathway-faq-guidance,
.pathway-next-step,
.pathway-result-cta,
.pathway-result-disclaimer {
    padding: 64px 0;
}

.pathway-section-intro {
    display: grid;
    max-width: 760px;
    gap: 8px;
    margin-bottom: 30px;
}

.pathway-section-intro > span {
    color: var(--brand-orange);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.pathway-section-intro h2 {
    margin: 0;
    font-size: 2rem;
}

.pathway-section-intro p {
    max-width: 680px;
    margin: 2px 0 0;
    color: var(--pathway-muted);
}

.pathway-result-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.pathway-score-card,
.pathway-signal-card,
.pathway-recommendation {
    min-width: 0;
    border: 1px solid var(--pathway-line);
    border-radius: 8px;
    background: #fff;
}

.pathway-score-card {
    grid-column: span 2;
    min-height: 170px;
    padding: 22px;
}

.pathway-score-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}

.pathway-score-card h2,
.pathway-score-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.3;
}

.pathway-score-card__top strong {
    color: var(--brand-green);
    font-size: 2rem;
    line-height: 1;
}

.pathway-score-card p {
    margin: 12px 0 0;
    color: var(--pathway-muted);
    font-size: .8rem;
    font-weight: 700;
}

.pathway-score-track {
    height: 7px;
    margin-top: 26px;
    overflow: hidden;
    border-radius: 4px;
    background: #e2e9e2;
}

.pathway-score-track span {
    display: block;
    width: var(--pathway-score);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
}

.pathway-signal-card {
    grid-column: span 3;
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
}

.pathway-signal-card span {
    color: var(--pathway-muted);
    font-size: .9rem;
    font-weight: 700;
}

.pathway-signal-card strong {
    color: var(--brand-green);
    font-size: 1.2rem;
}

.pathway-result-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    margin-top: 64px;
}

.pathway-primary-analysis {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 54px;
    margin-top: 64px;
    padding: 36px;
    border: 1px solid var(--pathway-line);
    border-left: 6px solid var(--brand-orange);
    border-radius: 8px;
    background: #fff;
}

.pathway-primary-analysis .pathway-result-heading p {
    margin: 14px 0 0;
    color: var(--pathway-muted);
}

.pathway-secondary-considerations > span {
    display: block;
    margin-bottom: 12px;
    color: var(--brand-orange);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.pathway-secondary-considerations ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.pathway-secondary-considerations li {
    color: var(--pathway-ink);
}

.pathway-result-heading > span,
.pathway-result-cta__inner > div > span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-orange);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.pathway-result-heading h2,
.pathway-result-cta h2 {
    margin: 0;
    font-size: 2rem;
}

.pathway-result-list,
.pathway-check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.pathway-result-list li,
.pathway-check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--pathway-ink);
}

.pathway-result-list li::before,
.pathway-check-list li::before {
    content: "";
    position: absolute;
    top: .55em;
    left: 0;
    width: 10px;
    height: 10px;
    border: 3px solid var(--brand-yellow);
    border-radius: 50%;
    background: var(--brand-green);
}

.pathway-personas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.pathway-personas span {
    width: 100%;
    color: var(--pathway-muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pathway-personas strong {
    padding: 7px 10px;
    border: 1px solid var(--pathway-line);
    border-radius: 6px;
    background: var(--pathway-soft);
    color: var(--brand-green);
    font-size: .8rem;
}

.pathway-recommendations {
    border-top: 1px solid var(--pathway-line);
    background: #eef3ed;
}

.pathway-next-step {
    border-top: 1px solid var(--pathway-line);
    background: #fff;
}

.pathway-next-step__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 60px;
    align-items: center;
}

.pathway-next-step__inner > div:first-child > span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-orange);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.pathway-next-step h2 {
    margin: 0;
    font-size: 2.15rem;
}

.pathway-next-step p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--pathway-muted);
}

.pathway-next-step__actions {
    display: grid;
    gap: 14px;
    justify-items: stretch;
}

.pathway-next-step__actions .btn {
    border-radius: 8px;
    text-align: center;
}

.pathway-next-step__actions > a:not(.btn) {
    color: var(--brand-green);
    font-weight: 800;
    text-align: center;
    text-decoration: underline;
}

.pathway-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.pathway-recommendation {
    display: grid;
    min-height: 210px;
    align-content: start;
    padding: 24px;
}

.pathway-recommendation h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.25;
}

.pathway-recommendation p {
    margin: 0 0 20px;
    color: var(--pathway-muted);
}

.pathway-recommendation a {
    align-self: end;
    margin-top: auto;
    color: var(--brand-green);
    font-weight: 850;
}

.pathway-recommendation a span {
    margin-left: 5px;
    color: var(--brand-orange);
}

.pathway-faq-guidance {
    border-top: 1px solid var(--pathway-line);
    background: #fff;
}

.pathway-faq-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pathway-faq-links a {
    display: grid;
    min-height: 126px;
    align-content: start;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--pathway-line);
    border-radius: 8px;
    background: var(--pathway-soft);
    text-decoration: none;
}

.pathway-faq-links a:hover {
    border-color: var(--brand-orange);
    color: var(--brand-green);
}

.pathway-faq-links strong {
    color: var(--brand-green);
    line-height: 1.3;
}

.pathway-faq-links span {
    color: var(--pathway-muted);
    font-size: .88rem;
}

.pathway-result-cta {
    background: #fff;
}

.pathway-result-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr);
    gap: 52px;
    align-items: center;
    padding: 38px;
    border: 1px solid var(--pathway-line);
    border-left: 6px solid var(--brand-orange);
    border-radius: 8px;
}

.pathway-result-cta p {
    max-width: 700px;
    margin: 12px 0 0;
    color: var(--pathway-muted);
}

.pathway-result-cta__actions {
    display: grid;
    gap: 14px;
    justify-items: stretch;
}

.pathway-result-cta .btn {
    border-radius: 8px;
    text-align: center;
}

.pathway-text-link {
    color: var(--brand-green);
    font-weight: 800;
    text-align: center;
    text-decoration: underline;
}

.pathway-result-disclaimer {
    padding-top: 0;
    background: #fff;
}

.pathway-result-disclaimer .container {
    padding: 20px 22px;
    border: 1px solid #e7cf78;
    border-radius: 8px;
    background: #fffbea;
}

.pathway-result-disclaimer strong {
    display: block;
    margin-bottom: 5px;
}

.pathway-result-disclaimer p {
    margin: 0;
    color: #4d5c50;
    font-size: .88rem;
}

@media (max-width: 940px) {
    .pathway-intro__inner,
    .pathway-result-hero__layout,
    .pathway-next-step__inner,
    .pathway-result-cta__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pathway-layout {
        grid-template-columns: 1fr;
    }

    .pathway-form.is-enhanced .pathway-step-list {
        position: static;
        display: flex;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .pathway-step-list button {
        flex: 0 0 54px;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 8px;
        border-right: 1px solid var(--pathway-line);
        border-bottom: 0;
        color: transparent;
        font-size: 0;
    }

    .pathway-result-columns {
        gap: 36px;
    }

    .pathway-faq-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .pathway-intro {
        padding: 34px 0 28px;
    }

    .pathway-intro h1,
    .pathway-result-hero h1 {
        font-size: 2.2rem;
    }

    .pathway-intro p {
        font-size: .98rem;
    }

    .pathway-workspace {
        padding: 24px 0 52px;
    }

    .pathway-panel {
        padding: 22px 16px;
    }

    .pathway-form.is-enhanced .pathway-step {
        min-height: 0;
    }

    .pathway-step__heading {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        margin-bottom: 24px;
    }

    .pathway-step__number {
        width: 42px;
        height: 42px;
        font-size: .82rem;
    }

    .pathway-step__heading h2 {
        font-size: 1.38rem;
    }

    .pathway-step__heading p {
        font-size: .9rem;
    }

    .choice-grid,
    .choice-grid--compact,
    .pathway-field-grid,
    .pathway-field-grid--rates,
    .pathway-result-columns,
    .pathway-recommendation-grid,
    .pathway-primary-analysis,
    .pathway-faq-links {
        grid-template-columns: 1fr;
    }

    .choice-tile {
        min-height: 58px;
    }

    .choice-tile span {
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .pathway-actions {
        position: sticky;
        bottom: 76px;
        z-index: 10;
        margin: 28px -16px -22px;
        padding: 14px 16px;
        border-top: 1px solid var(--pathway-line);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -10px 22px rgba(4, 58, 13, .06);
    }

    .pathway-actions .btn {
        flex: 1 1 auto;
        padding: 0 14px;
    }

    .pathway-actions--end .btn {
        flex-basis: 100%;
    }

    .pathway-result-hero,
    .pathway-result-content,
    .pathway-recommendations,
    .pathway-faq-guidance,
    .pathway-next-step,
    .pathway-result-cta {
        padding: 44px 0;
    }

    .pathway-result-grid {
        grid-template-columns: 1fr;
    }

    .pathway-score-card,
    .pathway-signal-card {
        grid-column: auto;
    }

    .pathway-score-card {
        min-height: 150px;
    }

    .pathway-signal-card {
        min-height: 76px;
    }

    .pathway-result-columns {
        margin-top: 44px;
    }

    .pathway-primary-analysis {
        gap: 30px;
        margin-top: 44px;
        padding: 24px 20px;
    }

    .pathway-result-columns > div + div {
        margin-top: 8px;
        padding-top: 34px;
        border-top: 1px solid var(--pathway-line);
    }

    .pathway-result-heading h2,
    .pathway-section-intro h2,
    .pathway-next-step h2,
    .pathway-result-cta h2 {
        font-size: 1.65rem;
    }

    .pathway-result-cta__inner {
        padding: 26px 20px;
    }

    .pathway-result-disclaimer {
        padding-bottom: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pathway-progress__track span,
    .choice-tile span {
        transition: none;
    }
}
