@font-face {
    font-family: "Clear Sans";
    src: url("../fonts/clearsans-light.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Clear Sans";
    src: url("../fonts/clearsans-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Clear Sans";
    src: url("../fonts/clearsans-bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --surface-tint: #ffffff;
    --surface-dark: #111111;
    --surface-dark-soft: #1a1a1a;
    --text: #171717;
    --muted: #686158;
    --line: rgba(23, 23, 23, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --accent: #ee7203;
    --accent-deep: #bb5802;
    --accent-soft: rgba(238, 114, 3, 0.12);
    --accent-soft-strong: rgba(238, 114, 3, 0.22);
    --shadow: 0 14px 34px rgba(28, 22, 16, 0.06);
    --shadow-dark: 0 18px 40px rgba(28, 22, 16, 0.1);
    --radius-xl: 0;
    --radius-lg: 0;
    --radius-md: 0;
    --radius-sm: 0;
    --shell: 1180px;
    --gutter: 1.25rem;
    --content-pad: 2rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    line-height: 1.5;
}

::selection {
    color: #fff;
    background: var(--accent);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.shell {
    width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
    margin: 0 auto;
}

.landing-view {
    display: block;
}

.application-view {
    display: none;
}

body.is-application-only .landing-view {
    display: none;
}

body.is-application-only .application-view {
    display: block;
    min-height: 100vh;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 1.8rem 0 3.6rem;
    background: transparent;
}

.hero::before {
    content: none;
}

.hero__grid,
.split-section {
    display: grid;
    gap: 1.5rem;
}

.hero__grid {
    justify-content: stretch;
}

.section-stack {
    display: grid;
    gap: 1.5rem;
    padding: 0 var(--content-pad);
}

.hero__content {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    row-gap: 0.55rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 0;
    border-radius: var(--radius-xl);
    color: var(--text);
    box-shadow: none;
}

.hero__content .visual-card {
    box-shadow: none;
}

.brand-line {
    margin: 0;
    padding: 0 1.5rem 1rem 1.5rem;
}

.brand-line img {
    display: block;
    width: min(14rem, 58vw);
    height: auto;
    transform: translateX(-5px);
}

.eyebrow,
.section-kicker,
.quiz-step__count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    background: rgba(238, 114, 3, 0.08);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

h1 {
    margin-top: 0;
    max-width: none;
    margin-right: 0;
    font-size: 1.4em;
    line-height: 1.6em;
    letter-spacing: -0.04em;
    white-space: pre-line;
}

h2 {
    font-size: clamp(2rem, 5.2vw, 3.5rem);
    margin-right: 0;
}

h3 {
    font-size: clamp(1.3rem, 3.6vw, 1.7rem);
}

.hero__lead,
.section-intro p,
.section-copy p,
.info-card p,
.timeline__item p,
.application-intro p,
.field small,
.privacy-box,
.feedback p {
    color: var(--muted);
}

.hero__lead {
    max-width: 32rem;
    margin: 0;
    font-size: clamp(1.08rem, 3.75vw, 1.48rem);
    line-height: 1.34;
    color: var(--text);
    font-weight: 400;
}

.hero__lead strong {
    font-weight: 700;
    white-space: nowrap;
}

.fact-list {
    display: grid;
    gap: 0.5rem;
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

.fact-list li {
    padding: 0;
    border: 0;
    background: transparent;
    font-weight: 700;
    line-height: 1.3;
}

.hero__actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.hero__actions {
    margin-top: 0;
}

.hero__actions .button {
    width: 100%;
    font-size: 0.94rem;
}

.hero__actions {
    display: none;
}

.hero__visual {
    width: 100%;
    margin-top: 0;
}

.hero__visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3.5rem;
    padding: 0.9rem 1.5rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: none;
}

.button--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 8px 18px rgba(238, 114, 3, 0.14);
}

.button--secondary,
.button--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.button--full {
    width: 100%;
}

.visual-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 0;
    background: #ffffff;
    box-shadow: var(--shadow-dark);
}

.visual-card--compact {
    min-height: 16rem;
}

.section {
    position: relative;
    overflow: hidden;
    padding: 3.6rem 0;
    border-top: 0;
}

.landing-view main > .section > .shell {
    position: relative;
    z-index: 1;
}

.landing-view main > .section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.landing-view main > .section:nth-of-type(odd)::before {
    background:
        linear-gradient(180deg, rgba(238, 114, 3, 0.06), rgba(238, 114, 3, 0) 72%),
        radial-gradient(circle at top right, rgba(238, 114, 3, 0.08), transparent 42%);
}

.landing-view main > .section:nth-of-type(even)::before {
    background:
        linear-gradient(180deg, rgba(23, 23, 23, 0.035), rgba(23, 23, 23, 0) 74%),
        radial-gradient(circle at top left, rgba(23, 23, 23, 0.04), transparent 40%);
}

.section--light {
    background: transparent;
}

.section--panel {
    min-height: 100vh;
    padding: 2.2rem 0 7rem;
    color: var(--text);
    background: #ffffff;
}

.section-intro {
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.section-copy {
    display: grid;
    gap: 1rem;
}

.section-copy p {
    margin: 0;
}

.section-copy--about {
    max-width: 44rem;
    gap: 0.65rem;
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

.section-copy--about p {
    line-height: 1.55;
}

.benefits-layout {
    display: grid;
    gap: 1.5rem;
}

.benefits-layout .visual-card {
    width: 100%;
}

.benefits-layout .card-grid {
    max-width: 58rem;
    margin: 0 auto;
}

.section-stack > .visual-card {
    width: 100%;
    max-width: 46rem;
}

.section-intro--narrow {
    max-width: 46rem;
}

.card-grid,
.checklist,
.quiz-summary,
.form-grid {
    display: grid;
    gap: 1rem;
}

.card-grid {
    margin-top: 0;
}

.info-card {
    padding: 1.4rem;
    background: #ffffff;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.timeline {
    display: grid;
    gap: 1rem;
    margin-top: 0;
}

.timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.1rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.timeline--requirements .timeline__item:last-child {
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.timeline__item--single h3 {
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    line-height: 1.3;
}

.timeline__icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 1.15rem;
}

.checklist {
    margin-top: 1.5rem;
}

.checklist__item {
    padding: 1.1rem 1.2rem;
    background: #ffffff;
    border: 0;
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    font-weight: 700;
}

.section-cta {
    margin-top: 1rem;
}

.application-shell {
    display: grid;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.application-panel {
    padding: 1.4rem;
    background: #ffffff;
    border: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.application-intro p,
.section--panel .section-kicker,
.section--panel .application-intro h2 {
    color: var(--text);
}

.section--panel .section-kicker {
    background: rgba(238, 114, 3, 0.08);
}

.quiz-progress {
    height: 0.5rem;
    margin-bottom: 1.25rem;
    background: rgba(23, 23, 23, 0.08);
    overflow: hidden;
    border-radius: 0;
}

.quiz-progress__bar {
    width: 0;
    height: 100%;
    background: var(--accent);
    transition: width 220ms ease;
}

.quiz-step {
    display: none;
}

.quiz-step.is-active {
    display: block;
}

.quiz-step__header {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
}

.quiz-step__header h3 {
    line-height: 1.6;
}

.option-grid {
    display: grid;
    gap: 0.85rem;
}

.option-card {
    position: relative;
    display: block;
    padding: 1.1rem 1.15rem;
    color: var(--text);
    background: #f8f3ed;
    border: 0;
    border-left: 0;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: none;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.option-card:hover {
    background: #ffffff;
    box-shadow: var(--shadow);
}

.option-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.option-card:has(input:checked) {
    background: rgba(238, 114, 3, 0.08);
    border-color: transparent;
    box-shadow: inset 0 0 0 2px rgba(238, 114, 3, 0.22);
    color: var(--text);
}

.quiz-step__actions {
    margin-top: 1rem;
}

.quiz-summary {
    margin-bottom: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.quiz-summary__item {
    padding: 1rem;
    background: #fbf8f4;
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: none;
}

.quiz-summary__item span {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-deep);
}

.quiz-summary__item p {
    margin: 0.35rem 0 0;
    color: var(--text);
    font-weight: 700;
}

.application-form {
    display: none;
}

.application-form.is-visible {
    display: block;
}

.form-grid {
    margin-top: 1rem;
    gap: 1.25rem;
}

.field {
    display: grid;
    gap: 0.45rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: var(--radius-md);
    color: var(--text);
    backdrop-filter: none;
    box-shadow: none;
}

.field span,
.field strong {
    font-weight: 800;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(24, 33, 38, 0.16);
    border-radius: var(--radius-sm);
    background: #ffffff;
}

.field--upload strong {
    display: block;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(24, 33, 38, 0.16);
    background: #ffffff;
}

.field--upload {
    position: relative;
}

.field--upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.privacy-box {
    margin-top: 1rem;
    padding: 1rem 0 0;
    background: transparent;
    border: 0;
    border-radius: var(--radius-md);
    color: var(--text);
    box-shadow: none;
    border-top: 1px solid rgba(24, 33, 38, 0.08);
}

.application-panel .button--ghost {
    color: var(--text);
    border-color: rgba(23, 23, 23, 0.1);
}

.application-panel .button--ghost:hover,
.application-panel .button--ghost:focus-visible {
    background: #f5eee7;
}

.checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}

.checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.08rem;
}

.feedback {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    border-left: 0;
    box-shadow: none;
}

.quiz-step .feedback {
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.feedback--error {
    background: #f8e1dc;
    color: #7a1f16;
    border: 1px solid rgba(154, 45, 34, 0.18);
}

.feedback--success {
    background: #e5f2ea;
    color: #1f5d3f;
    border: 1px solid rgba(31, 93, 63, 0.16);
}

.field-error {
    margin: 0.2rem 0 0;
    color: #9a2d22;
    font-weight: 700;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.is-hidden {
    display: none;
}

.mobile-cta {
    position: fixed;
    right: var(--content-pad);
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    left: var(--content-pad);
    z-index: 50;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 0;
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(28, 22, 16, 0.12);
}

.mobile-cta.is-hidden {
    opacity: 0;
    visibility: hidden;
}

body.is-application-only .mobile-cta {
    display: none;
}

.site-footer {
    padding: 1.5rem 0 2.5rem;
    background: #ffffff;
}

.site-footer__inner {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.site-footer__inner a {
    color: var(--muted);
    font-size: 0.95rem;
    text-decoration: none;
}

.site-footer__inner a:hover,
.site-footer__inner a:focus-visible {
    color: var(--text);
}

.jobs-overview-page {
    background: #ffffff;
}

.jobs-overview-hero {
    padding: 2.4rem 0 2rem;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(238, 114, 3, 0.07), rgba(238, 114, 3, 0) 72%),
        #fff;
}

.jobs-overview-brand-line {
    margin: 0;
    padding: 0 0 1rem;
}

.jobs-overview-hero__inner {
    display: grid;
    gap: 1.4rem;
}

.jobs-overview-brand {
    display: inline-flex;
    width: fit-content;
}

.jobs-overview-brand img {
    width: min(14rem, 58vw);
    height: auto;
    transform: translateX(-5px);
}

.jobs-overview-copy {
    display: grid;
    gap: 0.8rem;
    max-width: 50rem;
}

.jobs-overview-copy h1 {
    font-size: clamp(2.2rem, 6vw, 4.6rem);
    line-height: 0.98;
}

.jobs-overview-copy p {
    margin: 0;
    max-width: 44rem;
    color: var(--muted);
    font-size: clamp(1.02rem, 2.2vw, 1.2rem);
    line-height: 1.5;
}

.jobs-overview-eyebrow {
    margin: 0;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jobs-overview-main {
    padding-top: 2rem;
}

.jobs-overview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

.jobs-overview-meta a {
    color: var(--muted);
}

.jobs-grid {
    display: grid;
    gap: 1.25rem;
}

.job-card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.job-card__link {
    display: grid;
    color: inherit;
}

.job-card__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f1ee;
}

.job-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-card__body {
    display: grid;
    gap: 0.9rem;
    padding: 1.35rem;
}

.job-card__company {
    margin: 0;
    color: var(--accent);
    font-weight: 700;
}

.job-card__body h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.job-card__facts {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
}

.job-card__cta {
    width: fit-content;
    min-width: 16rem;
}

.jobs-empty {
    display: grid;
    gap: 0.8rem;
    padding: 1.6rem;
    border: 1px solid var(--line);
    background: #fff;
}

.jobs-empty p {
    margin: 0;
    color: var(--muted);
}

@media (min-width: 720px) {
    :root {
        --gutter: 1.75rem;
        --content-pad: 2rem;
    }

    .hero {
        padding-top: 3rem;
    }

    .brand-line {
        padding-right: 1.9rem;
        padding-left: 1.9rem;
    }

    .jobs-overview-hero {
        padding: 3.2rem 0 2.4rem;
    }

    .jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .job-card__link {
        grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
        min-height: 100%;
    }

    .job-card__media {
        aspect-ratio: auto;
        min-height: 100%;
        max-width: 18rem;
    }

    .job-card__body {
        padding: 1.6rem;
    }

    .hero__content {
        padding: 1.9rem;
    }

    .section--panel {
        padding-top: 3rem;
    }

    .split-section {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
    }

    .split-section--reverse {
        grid-template-columns: 0.85fr 1.15fr;
    }

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

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

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

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

@media (min-width: 980px) {
    .section {
        padding: 4.4rem 0;
    }

    .section-stack {
        gap: 1.75rem;
        padding: 0;
    }

    .section-intro {
    }

    .section-intro h2 {
        max-width: none;
        margin-right: 0;
        line-height: 0.98;
    }

    .hero__grid {
        gap: 2rem;
    }

    .hero__content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
            "visual headline"
            "visual lead"
            "visual facts"
            "visual actions";
        column-gap: 2.75rem;
        row-gap: 0.38rem;
        padding: 2.6rem 0 2.2rem;
        align-items: start;
    }

    .brand-line {
        padding: 0 0 1rem;
    }

    .brand-line img {
        width: 16rem;
        transform: none;
    }

    .hero__content h1 {
        grid-area: headline;
        margin-top: 0;
        margin-right: 0;
        font-size: clamp(2.78rem, 3.55vw, 4.3rem);
        line-height: 1.03;
        max-width: none;
    }

    .hero__lead {
        grid-area: lead;
        margin: 0;
        font-size: 1.36rem;
        line-height: 1.3;
        max-width: none;
    }

    .hero__visual {
        grid-area: visual;
        width: 100%;
        max-width: 32rem;
        margin: 0;
        justify-self: start;
        aspect-ratio: 0.98 / 1;
    }

    .hero__visual img {
        height: 100%;
        object-position: 56% center;
    }

    .hero__actions {
        display: flex;
        grid-area: actions;
        margin-top: 0;
        align-self: start;
    }

    .hero__actions .button {
        width: auto;
        min-width: 18rem;
        font-size: 0.9rem;
    }

    .fact-list {
        grid-area: facts;
        align-self: start;
        gap: 0.55rem;
        max-width: none;
        margin: 0;
        padding-top: 0;
    }

    .fact-list li {
        font-size: 0.98rem;
    }

    .hero__visual.visual-card {
        width: 100%;
    }

    #benefits .section-stack {
        gap: 1.6rem;
    }

    #benefits .section-intro {
        margin-bottom: 0.1rem;
    }

    .benefits-layout .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        margin: 0;
    }

    #benefits .benefits-layout {
        max-width: none;
    }

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

    #day .section-stack {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 2.75rem;
        row-gap: 1.25rem;
        align-items: start;
    }

    #day .section-intro {
        grid-column: 1 / -1;
    }

    #day .visual-card {
        grid-column: 1;
        max-width: none;
        width: 100%;
        height: 100%;
        min-height: 100%;
        align-self: stretch;
    }

    #day .visual-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #day .timeline {
        grid-column: 2;
        margin-top: 0;
    }

    #requirements .section-stack {
        gap: 1.3rem;
    }

    #requirements .section-intro {
        max-width: none;
    }

    #requirements .timeline {
        max-width: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2rem;
        row-gap: 0;
    }

    #about .section-stack {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
        column-gap: 3.1rem;
        row-gap: 1.1rem;
        align-items: start;
    }

    #about .section-intro {
        grid-column: 1 / -1;
        max-width: 46rem;
        margin-bottom: 0;
    }

    #about .section-intro h2 {
        font-size: clamp(2.55rem, 3.2vw, 3.8rem);
        line-height: 0.99;
    }

    #about .visual-card {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        max-width: 24.5rem;
        height: clamp(22rem, 33vw, 27rem);
        align-self: center;
        justify-self: start;
    }

    #about .visual-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    #about .section-copy {
        grid-column: 2;
        grid-row: 2;
        max-width: none;
        gap: 1.05rem;
        align-self: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    #about .section-copy p {
        font-size: 1.28rem;
        line-height: 1.66;
        color: #4f4a44;
    }

    .application-shell {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .application-panel {
        padding: 1.7rem;
    }

    .mobile-cta {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: auto;
        width: min(calc(100% - (var(--gutter) * 2)), 28rem);
        margin: 0 auto 2.4rem;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
