.atlas-process-widget {
    --atlas-process-bg: #071a3d;
    --atlas-process-primary: #1557ff;
    --atlas-process-accent: #20c9e8;
    --atlas-process-heading: #ffffff;
    --atlas-process-body: #c8d6ee;
    --atlas-process-future: #56709d;
    background: var(--atlas-process-bg);
    color: var(--atlas-process-heading);
    overflow: hidden;
    padding: 112px 30px;
    position: relative;
}

.atlas-process-widget,
.atlas-process-widget * {
    box-sizing: border-box;
}

.atlas-process-widget__grid {
    background-image:
        linear-gradient(rgba(32, 201, 232, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 201, 232, 0.045) 1px, transparent 1px);
    background-size: 84px 84px;
    inset: 0;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent 45%, rgba(0, 0, 0, 0.52));
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent 45%, rgba(0, 0, 0, 0.52));
    pointer-events: none;
    position: absolute;
}

.atlas-process-widget__inner {
    margin: 0 auto;
    max-width: 1320px;
    position: relative;
    z-index: 1;
}

.atlas-process-widget__header {
    margin: 0 auto 96px;
    max-width: 1180px;
    text-align: center;
}

.atlas-process-widget__eyebrow {
    --atlas-section-eyebrow-color: var(--atlas-process-primary);
    justify-content: center;
}

.atlas-process-widget__heading {
    color: var(--atlas-process-heading);
    font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(48px, 5.1vw, 82px);
    font-stretch: condensed;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.98;
    margin: 0;
    text-transform: uppercase;
}

.atlas-process-widget__terminal {
    background: var(--atlas-process-primary);
    display: inline-block;
    height: 0.22em;
    margin-left: 0.14em;
    vertical-align: 0.02em;
    width: 0.22em;
}

.atlas-process-widget__description {
    color: var(--atlas-process-body);
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.55;
    margin: 30px auto 0;
    max-width: 900px;
}

.atlas-process-widget__steps-wrap {
    margin: 0 auto;
    max-width: 1160px;
    position: relative;
}

.atlas-process-widget__steps {
    counter-reset: atlas-process;
    list-style: none;
    margin: 0;
    padding: 0;
}

.atlas-process-widget__track {
    background: rgba(86, 112, 157, 0.48);
    bottom: 115px;
    left: 212px;
    overflow: hidden;
    position: absolute;
    top: 115px;
    width: 2px;
}

.atlas-process-widget__track-fill {
    background: var(--atlas-process-accent);
    display: block;
    height: var(--atlas-process-progress, 0px);
    max-height: 100%;
    transition: height 120ms linear;
    width: 100%;
}

.atlas-process-widget__step {
    align-items: center;
    display: grid;
    gap: 0;
    grid-template-columns: 180px 64px minmax(0, 1fr);
    min-height: 230px;
    position: relative;
}

.atlas-process-widget__number {
    color: var(--atlas-process-future);
    font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(66px, 6vw, 100px);
    font-stretch: condensed;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    justify-self: end;
    letter-spacing: 0;
    line-height: 0.84;
    padding-right: 28px;
    transition: color 260ms ease, filter 260ms ease, opacity 260ms ease;
}

.atlas-process-widget__node {
    align-items: center;
    background: var(--atlas-process-bg);
    border: 2px solid var(--atlas-process-future);
    border-radius: 50%;
    display: flex;
    height: 34px;
    justify-content: center;
    justify-self: center;
    position: relative;
    transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
    width: 34px;
    z-index: 2;
}

.atlas-process-widget__node > span {
    background: transparent;
    border-radius: 50%;
    height: 10px;
    transition: background-color 260ms ease, transform 260ms ease;
    width: 10px;
}

.atlas-process-widget__step-content {
    max-width: 760px;
    opacity: 0.38;
    padding-left: 34px;
    transform: translateX(28px);
    transition: opacity 360ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.atlas-process-widget__step-label {
    color: var(--atlas-process-heading);
    font-size: clamp(19px, 1.8vw, 28px);
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.atlas-process-widget__step-title {
    color: var(--atlas-process-heading);
    font-size: clamp(22px, 2vw, 31px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.18;
    margin: 13px 0 0;
}

.atlas-process-widget__step-description {
    color: var(--atlas-process-body);
    font-size: 17px;
    line-height: 1.58;
    margin: 14px 0 0;
    max-width: 720px;
}

.atlas-process-widget__deliverables {
    color: var(--atlas-process-accent);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.9px;
    line-height: 1.45;
    margin-top: 15px;
    text-transform: uppercase;
}

.atlas-process-widget__step.is-past .atlas-process-widget__number,
.atlas-process-widget__step.is-active .atlas-process-widget__number {
    color: var(--atlas-process-heading);
}

.atlas-process-widget__step.is-past .atlas-process-widget__node,
.atlas-process-widget__step.is-active .atlas-process-widget__node {
    border-color: var(--atlas-process-accent);
}

.atlas-process-widget__step.is-past .atlas-process-widget__node > span,
.atlas-process-widget__step.is-active .atlas-process-widget__node > span {
    background: var(--atlas-process-accent);
}

.atlas-process-widget__step.is-past .atlas-process-widget__step-content {
    opacity: 0.78;
    transform: translateX(0);
}

.atlas-process-widget__step.is-active .atlas-process-widget__number {
    filter: drop-shadow(0 0 12px rgba(32, 201, 232, 0.64));
}

.atlas-process-widget__step.is-active .atlas-process-widget__node {
    box-shadow: 0 0 0 7px rgba(32, 201, 232, 0.12), 0 0 22px rgba(32, 201, 232, 0.78);
    transform: scale(1.08);
}

.atlas-process-widget__step.is-active .atlas-process-widget__node > span {
    background: var(--atlas-process-heading);
    transform: scale(1.15);
}

.atlas-process-widget__step.is-active .atlas-process-widget__step-content {
    opacity: 1;
    transform: translateX(0);
}

.atlas-process-widget__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 72px;
}

.atlas-process-widget__cta {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .atlas-process-widget {
        padding-left: 24px;
        padding-right: 24px;
    }

    .atlas-process-widget__header {
        margin-bottom: 72px;
    }

    .atlas-process-widget__track {
        left: 139px;
        bottom: 105px;
        top: 105px;
    }

    .atlas-process-widget__step {
        grid-template-columns: 112px 54px minmax(0, 1fr);
        min-height: 210px;
    }

    .atlas-process-widget__number {
        padding-right: 18px;
    }

    .atlas-process-widget__step-content {
        padding-left: 24px;
    }
}

@media (max-width: 767px) {
    .atlas-process-widget {
        padding-left: 18px;
        padding-right: 18px;
    }

    .atlas-process-widget__grid {
        background-size: 56px 56px;
        opacity: 0.55;
    }

    .atlas-process-widget__header {
        margin-bottom: 56px;
        text-align: left;
    }

    .atlas-process-widget__eyebrow {
        justify-content: flex-start;
    }

    .atlas-process-widget__heading {
        font-size: clamp(40px, 12vw, 58px);
    }

    .atlas-process-widget__description {
        font-size: 17px;
        margin-top: 24px;
    }

    .atlas-process-widget__track {
        bottom: 95px;
        left: 67px;
        top: 95px;
    }

    .atlas-process-widget__step {
        align-items: start;
        grid-template-columns: 48px 38px minmax(0, 1fr);
        min-height: 190px;
        padding: 24px 0;
    }

    .atlas-process-widget__number {
        font-size: 38px;
        justify-self: start;
        padding: 4px 0 0;
    }

    .atlas-process-widget__node {
        height: 26px;
        margin-top: 5px;
        width: 26px;
    }

    .atlas-process-widget__node > span {
        height: 8px;
        width: 8px;
    }

    .atlas-process-widget__step-content,
    .atlas-process-widget__step.is-past .atlas-process-widget__step-content,
    .atlas-process-widget__step.is-active .atlas-process-widget__step-content,
    .atlas-process-widget__step.is-future .atlas-process-widget__step-content {
        opacity: 1;
        padding-left: 15px;
        transform: none;
    }

    .atlas-process-widget__step-label {
        font-size: 18px;
    }

    .atlas-process-widget__step-title {
        font-size: 22px;
    }

    .atlas-process-widget__step-description {
        font-size: 16px;
    }

    .atlas-process-widget__deliverables {
        font-size: 12px;
        letter-spacing: 0.55px;
    }

    .atlas-process-widget__cta-wrap {
        justify-content: flex-start;
        margin-top: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .atlas-process-widget__track-fill,
    .atlas-process-widget__number,
    .atlas-process-widget__node,
    .atlas-process-widget__node > span,
    .atlas-process-widget__step-content {
        transition: none;
    }
}
