:root {
    --ivory: #f5f1e8;
    --paper: #fffdf8;
    --ink: #21172b;
    --teal: #063e3b;
    --orange: #f15a36;
    --mustard: #f4c542;
    --line: rgba(33, 23, 43, 0.28);
    --muted: #655e66;
    --white: #fffdf8;
    --error: #a62320;
    --shadow: 0 26px 70px rgba(33, 23, 43, 0.12);
    --radius: 4px;
    --shell: 1180px;
    --sans: "Open Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
    --brand-script: "Pacifico", "Brush Script MT", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background-color: var(--ivory);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

img {
    height: auto;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

::selection {
    color: var(--white);
    background: var(--orange);
}

.shell {
    width: min(var(--shell), calc(100% - 56px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(245, 241, 232, 0.96);
    border-bottom: 1px solid transparent;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(33, 23, 43, 0.05);
}

.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    width: max-content;
    color: var(--ink);
    text-decoration: none;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.065em;
}

.brand-name {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.065em;
}

.brand-domain {
    display: inline-block;
    color: var(--orange);
    font-family: var(--brand-script);
    font-size: 0.92em;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    transform: translateY(0.02em);
}

.domain-dot {
    display: inline-block;
    color: var(--orange);
    font-family: var(--sans);
    font-weight: 900;
    line-height: 1;
    transform: translateY(-0.02em);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3vw, 46px);
}

.site-nav a {
    position: relative;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 650;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.15;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible,
.footer-contact a:focus-visible,
.footer-bottom a:focus-visible,
.faq-heading a:focus-visible {
    outline: 3px solid rgba(241, 90, 54, 0.35);
    outline-offset: 4px;
}

.button--dark {
    color: var(--white);
    background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--teal);
    box-shadow: 0 12px 28px rgba(6, 62, 59, 0.2);
}

.button--orange {
    color: var(--white);
    background: var(--orange);
}

.button--orange:hover,
.button--orange:focus-visible {
    background: #d94726;
    box-shadow: 0 12px 30px rgba(241, 90, 54, 0.24);
}

.header-cta {
    min-width: 132px;
    white-space: nowrap;
}

.hero {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(560px, 1.42fr);
    gap: clamp(42px, 5vw, 72px);
    align-items: start;
    padding-block: 58px 72px;
    border-bottom: 1px solid var(--line);
}

.hero-copy {
    padding-top: 26px;
}

.eyebrow,
.section-kicker {
    margin-bottom: 22px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 490px;
    margin-bottom: 26px;
    font-size: clamp(54px, 4.6vw, 72px);
    font-weight: 770;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.hero h1 em {
    display: block;
    margin-top: 6px;
    color: var(--orange);
    font-family: var(--serif);
    font-size: 1.08em;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.hero-subtitle {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-intro {
    max-width: 440px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--ink);
    text-underline-offset: 7px;
    font-size: 13px;
    font-weight: 720;
}

.text-link:hover {
    color: var(--orange);
}

.hero-note {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.hero-note span {
    margin-right: 8px;
    color: var(--orange);
}

.business-stage {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(120px, 0.62fr) minmax(285px, 1.38fr) minmax(120px, 0.62fr);
    grid-template-rows: 1fr 1fr;
    gap: 22px 18px;
    align-items: center;
    align-content: center;
}

.sector-photo {
    position: relative;
    z-index: 4;
    margin: 0;
}

.sector-photo img {
    width: 100%;
    height: clamp(150px, 15vw, 205px);
    object-fit: cover;
    border-radius: var(--radius);
    filter: saturate(0.82) contrast(1.03);
    box-shadow: 0 15px 34px rgba(33, 23, 43, 0.1);
}

.sector-photo figcaption {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 740;
    text-align: center;
}

.sector-photo--retail,
.sector-photo--manufacturing {
    align-self: end;
}

.sector-photo--professional,
.sector-photo--local {
    align-self: start;
}

.sector-photo--retail {
    grid-area: 1 / 1;
}

.sector-photo--professional {
    grid-area: 2 / 1;
}

.sector-photo--manufacturing {
    grid-area: 1 / 3;
}

.sector-photo--local {
    grid-area: 2 / 3;
}

.sector-photo--retail img {
    object-position: 50% 50%;
}

.sector-photo--professional img {
    object-position: 50% 46%;
}

.sector-photo--manufacturing img {
    object-position: 52% 50%;
}

.sector-photo--local img {
    object-position: 48% 38%;
}

.browser-preview {
    position: relative;
    z-index: 4;
    grid-area: 1 / 2 / 3 / 3;
    align-self: center;
    max-height: 548px;
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: 11px;
    background: var(--paper);
    box-shadow: 0 24px 60px rgba(33, 23, 43, 0.16);
}

.browser-bar {
    height: 34px;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 0 10px;
    background: var(--ink);
}

.browser-bar>span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mustard);
}

.browser-bar>div {
    min-width: 0;
    flex: 1;
    margin-left: 4px;
    padding: 5px 10px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    font-size: 8px;
}

.preview-content {
    padding: 14px;
}

.preview-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(33, 23, 43, 0.15);
    font-size: 7px;
}

.preview-nav strong {
    font-size: 10px;
}

.preview-hero {
    padding: 21px 16px;
    margin-block: 12px;
    background: #ece6de;
}

.preview-hero p {
    margin-bottom: 7px;
    font-family: var(--serif);
    font-size: 24px;
    line-height: 0.98;
}

.preview-hero span {
    display: block;
    max-width: 180px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 8px;
}

.preview-hero button,
.preview-enquire {
    padding: 8px 12px;
    border: 0;
    color: var(--white);
    background: var(--ink);
    font-size: 8px;
    font-weight: 700;
}

.preview-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.preview-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 7px 0;
    border-top: 1px solid rgba(33, 23, 43, 0.12);
}

.preview-list i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--orange);
    font-size: 7px;
    font-style: normal;
}

.preview-list span,
.preview-list strong,
.preview-list small {
    display: block;
}

.preview-list strong {
    font-size: 9px;
}

.preview-list small {
    color: var(--muted);
    font-size: 7px;
}

.preview-enquire {
    display: flex;
    justify-content: space-between;
    margin-top: 11px;
    background: var(--teal);
}

.journey {
    overflow: visible;
}

.journey path,
.promise-route svg path {
    stroke: var(--orange);
    stroke-width: 3;
    stroke-linecap: round;
}

.journey circle,
.promise-route svg circle {
    fill: var(--ivory);
    stroke: var(--orange);
    stroke-width: 3;
}

.journey--hero {
    position: absolute;
    z-index: 5;
    inset: 28px 0;
    width: 100%;
    height: calc(100% - 56px);
    pointer-events: none;
}

.journey--hero path {
    stroke-width: 2.25;
}

.journey--hero circle {
    stroke-width: 2.25;
}

.sector-index {
    padding-block: 38px 48px;
    border-bottom: 1px solid var(--line);
}

.sector-index-heading {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: end;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.sector-index-heading h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 39px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.sector-index-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

.sector-index ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
}

.sector-index li {
    display: grid;
    gap: 10px;
    min-height: 106px;
    padding: 20px 22px;
    border-right: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
}

.sector-index li:first-child {
    padding-left: 0;
}

.sector-index li:last-child {
    border-right: 0;
}

.sector-index li span {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}

.always-on {
    display: grid;
    grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1.35fr);
    gap: clamp(56px, 6vw, 92px);
    align-items: center;
    padding-block: 92px;
}

.always-on h2,
.section-heading h2 {
    margin-bottom: 20px;
    font-family: var(--serif);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.always-on h2 {
    max-width: 500px;
    font-size: clamp(46px, 4vw, 60px);
}

.section-heading h2 {
    font-size: clamp(42px, 4.8vw, 68px);
}

.always-on-copy>p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.7;
}

.promise-route {
    position: relative;
}

.promise-route svg {
    width: 100%;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -4px;
}

.promise-grid div {
    display: grid;
    gap: 8px;
}

.promise-grid strong {
    font-size: 15px;
}

.promise-grid span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.anatomy {
    min-height: 570px;
    display: grid;
    grid-template-columns: 0.82fr 1.15fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    padding: 62px;
    color: var(--white);
    background: var(--teal);
    border-radius: var(--radius);
}

.section-kicker--light {
    color: var(--mustard);
}

.anatomy-copy h2 {
    margin-bottom: 26px;
    font-size: clamp(44px, 4.5vw, 62px);
    line-height: 0.93;
    letter-spacing: -0.055em;
}

.anatomy-copy>p:last-child {
    max-width: 220px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.65;
}

.page-blueprint {
    display: grid;
    place-items: center;
}

.blueprint-browser {
    width: 100%;
    max-width: 270px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.blueprint-nav,
.blueprint-intro,
.blueprint-features,
.blueprint-work,
.blueprint-map,
.blueprint-action {
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.blueprint-nav {
    height: 28px;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 7px;
}

.blueprint-nav i {
    width: 5px;
    height: 5px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.blueprint-intro {
    min-height: 102px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 12px;
    padding: 12px;
    border-top: 0;
}

.blueprint-intro>span {
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.blueprint-intro div {
    display: grid;
    align-content: center;
    gap: 10px;
}

.blueprint-intro i {
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
}

.blueprint-intro i:last-child {
    width: 56%;
}

.blueprint-features,
.blueprint-work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 15px 12px;
    border-top: 0;
}

.blueprint-features i {
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.blueprint-work {
    grid-template-columns: repeat(4, 1fr);
}

.blueprint-work i {
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.blueprint-map {
    height: 78px;
    display: grid;
    place-items: center;
    border-top: 0;
    background-image: linear-gradient(35deg, transparent 49%, rgba(255, 255, 255, 0.17) 50%, transparent 51%), linear-gradient(-40deg, transparent 49%, rgba(255, 255, 255, 0.15) 50%, transparent 51%);
    background-size: 31px 28px;
}

.blueprint-map span {
    font-size: 34px;
}

.blueprint-action {
    height: 40px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.anatomy-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.anatomy-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.anatomy-list li:last-child {
    border: 0;
}

.anatomy-list>li>span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    font-size: 10px;
}

.anatomy-list strong {
    font-size: 14px;
}

.anatomy-list p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

.process {
    padding-block: 106px 80px;
}

.section-heading {
    max-width: 650px;
}

.timeline {
    position: relative;
    margin-top: 48px;
}

.journey--timeline {
    position: absolute;
    z-index: 2;
    top: 72px;
    width: 100%;
    height: 76px;
    pointer-events: none;
}

.timeline ol {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
}

.timeline li {
    position: relative;
    min-height: 250px;
    padding: 0 18px;
    border-right: 1px solid var(--line);
}

.timeline li::before {
    position: absolute;
    z-index: 3;
    top: 104px;
    left: 50%;
    width: 16px;
    height: 16px;
    content: "";
    background: var(--ivory);
    border: 3px solid var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.timeline li:nth-child(2)::before {
    top: 116px;
}

.timeline li:nth-child(3)::before {
    top: 101px;
}

.timeline li:nth-child(4)::before {
    top: 118px;
}

.timeline li:nth-child(5)::before,
.timeline li:nth-child(7)::before {
    top: 102px;
}

.timeline li:nth-child(6)::before {
    top: 115px;
}

.timeline li:first-child {
    padding-left: 0;
}

.timeline li:last-child {
    padding-right: 0;
    border: 0;
}

.timeline li>span {
    display: block;
    margin-bottom: 76px;
    font-family: var(--serif);
    font-size: clamp(40px, 4.6vw, 58px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.timeline strong {
    font-size: 13px;
}

.timeline p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.eligibility {
    position: relative;
    min-height: 390px;
    display: grid;
    grid-template-columns: 1.08fr 0.86fr minmax(280px, 0.9fr);
    grid-template-rows: 1fr auto;
    gap: 26px 42px;
    align-items: center;
    padding: 50px 54px 28px;
    overflow: hidden;
    background: var(--mustard);
    border-radius: var(--radius);
}

.eligibility-copy h2 {
    max-width: 400px;
    margin-bottom: 18px;
    font-family: var(--serif);
    font-size: clamp(44px, 4.3vw, 62px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.eligibility-copy>p:last-child {
    max-width: 300px;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.document-list {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.document-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    font-weight: 720;
}

.document-list li::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    background: var(--orange);
}

.document-envelope {
    position: relative;
    width: min(100%, 330px);
    min-height: 250px;
    align-self: center;
    justify-self: end;
    overflow: hidden;
}

.document {
    position: absolute;
    right: 7%;
    bottom: 72px;
    width: 72%;
    height: 158px;
    padding: 18px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(33, 23, 43, 0.24);
    box-shadow: 0 12px 25px rgba(73, 45, 14, 0.13);
    transform: rotate(4deg);
}

.document--back {
    right: 21%;
    bottom: 82px;
    background: #e6dfd3;
    transform: rotate(-7deg);
}

.document small,
.document strong,
.document span {
    display: block;
}

.document small {
    margin-bottom: 10px;
    font-size: 7px;
    text-transform: uppercase;
}

.document strong {
    margin-bottom: 14px;
    font-family: var(--serif);
    font-size: 14px;
}

.document span {
    width: 100%;
    height: 1px;
    margin-top: 9px;
    background: rgba(33, 23, 43, 0.28);
}

.envelope-flap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 122px;
    background: #9f7247;
    clip-path: polygon(0 25%, 50% 66%, 100% 25%, 100% 100%, 0 100%);
}

.privacy-note {
    grid-column: 1 / 4;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
    padding-top: 24px;
    border-top: 1px solid rgba(33, 23, 43, 0.22);
}

.privacy-note svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.privacy-note p {
    max-width: 760px;
    margin: 0;
    font-size: 11px;
    line-height: 1.65;
}

.outcomes {
    display: grid;
    grid-template-columns: 0.92fr 1.45fr;
    gap: 64px;
    align-items: center;
    padding-block: 90px 110px;
}

.outcome-words {
    display: grid;
    gap: 0;
}

.outcome-words>div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.outcome-words>div:first-of-type {
    padding-top: 0;
}

.outcome-words>div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.outcome-words strong {
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.outcome-words span {
    position: relative;
    max-width: 280px;
    padding-left: 34px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.outcome-words span::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 20px;
    height: 1px;
    content: "";
    background: var(--orange);
}

.outcome-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.outcome-gallery figure {
    min-width: 0;
    margin: 0;
}

.outcome-gallery img {
    width: 100%;
    aspect-ratio: 0.82;
    object-fit: cover;
    border-radius: var(--radius);
    filter: saturate(0.82);
}

.outcome-gallery figure:nth-child(2) img {
    object-position: 50% 44%;
}

.outcome-gallery figure:nth-child(4) img {
    object-position: 50% 35%;
}

.outcome-gallery figcaption {
    margin-top: 8px;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.faq-section {
    display: grid;
    grid-template-columns: 0.72fr 1.35fr;
    gap: 100px;
    padding-block: 88px 110px;
    border-top: 1px solid var(--line);
}

.faq-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-heading h2 {
    margin-bottom: 22px;
    font-family: var(--serif);
    font-size: clamp(47px, 4.8vw, 66px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.faq-heading>p:last-child {
    color: var(--muted);
    font-size: 13px;
}

.faq-heading a {
    color: var(--ink);
    text-underline-offset: 4px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 720;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 650px;
    padding: 0 48px 25px 0;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.final-cta {
    position: relative;
    min-height: 320px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
    gap: 58px;
    align-items: center;
    padding: 60px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
}

.final-cta>div,
.final-cta>ul {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    max-width: 560px;
    margin-bottom: 26px;
    font-size: clamp(38px, 4.6vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.final-cta>div>p:last-child {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

.final-cta ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
}

.final-cta li {
    display: grid;
    gap: 5px;
    padding: 14px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
}

.final-cta li:last-child {
    border: 0;
}

.final-cta li span {
    color: var(--white);
    font-size: 21px;
    font-weight: 750;
}

.site-footer {
    min-height: 520px;
    margin-top: 86px;
    padding: 76px 0 28px;
    color: var(--white);
    background: var(--teal);
}

.footer-inner {
    display: grid;
    gap: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 70px;
    align-items: end;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-statement h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(46px, 5.3vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.footer-contact {
    justify-self: end;
    text-align: right;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.footer-contact a {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    color: var(--white);
    text-underline-offset: 7px;
    font-size: 17px;
    font-weight: 720;
}

.footer-wordmark {
    position: relative;
    display: block;
    width: 100%;
    padding: 34px 0 44px;
    overflow: hidden;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    text-decoration: none;
}

.footer-wordmark-text {
    display: inline-flex;
    align-items: baseline;
    width: max-content;
    font-size: clamp(72px, 12vw, 165px);
    font-kerning: normal;
    font-feature-settings: "kern" 1, "liga" 1;
    line-height: 0.86;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
}

.footer-wordmark-name {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 900;
    letter-spacing: -0.058em;
    line-height: 1;
}

.footer-wordmark-separator {
    display: inline-block;
    margin-inline: 0.075em 0.09em;
    color: var(--orange);
    font-family: var(--sans);
    font-size: 0.34em;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    transform: translateY(-0.04em);
}

.footer-wordmark-domain {
    display: inline-block;
    color: var(--orange);
    font-family: var(--brand-script);
    font-size: 1.02em;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    transform: translateY(0.02em);
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    padding-top: 26px;
}

.footer-bottom p,
.footer-bottom small {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

.footer-bottom p a {
    color: var(--white);
    text-underline-offset: 4px;
}

.footer-bottom nav {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-bottom nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    text-decoration: none;
}

.footer-bottom nav a:hover,
.footer-bottom nav a:focus-visible {
    color: var(--mustard);
}

.application-page-body {
    background: var(--ivory);
}

.application-site-header {
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
}

.application-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.application-back-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.application-back-link:hover,
.application-back-link:focus-visible {
    color: var(--orange);
}

.application-page-hero {
    padding: 82px 0 74px;
    border-bottom: 1px solid var(--line);
}

.application-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.62fr);
    gap: 90px;
    align-items: end;
}

.application-page-hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(54px, 6.4vw, 86px);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.application-hero-copy>p {
    max-width: 480px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.application-hero-copy ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.application-hero-copy li {
    display: grid;
    gap: 3px;
    padding-right: 14px;
}

.application-hero-copy strong {
    font-size: 16px;
}

.application-hero-copy span {
    color: var(--muted);
    font-size: 9px;
}

.application-page-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
    gap: 76px;
    align-items: start;
    padding-block: 86px 110px;
}

.application-preparation {
    position: sticky;
    top: 34px;
}

.application-preparation h2 {
    max-width: 310px;
    margin-bottom: 34px;
    font-family: var(--serif);
    font-size: clamp(37px, 3.6vw, 52px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.application-preparation ol {
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.application-preparation li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.application-preparation li>span {
    color: var(--orange);
    font-family: var(--serif);
    font-size: 12px;
}

.application-preparation li p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.application-preparation li strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 12px;
}

.application-privacy-note {
    margin-top: 28px;
    padding: 22px;
    color: var(--white);
    background: var(--teal);
}

.application-privacy-note strong {
    font-size: 12px;
}

.application-privacy-note p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 10px;
    line-height: 1.6;
}

.application-panel {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid rgba(33, 23, 43, 0.2);
    box-shadow: 0 30px 90px rgba(33, 23, 43, 0.08);
}

.application-panel-header {
    padding: 46px 48px 36px;
    border-bottom: 1px solid var(--line);
}

.application-panel-header h2 {
    margin-bottom: 11px;
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.application-panel-header p:last-child {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.application-panel .application-form {
    padding: 0 48px 48px;
}

.application-panel .form-errors {
    padding-inline: 48px;
}

.field-guidance {
    color: var(--muted) !important;
    line-height: 1.5;
}

.verification-summary {
    display: grid;
    gap: 8px;
    padding: 24px 26px;
    margin-bottom: 26px;
    color: var(--white);
    background: var(--teal);
}

.verification-summary p {
    margin: 0;
    color: var(--mustard);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.verification-summary strong {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.1;
}

.verification-summary>span {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.55;
}

.verification-summary a {
    width: max-content;
    margin-top: 5px;
    color: var(--white);
    font-size: 10px;
    text-underline-offset: 4px;
}

.file-field span b {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.application-confirmation {
    min-height: 620px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.application-confirmation>span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 38px;
    color: var(--white);
    background: var(--teal);
    border-radius: 50%;
    font-size: 22px;
}

.application-confirmation h2 {
    max-width: 600px;
    margin-bottom: 20px;
    font-family: var(--serif);
    font-size: clamp(48px, 5.5vw, 70px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.application-confirmation>p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 34px;
    color: var(--muted);
    line-height: 1.7;
}

.application-page-footer {
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.68);
    background: var(--teal);
}

.application-page-footer>div {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.application-page-footer p {
    margin: 0;
    color: var(--white);
    font-weight: 750;
}

.application-page-footer p span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 500;
}

.application-page-footer a {
    color: var(--white);
    text-underline-offset: 4px;
    font-size: 11px;
}

.form-errors {
    padding: 20px 42px;
    color: #721d1d;
    background: #fff0ed;
    border-bottom: 1px solid #e6b8ae;
    font-size: 13px;
}

.form-errors ul {
    padding-left: 18px;
    margin: 8px 0 0;
}

.application-form {
    padding: 0 42px 42px;
}

.application-form fieldset {
    min-width: 0;
    padding: 0 0 38px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.application-form legend {
    float: left;
    width: 100%;
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 34px 0 0;
    margin-bottom: 26px;
    font-size: 18px;
    font-weight: 780;
}

.application-form legend+* {
    clear: both;
}

.application-form legend span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--orange);
    font-family: var(--serif);
    font-size: 12px;
    font-weight: 500;
}

.application-form legend em {
    margin-left: auto;
    color: var(--muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 550;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.field {
    display: grid;
    gap: 8px;
}

.field--wide,
.file-field--wide {
    grid-column: 1 / -1;
}

.field>span,
.file-field>span {
    font-size: 12px;
    font-weight: 730;
}

.field span em,
.file-field span em {
    color: var(--muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(33, 23, 43, 0.3);
    border-radius: 1px;
    outline: none;
    color: var(--ink);
    background: #fff;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
    min-height: 48px;
}

.field textarea {
    min-height: 128px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 90, 54, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--error);
}

.field>small,
.file-field>em,
.consent-error {
    color: var(--error);
    font-size: 11px;
    font-style: normal;
}

.file-field {
    position: relative;
    min-height: 140px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 24px;
    overflow: hidden;
    border: 1px dashed rgba(33, 23, 43, 0.4);
    cursor: pointer;
    text-align: center;
    background: rgba(245, 241, 232, 0.55);
}

.file-field:hover,
.file-field:focus-within {
    border-color: var(--orange);
    background: rgba(244, 197, 66, 0.12);
}

.file-field--error {
    border-color: var(--error);
}

.file-field strong {
    font-size: 13px;
}

.file-field small {
    color: var(--muted);
    font-size: 10px;
}

.file-field input {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
}

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

.consent-field {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    padding-top: 28px;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    line-height: 1.55;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--orange);
}

.consent-error {
    display: block;
    margin: 8px 0 0 30px;
}

.form-submit {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
}

.form-submit p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.has-js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 0.84fr 1.28fr;
        gap: 38px;
    }

    .business-stage {
        min-height: 530px;
        grid-template-columns: 110px minmax(250px, 1fr) 110px;
        gap: 24px 12px;
    }

    .sector-photo img {
        height: 160px;
    }

    .anatomy {
        grid-template-columns: 0.8fr 1fr 1fr;
        padding: 48px 42px;
    }

    .timeline p {
        font-size: 9px;
    }

    .eligibility {
        gap: 26px 34px;
        padding-inline: 44px;
    }
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        display: grid;
        gap: 7px;
        place-content: center;
        padding: 0;
        border: 1px solid var(--line);
        background: transparent;
        cursor: pointer;
    }

    .nav-toggle>span:not(.sr-only) {
        width: 20px;
        height: 1px;
        background: var(--ink);
        transition: transform 180ms ease;
    }

    .nav-toggle[aria-expanded="true"]>span:nth-of-type(2) {
        transform: translateY(4px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"]>span:nth-of-type(3) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: 77px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 20px 28px 26px;
        background: var(--ivory);
        border-bottom: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(33, 23, 43, 0.12);
        font-size: 15px;
    }

    .header-cta {
        justify-self: end;
    }

    .hero {
        min-height: 0;
        grid-template-columns: 1fr;
        padding-top: 58px;
    }

    .hero-copy {
        max-width: 680px;
        padding-top: 0;
    }

    .hero h1 {
        max-width: 690px;
        font-size: clamp(56px, 9vw, 74px);
    }

    .business-stage {
        min-height: 590px;
        grid-template-columns: minmax(120px, 0.65fr) minmax(300px, 1.4fr) minmax(120px, 0.65fr);
    }

    .always-on,
    .outcomes,
    .faq-section {
        grid-template-columns: 1fr;
    }

    .always-on {
        gap: 50px;
    }

    .anatomy {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .anatomy-list {
        grid-column: 1 / 3;
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
    }

    .anatomy-list li {
        display: block;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 0;
        padding-right: 14px;
    }

    .anatomy-list li:last-child {
        border-right: 0;
    }

    .anatomy-list>li>span {
        margin-bottom: 12px;
    }

    .timeline {
        overflow-x: auto;
        padding-bottom: 18px;
    }

    .timeline ol,
    .journey--timeline {
        min-width: 980px;
    }

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

    .document-envelope {
        grid-column: 1 / 3;
        width: min(100%, 360px);
        min-height: 250px;
        justify-self: center;
    }

    .document {
        width: 72%;
        right: 7%;
    }

    .document--back {
        right: 21%;
    }

    .envelope-flap {
        right: 0;
        width: 100%;
    }

    .privacy-note {
        grid-column: 1 / 3;
    }

    .outcomes,
    .faq-section {
        gap: 54px;
    }

    .faq-heading {
        position: static;
    }

    .final-cta {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .footer-wordmark-text {
        font-size: clamp(66px, 12vw, 110px);
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .footer-bottom nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .application-page-hero-grid,
    .application-page-layout {
        grid-template-columns: 1fr;
    }

    .application-page-hero-grid {
        gap: 42px;
    }

    .application-hero-copy {
        max-width: 620px;
    }

    .application-page-layout {
        gap: 54px;
        padding-top: 70px;
    }

    .application-preparation {
        position: static;
    }

    .application-preparation h2 {
        max-width: 500px;
    }

    .application-preparation ol {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .application-preparation li {
        align-content: start;
        border-right: 1px solid var(--line);
    }

    .application-preparation li:not(:first-child) {
        padding-left: 20px;
    }

    .application-preparation li:last-child {
        border-right: 0;
    }

    .application-privacy-note {
        max-width: 540px;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(100% - 32px, var(--shell));
    }

    .header-inner {
        min-height: 70px;
        gap: 12px;
    }

    .brand {
        font-size: 22px;
    }

    .site-nav {
        top: 69px;
    }

    .header-cta {
        min-width: 0;
        min-height: 42px;
        padding: 10px 13px;
        gap: 8px;
        font-size: 10px;
    }

    .hero {
        gap: 52px;
        padding-block: 48px 62px;
    }

    .hero h1 {
        font-size: clamp(51px, 16vw, 72px);
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .business-stage {
        min-height: 800px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr auto;
        gap: 18px 12px;
    }

    .browser-preview {
        width: min(330px, 92%);
        justify-self: center;
        grid-area: 2 / 1 / 3 / 3;
    }

    .sector-photo {
        align-self: stretch;
    }

    .sector-photo img {
        height: 120px;
        aspect-ratio: 1.35;
    }

    .sector-photo--retail {
        grid-area: 1 / 1;
    }

    .sector-photo--manufacturing {
        grid-area: 1 / 2;
    }

    .sector-photo--professional {
        grid-area: 3 / 1;
    }

    .sector-photo--local {
        grid-area: 3 / 2;
    }

    .journey--hero {
        display: none;
    }

    .sector-index-heading {
        grid-template-columns: 1fr;
    }

    .sector-index-heading p {
        text-align: left;
    }

    .sector-index ol {
        grid-template-columns: 1fr 1fr;
    }

    .sector-index li:nth-child(2) {
        border-right: 0;
    }

    .sector-index li:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .sector-index li:nth-child(3) {
        padding-left: 0;
    }

    .always-on {
        padding-block: 72px;
    }

    .always-on h2 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .section-heading h2 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .promise-route svg {
        display: none;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .promise-grid div {
        padding: 20px 0;
        border-top: 1px solid var(--line);
    }

    .anatomy {
        grid-template-columns: 1fr;
        padding: 42px 26px;
    }

    .anatomy-copy,
    .page-blueprint,
    .anatomy-list {
        grid-column: 1;
    }

    .anatomy-copy>p:last-child {
        max-width: none;
    }

    .blueprint-browser {
        max-width: 310px;
    }

    .anatomy-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .anatomy-list li {
        display: grid;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .eligibility {
        grid-template-columns: 1fr;
        padding: 40px 26px 24px;
    }

    .document-envelope,
    .privacy-note {
        grid-column: 1;
    }

    .document-envelope {
        width: min(100%, 320px);
        min-height: 240px;
        justify-self: center;
    }

    .document {
        width: 72%;
        right: 7%;
    }

    .document--back {
        right: 21%;
    }

    .envelope-flap {
        right: 0;
        width: 100%;
    }

    .outcome-words>div {
        padding-block: 16px;
    }

    .outcome-words span {
        max-width: 250px;
    }

    .outcome-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .outcome-gallery img {
        aspect-ratio: 1.12;
    }

    .faq-section {
        padding-block: 75px 90px;
    }

    .final-cta {
        min-height: 0;
        gap: 36px;
        align-content: start;
        padding: 40px 28px;
    }

    .final-cta ul {
        grid-template-columns: 1fr;
    }

    .final-cta li {
        grid-template-columns: 50px 1fr;
        align-items: center;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .site-footer {
        min-height: 0;
        margin-top: 64px;
        padding: 60px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 42px;
    }

    .footer-statement h2 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .footer-contact {
        justify-self: start;
        text-align: left;
    }

    .footer-wordmark {
        padding: 28px 0 32px;
    }

    .footer-wordmark-text {
        font-size: clamp(48px, 15vw, 84px);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom nav {
        grid-column: 1;
        grid-row: auto;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .application-header-inner {
        min-height: 70px;
    }

    .application-back-link {
        font-size: 10px;
    }

    .application-page-hero {
        padding: 58px 0 54px;
    }

    .application-page-hero h1 {
        font-size: clamp(47px, 14vw, 64px);
    }

    .application-hero-copy>p {
        font-size: 13px;
    }

    .application-hero-copy ul {
        gap: 12px;
    }

    .application-page-layout {
        gap: 42px;
        padding-block: 58px 74px;
    }

    .application-preparation ol {
        grid-template-columns: 1fr;
    }

    .application-preparation li,
    .application-preparation li:not(:first-child) {
        padding: 18px 0;
        border-right: 0;
    }

    .application-panel-header {
        padding: 34px 20px 28px;
    }

    .application-panel-header h2 {
        font-size: 40px;
    }

    .application-panel .application-form {
        padding: 0 20px 30px;
    }

    .application-panel .form-errors {
        padding-inline: 20px;
    }

    .verification-summary {
        padding: 21px 20px;
    }

    .verification-summary strong {
        font-size: 24px;
    }

    .application-confirmation {
        min-height: 520px;
        padding: 42px 24px;
    }

    .application-confirmation h2 {
        font-size: 46px;
    }

    .application-page-footer>div {
        align-items: flex-start;
        flex-direction: column;
    }

    .application-page-footer p span {
        display: block;
        margin-top: 4px;
    }

    .application-form {
        padding: 0 20px 30px;
    }

    .form-errors {
        padding-inline: 20px;
    }

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

    .field--wide,
    .file-field--wide {
        grid-column: 1;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit .button {
        width: 100%;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .has-js .reveal {
        opacity: 1;
        transform: none;
    }
}
