:root {
    color-scheme: light;
    --landing-ink: #101725;
    --landing-muted: #697386;
    --landing-line: #dce2ea;
    --landing-paper: #f5f7fa;
    --landing-white: #ffffff;
    --landing-night: #0c111b;
    --landing-night-soft: #151c28;
    --landing-blue: #2f6fed;
    --landing-green: #28b779;
    --landing-mint: #67e8a5;
    --landing-amber: #ffb454;
    --landing-danger: #ef5b5b;
    --landing-container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    color: var(--landing-ink);
    background: var(--landing-paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

body.is-menu-open {
    overflow: hidden;
}

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

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

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

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

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

.landing-container {
    width: calc(100vw - 48px);
    max-width: var(--landing-container);
    margin-inline: auto;
}

.landing-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: rgba(255, 255, 255, .86);
    background: rgba(12, 17, 27, .72);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
    transition: background-color .3s ease, box-shadow .3s ease;
}

.landing-header.is-scrolled {
    background: rgba(12, 17, 27, .94);
    box-shadow: 0 12px 36px rgba(4, 8, 15, .24);
}

.landing-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 11px;
    color: var(--landing-white);
    font-size: 17px;
    font-weight: 750;
}

.landing-brand__mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: var(--landing-night);
    background: var(--landing-mint);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 7px;
}

.landing-brand__mark svg {
    width: 19px;
    height: 19px;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.landing-nav a,
.landing-link {
    position: relative;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}

.landing-nav a:hover,
.landing-nav a:focus-visible,
.landing-link:hover,
.landing-link:focus-visible {
    color: var(--landing-white);
}

.landing-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.landing-menu {
    width: 40px;
    height: 40px;
    display: none;
    place-items: center;
    padding: 0;
    color: var(--landing-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
}

.landing-menu svg {
    width: 20px;
    height: 20px;
}

.landing-scroll-progress {
    height: 2px;
    background: rgba(255, 255, 255, .06);
}

.landing-scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--landing-mint);
    transform: scaleX(0);
    transform-origin: left center;
}

.landing-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    color: var(--landing-night);
    background: var(--landing-mint);
    border: 1px solid var(--landing-mint);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.landing-button:hover,
.landing-button:focus-visible {
    color: var(--landing-night);
    background: #8cf0bb;
    border-color: #8cf0bb;
    transform: translateY(-2px);
}

.landing-button svg {
    width: 18px;
    height: 18px;
}

.landing-button--compact {
    min-height: 40px;
    padding-inline: 15px;
}

.landing-button--secondary {
    color: var(--landing-white);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .32);
}

.landing-button--secondary:hover,
.landing-button--secondary:focus-visible {
    color: var(--landing-white);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .52);
}

.landing-button--dark {
    color: var(--landing-white);
    background: var(--landing-night);
    border-color: var(--landing-night);
}

.landing-button--dark:hover,
.landing-button--dark:focus-visible {
    color: var(--landing-white);
    background: #202a3b;
    border-color: #202a3b;
}

.landing-button--light {
    color: var(--landing-night);
    background: var(--landing-white);
    border-color: var(--landing-white);
}

.landing-button--light:hover,
.landing-button--light:focus-visible {
    color: var(--landing-night);
    background: var(--landing-mint);
    border-color: var(--landing-mint);
}

.landing-button--outline-light {
    color: var(--landing-white);
    background: transparent;
    border-color: rgba(255, 255, 255, .36);
}

.landing-button--outline-light:hover,
.landing-button--outline-light:focus-visible {
    color: var(--landing-white);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .7);
}

.landing-hero {
    position: relative;
    min-height: 94vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--landing-white);
    background: var(--landing-night);
    isolation: isolate;
}

.landing-hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.landing-hero__grid {
    position: absolute;
    inset: 72px auto auto 6.5%;
    width: 38%;
    height: 68%;
    z-index: 1;
    opacity: .18;
    border-left: 1px solid rgba(255, 255, 255, .22);
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    z-index: 1;
    background: rgba(12, 17, 27, .34);
    clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}

.landing-hero__content {
    position: relative;
    z-index: 3;
    padding-block: 150px 110px;
}

.landing-kicker {
    max-width: 100%;
    margin: 0 0 14px;
    color: var(--landing-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    white-space: normal;
}

.landing-hero .landing-kicker,
.landing-modules .landing-kicker,
.landing-cta .landing-kicker {
    color: var(--landing-mint);
}

.landing-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--landing-white);
    font-size: 76px;
    font-weight: 800;
    line-height: .98;
    letter-spacing: 0;
}

.landing-hero__lede {
    width: min(700px, 100%);
    max-width: 700px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 20px;
    line-height: 1.65;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.landing-hero__facts {
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 76px 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.landing-hero__facts div {
    padding: 22px 22px 0 0;
}

.landing-hero__facts dt {
    color: var(--landing-amber);
    font-size: 26px;
    font-weight: 800;
}

.landing-hero__facts dd {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.landing-hero__signal {
    position: absolute;
    right: 34px;
    bottom: 42px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    writing-mode: vertical-rl;
}

.landing-hero__signal svg {
    width: 18px;
    animation: landingSignal 1.8s ease-in-out infinite;
}

.landing-module-rail {
    overflow: hidden;
    color: var(--landing-night);
    background: var(--landing-amber);
    border-block: 1px solid rgba(12, 17, 27, .2);
}

.landing-module-rail__track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: landingRail 34s linear infinite;
}

.landing-module-rail__track span {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-inline: 27px;
    border-right: 1px solid rgba(12, 17, 27, .22);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.landing-module-rail__track svg {
    width: 18px;
    height: 18px;
}

.landing-section-heading {
    max-width: 760px;
    margin-bottom: 70px;
}

.landing-section-heading h2,
.landing-foundation h2,
.landing-cta h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 780;
    line-height: 1.08;
    letter-spacing: 0;
}

.landing-section-heading > p:last-child,
.landing-cta__content > p {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--landing-muted);
    font-size: 17px;
}

.landing-workflow {
    overflow-x: clip;
    overflow-y: visible;
    padding: 130px 0 150px;
    background: var(--landing-white);
}

.landing-workflow-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: -24px 0 96px;
    border-block: 1px solid var(--landing-line);
}

.landing-workflow-map::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: #cbd4df;
}

.landing-workflow-map__item {
    position: relative;
    z-index: 1;
    min-height: 112px;
    display: grid;
    place-items: start center;
    align-content: start;
    gap: 12px;
    padding: 17px 10px;
    color: var(--landing-muted);
    text-align: center;
    transition: color .25s ease, background-color .25s ease;
}

.landing-workflow-map__item + .landing-workflow-map__item {
    border-left: 1px solid var(--landing-line);
}

.landing-workflow-map__item span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--landing-muted);
    background: var(--landing-white);
    border: 1px solid #cbd4df;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.landing-workflow-map__item strong {
    font-size: 12px;
    line-height: 1.3;
}

.landing-workflow-map__item:hover,
.landing-workflow-map__item:focus-visible,
.landing-workflow-map__item.is-active {
    color: var(--landing-ink);
    background: #f7f9fb;
}

.landing-workflow-map__item.is-active span {
    color: var(--landing-night);
    background: var(--landing-mint);
    border-color: var(--landing-mint);
    transform: scale(1.12);
}

.landing-workflow__layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(560px, 1.35fr);
    gap: 70px;
    align-items: start;
}

.landing-workflow__steps {
    position: relative;
}

.landing-workflow__steps::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 21px;
    width: 1px;
    background: var(--landing-line);
}

.landing-step {
    position: relative;
    min-height: 68vh;
    padding: 0 0 96px 72px;
    scroll-margin-top: 126px;
    opacity: .36;
    transition: opacity .4s ease, transform .4s ease;
}

.landing-step.is-active {
    opacity: 1;
}

.landing-step__number {
    position: absolute;
    top: 0;
    left: 0;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--landing-muted);
    background: var(--landing-white);
    border: 1px solid var(--landing-line);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease;
}

.landing-step.is-active .landing-step__number {
    color: var(--landing-night);
    background: var(--landing-mint);
    border-color: var(--landing-mint);
    transform: scale(1.08);
}

.landing-step__eyebrow {
    margin: 0 0 12px;
    color: var(--landing-blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.landing-step h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
}

.landing-step > p:last-child {
    margin: 18px 0 0;
    color: var(--landing-muted);
    font-size: 16px;
}

.landing-workflow__visual {
    position: sticky;
    top: 118px;
    isolation: isolate;
}

.landing-workflow__orbit {
    position: absolute;
    inset: -34px 0 auto auto;
    z-index: -1;
    width: 180px;
    height: 180px;
    border: 1px solid #cbd4df;
    border-radius: 50%;
    animation: landingOrbit 18s linear infinite;
}

.landing-workflow__orbit::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid #dbe2ea;
    border-radius: 50%;
}

.landing-workflow__orbit span {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    background: var(--landing-blue);
    border-radius: 2px;
}

.landing-workflow__orbit span:last-child {
    inset: 12px 28px auto auto;
    background: var(--landing-amber);
}

.landing-screen-stage {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--landing-night-soft);
    border: 1px solid #cfd6df;
    border-radius: 8px;
    box-shadow: 0 35px 90px rgba(17, 24, 39, .2);
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
    transition: transform .5s ease, box-shadow .5s ease;
}

.landing-screen-stage__watermark {
    position: absolute;
    right: 24px;
    bottom: -34px;
    z-index: 11;
    color: rgba(255, 255, 255, .1);
    font-size: 128px;
    font-weight: 850;
    line-height: 1;
    pointer-events: none;
}

.landing-screen-stage:hover {
    box-shadow: 0 40px 100px rgba(17, 24, 39, .28);
    transform: perspective(1400px) rotateY(0) rotateX(0);
}

.landing-screen-stage__chrome {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    height: 38px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    color: rgba(255, 255, 255, .58);
    background: #111827;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.landing-screen-stage__chrome span {
    width: 8px;
    height: 8px;
    background: var(--landing-danger);
    border-radius: 50%;
}

.landing-screen-stage__chrome span:nth-child(2) {
    background: var(--landing-amber);
}

.landing-screen-stage__chrome span:nth-child(3) {
    background: var(--landing-green);
}

.landing-screen-stage__chrome strong {
    margin-left: 7px;
    font-size: 10px;
    font-weight: 650;
}

.landing-screen {
    position: absolute;
    inset: 38px 0 0;
    width: 100%;
    height: calc(100% - 38px);
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transform: scale(1.035) translateY(8px);
    transition: opacity .55s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

.landing-screen.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.landing-screen-stage__label {
    position: absolute;
    z-index: 12;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: var(--landing-white);
    background: rgba(12, 17, 27, .86);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 5px;
    backdrop-filter: blur(12px);
}

.landing-screen-stage__label span {
    color: var(--landing-mint);
    font-size: 11px;
    font-weight: 800;
}

.landing-screen-stage__label strong {
    font-size: 11px;
}

.landing-workflow__capabilities {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: calc(100% - 42px);
    margin: -22px auto 0;
}

.landing-workflow__capabilities span {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    color: #364255;
    background: rgba(255, 255, 255, .94);
    border: 1px solid #d5dde7;
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(17, 24, 39, .12);
    backdrop-filter: blur(14px);
}

.landing-workflow__capabilities svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: var(--landing-blue);
}

.landing-workflow__capabilities span:nth-child(2) svg {
    color: #a5600a;
}

.landing-workflow__capabilities span:nth-child(3) svg {
    color: #0f7a50;
}

.landing-workflow__capabilities strong {
    font-size: 11px;
    line-height: 1.3;
}

.landing-modules {
    padding: 130px 0;
    color: var(--landing-white);
    background: #101722;
}

.landing-modules h2,
.landing-modules h3,
.landing-cta h2 {
    color: var(--landing-white);
}

.landing-section-heading--light > p:last-child {
    color: rgba(255, 255, 255, .56);
}

.landing-module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.landing-module {
    position: relative;
    min-height: 300px;
    padding: 28px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: background-color .3s ease, transform .3s ease;
}

.landing-module:hover {
    z-index: 2;
    background: #192332;
    transform: translateY(-5px);
}

.landing-module__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--landing-night);
    background: var(--landing-amber);
    border-radius: 6px;
}

.landing-module:nth-child(3n + 2) .landing-module__icon {
    background: var(--landing-mint);
}

.landing-module:nth-child(3n + 3) .landing-module__icon {
    color: var(--landing-white);
    background: var(--landing-blue);
}

.landing-module__icon svg {
    width: 20px;
    height: 20px;
}

.landing-module h3 {
    margin: 28px 0 0;
    font-size: 21px;
}

.landing-module p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
}

.landing-module__index {
    position: absolute;
    top: 28px;
    right: 28px;
    color: rgba(255, 255, 255, .3);
    font-size: 11px;
    font-weight: 800;
}

.landing-foundation {
    padding: 130px 0;
    background: var(--landing-white);
}

.landing-foundation__heading {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 50px;
    align-items: end;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--landing-line);
}

.landing-foundation__heading .landing-kicker {
    margin: 0;
}

.landing-foundation__rows {
    display: grid;
}

.landing-foundation__row {
    display: grid;
    grid-template-columns: 80px .6fr 1fr;
    gap: 30px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid var(--landing-line);
}

.landing-foundation__row > span {
    color: var(--landing-blue);
    font-size: 12px;
    font-weight: 800;
}

.landing-foundation__row h3,
.landing-foundation__row p {
    margin: 0;
}

.landing-foundation__row h3 {
    font-size: 20px;
}

.landing-foundation__row p {
    color: var(--landing-muted);
    font-size: 15px;
}

.landing-cta {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--landing-white);
    background: var(--landing-night);
    isolation: isolate;
}

.landing-cta__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.landing-cta__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-block: 100px;
    text-align: center;
}

.landing-cta__content > p {
    max-width: 650px;
    margin-inline: auto;
    color: rgba(255, 255, 255, .62);
}

.landing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.landing-footer {
    color: rgba(255, 255, 255, .64);
    background: #080c13;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.landing-footer__inner {
    min-height: 126px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 46px;
    align-items: center;
}

.landing-brand--footer {
    font-size: 15px;
}

.landing-footer p {
    max-width: 610px;
    margin: 0;
    font-size: 13px;
}

.landing-footer nav {
    display: flex;
    gap: 22px;
    font-size: 13px;
}

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

.landing-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}

.landing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes landingRail {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes landingSignal {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

@keyframes landingOrbit {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
    .landing-nav {
        display: none;
    }

    .landing-header__actions {
        margin-left: auto;
    }

    .landing-hero h1 {
        font-size: 64px;
    }

    .landing-workflow__layout {
        grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
        gap: 42px;
    }

    .landing-module-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 820px) {
    .landing-container {
        width: calc(100vw - 32px);
        max-width: var(--landing-container);
    }

    .landing-header__actions {
        position: fixed;
        inset: 72px 0 auto;
        display: none;
        align-items: stretch;
        padding: 18px 16px 24px;
        background: #0c111b;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .is-menu-open .landing-header__actions {
        display: grid;
    }

    .landing-link {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 6px;
    }

    .landing-menu {
        display: grid;
        margin-left: auto;
    }

    .landing-hero {
        min-height: 900px;
    }

    .landing-hero__content {
        padding-block: 140px 100px;
    }

    .landing-hero h1 {
        font-size: 54px;
    }

    .landing-hero__lede {
        max-width: 600px;
        font-size: 18px;
    }

    .landing-hero__facts {
        margin-top: 62px;
    }

    .landing-hero__signal {
        display: none;
    }

    .landing-section-heading h2,
    .landing-foundation h2,
    .landing-cta h2 {
        font-size: 38px;
    }

    .landing-workflow {
        padding-block: 100px;
    }

    .landing-workflow-map {
        grid-template-columns: repeat(5, minmax(140px, 1fr));
        overflow-x: auto;
        margin-bottom: 64px;
        scrollbar-width: thin;
    }

    .landing-workflow-map::before {
        right: 70px;
        left: 70px;
        width: 560px;
    }

    .landing-workflow__layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 55px;
    }

    .landing-workflow__visual {
        position: sticky;
        top: 94px;
        z-index: 4;
        width: 100%;
    }

    .landing-workflow__steps {
        width: 100%;
    }

    .landing-step {
        min-height: 56vh;
    }

    .landing-modules,
    .landing-foundation {
        padding-block: 100px;
    }

    .landing-foundation__heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .landing-foundation__row {
        grid-template-columns: 54px 1fr;
    }

    .landing-foundation__row p {
        grid-column: 2;
    }

    .landing-footer__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-block: 34px;
    }
}

@media (max-width: 560px) {
    .landing-header__inner {
        min-height: 64px;
    }

    .landing-header__actions {
        inset-block-start: 64px;
    }

    .landing-brand {
        font-size: 15px;
    }

    .landing-brand__mark {
        width: 31px;
        height: 31px;
    }

    .landing-hero {
        min-height: 850px;
    }

    .landing-hero__content {
        max-width: calc(100vw - 32px);
        padding-block: 120px 90px;
    }

    .landing-hero__canvas {
        opacity: .62;
    }

    .landing-hero h1 {
        max-width: 100%;
        font-size: 42px;
        overflow-wrap: anywhere;
    }

    .landing-hero__lede {
        font-size: 17px;
    }

    .landing-hero__actions,
    .landing-cta__actions {
        display: grid;
    }

    .landing-hero__facts {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .landing-hero__facts div {
        display: grid;
        grid-template-columns: 42px 1fr;
        align-items: center;
        gap: 12px;
        padding-top: 15px;
    }

    .landing-hero__facts dt {
        font-size: 22px;
    }

    .landing-module-rail__track span {
        min-height: 54px;
        padding-inline: 20px;
    }

    .landing-section-heading {
        margin-bottom: 48px;
    }

    .landing-section-heading h2,
    .landing-foundation h2,
    .landing-cta h2 {
        font-size: 32px;
    }

    .landing-section-heading > p:last-child,
    .landing-cta__content > p {
        font-size: 15px;
    }

    .landing-workflow,
    .landing-modules,
    .landing-foundation {
        padding-block: 82px;
    }

    .landing-screen-stage {
        transform: none;
    }

    .landing-screen-stage__chrome {
        height: 30px;
    }

    .landing-screen {
        inset-block-start: 30px;
        height: calc(100% - 30px);
    }

    .landing-screen-stage__label {
        right: 8px;
        bottom: 8px;
        max-width: calc(100% - 16px);
        padding: 7px 9px;
    }

    .landing-screen-stage__label strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .landing-workflow__orbit {
        display: none;
    }

    .landing-workflow__capabilities {
        width: calc(100% - 16px);
        display: flex;
        overflow-x: auto;
        margin-top: -12px;
        padding-bottom: 5px;
        scrollbar-width: thin;
    }

    .landing-workflow__capabilities span {
        min-width: 158px;
        min-height: 52px;
    }

    .landing-screen-stage__watermark {
        right: 12px;
        bottom: -18px;
        font-size: 76px;
    }

    .landing-step {
        min-height: 58vh;
        padding-left: 58px;
    }

    .landing-step h3 {
        font-size: 25px;
    }

    .landing-module-grid {
        grid-template-columns: 1fr;
    }

    .landing-module {
        min-height: 240px;
    }

    .landing-foundation__row {
        grid-template-columns: 38px 1fr;
        gap: 16px;
    }

    .landing-cta {
        min-height: 620px;
    }

    .landing-footer nav {
        flex-wrap: wrap;
    }
}

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

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

    .landing-reveal {
        opacity: 1;
        transform: none;
    }
}
