/* =========================================================
   LUCENT SOFT
   SERVICES PAGE
   File: assets/css/services.css
========================================================= */

.services-page {
    position: relative;
    overflow: clip;
    background: #ffffff;
    color: #1c2d43;
}


/* =========================================================
   SHARED
========================================================= */

.services-section-label,
.services-dark-label,
.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.services-section-label {
    color: #1e5da8;
}

.services-dark-label,
.services-eyebrow {
    color: #8ebcec;
}

.services-section-label::before,
.services-dark-label::before,
.services-eyebrow::before {
    content: "";

    width: 22px;
    height: 2px;

    flex: 0 0 auto;

    background: #9b1834;
}


/* =========================================================
   HERO
========================================================= */

.services-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 82px 0 0;

    color: #ffffff;

    background:
        linear-gradient(
            124deg,
            #071426 0%,
            #0c1d35 49%,
            #153557 100%
        );
}

.services-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    opacity: .55;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.024) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.024) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    animation: servicesGridMove 24s linear infinite;
}

.services-hero::after {
    content: "";

    position: absolute;
    z-index: -3;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(109,171,235,.45),
            transparent
        );
}

.services-hero-glow {
    position: absolute;
    z-index: -3;

    border-radius: 50%;
    pointer-events: none;
}

.services-hero-glow-one {
    width: 680px;
    height: 680px;

    top: -340px;
    right: -220px;

    background:
        radial-gradient(
            circle,
            rgba(57,130,216,.21) 0%,
            rgba(57,130,216,.06) 43%,
            transparent 70%
        );

    animation: servicesGlowOne 11s ease-in-out infinite alternate;
}

.services-hero-glow-two {
    width: 560px;
    height: 560px;

    left: -310px;
    bottom: -330px;

    background:
        radial-gradient(
            circle,
            rgba(155,24,52,.13),
            transparent 70%
        );

    animation: servicesGlowTwo 13s ease-in-out infinite alternate;
}

.services-hero-word {
    position: absolute;
    z-index: -2;

    right: -30px;
    top: 130px;

    color: rgba(255,255,255,.018);

    font-size: clamp(100px, 11vw, 160px);
    line-height: .9;
    font-weight: 850;
    letter-spacing: -8px;

    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}


/* =========================================================
   HERO LAYOUT
========================================================= */

.services-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, .92fr);

    gap: clamp(60px, 7.5vw, 110px);

    align-items: center;

    padding: 57px 0 68px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.services-hero-content {
    max-width: 690px;

    animation: servicesFadeUp .75s ease both;
}

.services-eyebrow {
    margin-bottom: 18px;
}

.services-hero-content h1 {
    max-width: 700px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(40px, 4vw, 49px);
    line-height: 1.08;
    font-weight: 720;
    letter-spacing: -1.55px;
}

.services-hero-content h1 span {
    display: block;

    margin-top: 5px;

    color: #83b7ed;
}

.services-hero-lead {
    max-width: 645px;

    margin: 23px 0 0;

    color: rgba(236,244,251,.88);

    font-size: 14px;
    line-height: 1.72;
    font-weight: 510;
}

.services-hero-copy {
    max-width: 630px;

    margin: 13px 0 0;

    color: rgba(197,215,233,.6);

    font-size: 12px;
    line-height: 1.74;
}

.services-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 24px;

    margin-top: 30px;
}

.services-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #eef6fd;

    font-size: 11px;
    font-weight: 700;

    transition:
        color .25s ease,
        gap .25s ease;
}

.services-arrow-link svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-arrow-link:hover {
    gap: 13px;
    color: #8fc0f1;
}


/* =========================================================
   HERO ARCHITECTURE
========================================================= */

.services-hero-architecture {
    position: relative;

    border-top: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13);

    animation: servicesHeroRight .8s .08s ease both;
}

.services-hero-architecture::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            #a52645 0%,
            #4189d6 52%,
            rgba(65,137,214,.12) 100%
        );
}

.services-hero-architecture-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 15px 0 15px 21px;

    border-bottom: 1px solid rgba(255,255,255,.09);
}

.services-hero-architecture-head > span {
    color: #91bff0;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .9px;
}

.services-hero-architecture-head > small {
    color: rgba(196,214,232,.45);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .75px;
}


/* =========================================================
   HERO PLATFORMS
========================================================= */

.services-hero-platform {
    position: relative;

    display: grid;

    grid-template-columns:
        36px
        minmax(0, 1fr)
        34px;

    gap: 14px;
    align-items: center;

    padding: 19px 0 19px 21px;

    color: inherit;

    border-bottom: 1px solid rgba(255,255,255,.08);

    transition:
        padding-left .3s ease,
        background .3s ease;
}

.services-hero-platform:last-child {
    border-bottom: 0;
}

.services-hero-platform:hover {
    padding-left: 27px;

    background:
        linear-gradient(
            90deg,
            rgba(63,137,219,.1),
            transparent 88%
        );
}

.services-hero-platform-number {
    align-self: start;

    padding-top: 2px;

    color: rgba(134,184,238,.56);

    font-size: 9px;
    font-weight: 800;
}

.services-hero-platform-content small {
    display: block;

    margin-bottom: 5px;

    color: #c1546d;

    font-size: 9px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .55px;
}

.services-hero-platform-content strong {
    display: block;

    color: #f4f8fc;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 660;
}

.services-hero-platform-content p {
    max-width: 390px;

    margin: 6px 0 0;

    color: rgba(196,214,232,.55);

    font-size: 10.5px;
    line-height: 1.6;
}

.services-hero-platform-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border: 1px solid rgba(255,255,255,.12);

    color: rgba(226,237,248,.63);

    transition:
        color .25s ease,
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.services-hero-platform-arrow svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-hero-platform:hover
.services-hero-platform-arrow {
    color: #ffffff;

    border-color: rgba(91,160,234,.55);
    background: rgba(57,128,210,.14);

    transform: translateX(2px);
}

.services-hero-capabilities {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 9px;

    padding: 14px 0 14px 21px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.services-hero-capabilities span {
    color: rgba(190,210,230,.48);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .55px;
}

.services-hero-capabilities i {
    width: 15px;
    height: 1px;

    flex: 0 0 auto;

    background: rgba(255,255,255,.1);
}


/* =========================================================
   INTRO
========================================================= */

.services-intro {
    position: relative;

    padding: 94px 0;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );
}

.services-intro-layout {
    display: grid;

    grid-template-columns:
        minmax(310px, .84fr)
        minmax(0, 1.16fr);

    gap: clamp(70px, 9vw, 135px);

    align-items: start;
}

.services-intro-heading
.services-section-label {
    margin-bottom: 18px;
}

.services-intro-heading h2 {
    max-width: 530px;

    margin: 0;

    color: #14213d;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.services-intro-heading h2 span {
    display: block;

    margin-top: 4px;

    color: #1f5da7;
}

.services-intro-content {
    position: relative;

    padding-left: 32px;

    border-left: 1px solid #d6dfe9;
}

.services-intro-content::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 2px;
    height: 68px;

    background:
        linear-gradient(
            #9b1834,
            #1e5da8
        );
}

.services-intro-content p {
    max-width: 700px;

    margin: 0 0 14px;

    color: #6e7d8e;

    font-size: 12.5px;
    line-height: 1.76;
}

.services-intro-content p:last-child {
    margin-bottom: 0;
}

.services-intro-content
.services-intro-lead {
    color: #263b53;

    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 550;
}


/* =========================================================
   GENERIC SCROLL SECTION RULE
========================================================= */

.services-scroll-section {
    position: relative;
    overflow: visible;
}


/* =========================================================
   PLATFORM STICKY SCROLL
========================================================= */

.services-platforms {
    position: relative;
    isolation: isolate;

    overflow: visible;

    padding: 96px 0;

    background:
        linear-gradient(
            128deg,
            #091628 0%,
            #0e2038 53%,
            #15314f 100%
        );
}

.services-platforms-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -3;

    overflow: hidden;

    opacity: .48;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.019) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.019) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}

.services-platforms-glow {
    position: absolute;
    z-index: -2;

    width: 650px;
    height: 650px;

    left: -340px;
    top: 24%;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(48,119,200,.13),
            transparent 70%
        );
}

.services-platform-scroll-layout {
    display: grid;

    grid-template-columns:
        minmax(310px, .78fr)
        minmax(0, 1.22fr);

    gap: clamp(70px, 9vw, 135px);

    align-items: start;
}


/* =========================================================
   PLATFORM STICKY SIDE
========================================================= */

.services-platform-sticky {
    position: relative;
    align-self: stretch;
}

.services-platform-sticky-inner {
    position: sticky;
    top: 118px;

    max-width: 470px;
}

.services-platform-sticky
.services-dark-label {
    margin-bottom: 18px;
}

.services-platform-sticky h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.services-platform-sticky h2 span {
    display: block;

    margin-top: 4px;

    color: #82b6ed;
}

.services-platform-sticky-inner > p {
    margin: 20px 0 0;

    color: rgba(195,213,231,.59);

    font-size: 12px;
    line-height: 1.75;
}


/* PLATFORM STATUS */

.services-scroll-status {
    margin-top: 37px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.11);
}

.services-scroll-status-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.services-scroll-status-top > span {
    color: rgba(188,208,228,.46);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .75px;
}

.services-scroll-status-top strong {
    display: flex;
    align-items: baseline;
    gap: 3px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1;
    font-weight: 650;
}

.services-scroll-status-top strong small {
    color: rgba(173,198,223,.42);

    font-size: 10px;
    font-weight: 700;
}

.services-scroll-progress {
    position: relative;

    overflow: hidden;

    height: 2px;

    margin-top: 14px;

    background: rgba(255,255,255,.1);
}

.services-scroll-progress > span {
    display: block;

    width: 33.333%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #a52343,
            #4a98e6
        );

    transition: width .4s cubic-bezier(.22,1,.36,1);
}

.services-scroll-active {
    margin-top: 25px;

    padding-left: 18px;

    border-left: 2px solid #347fc9;
}

.services-scroll-active small {
    display: block;

    margin-bottom: 7px;

    color: #b74b65;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .75px;
}

.services-scroll-active strong {
    display: block;

    max-width: 350px;

    color: #edf5fc;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 620;
}

.services-sticky-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 27px;

    color: #91c0f1;

    font-size: 11px;
    font-weight: 700;

    transition:
        color .25s ease,
        gap .25s ease;
}

.services-sticky-link svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-sticky-link:hover {
    gap: 13px;
    color: #ffffff;
}


/* =========================================================
   PLATFORM SCROLL ITEMS
========================================================= */

.services-platform-scroll-list {
    border-top: 1px solid rgba(255,255,255,.11);
}

.services-platform-scroll-item {
    position: relative;

    padding: 37px 30px 39px;

    border-bottom: 1px solid rgba(255,255,255,.1);

    opacity: .43;

    transition:
        opacity .38s ease,
        background .38s ease,
        transform .38s ease;
}

.services-platform-scroll-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background:
        linear-gradient(
            #a52545,
            #3f88d6
        );

    transform: scaleY(0);
    transform-origin: center;

    transition: transform .38s cubic-bezier(.22,1,.36,1);
}

.services-platform-scroll-item.is-active {
    opacity: 1;

    background:
        linear-gradient(
            90deg,
            rgba(56,129,210,.09),
            rgba(56,129,210,.015) 72%,
            transparent
        );

    transform: translateX(8px);
}

.services-platform-scroll-item.is-active::before {
    transform: scaleY(1);
}

.services-platform-scroll-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
}

.services-platform-scroll-top > span {
    color: #8ebced;

    font-size: 10px;
    font-weight: 800;
}

.services-platform-scroll-top > small {
    color: #c1556e;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .65px;
}

.services-platform-scroll-main h3 {
    margin: 0;

    color: #ffffff;

    font-size: 28px;
    line-height: 1.15;
    font-weight: 680;
    letter-spacing: -.6px;
}

.services-platform-scroll-main h4 {
    max-width: 520px;

    margin: 14px 0 0;

    color: #e8f1fa;

    font-size: 16px;
    line-height: 1.48;
    font-weight: 620;
}

.services-platform-scroll-main p {
    max-width: 590px;

    margin: 11px 0 0;

    color: rgba(196,213,230,.58);

    font-size: 11.5px;
    line-height: 1.72;
}

.services-platform-scroll-capabilities {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0 28px;

    margin-top: 25px;

    padding-top: 17px;

    border-top: 1px solid rgba(255,255,255,.09);
}

.services-platform-scroll-capabilities span {
    position: relative;

    padding: 7px 0 7px 14px;

    color: rgba(215,227,239,.67);

    font-size: 10px;
    line-height: 1.45;
    font-weight: 550;
}

.services-platform-scroll-capabilities span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 14px;

    width: 5px;
    height: 1px;

    background: #6da4dc;
}

.services-scroll-item-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 23px;

    color: #8dbff1;

    font-size: 10.5px;
    font-weight: 700;

    transition:
        gap .25s ease,
        color .25s ease;
}

.services-scroll-item-link svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-scroll-item-link:hover {
    gap: 13px;
    color: #ffffff;
}


/* =========================================================
   DEVELOPMENT CAPABILITIES
   REVERSE STICKY
========================================================= */

.services-capabilities {
    position: relative;
    isolation: isolate;

    overflow: visible;

    padding: 96px 0;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );
}

.services-capabilities-bg-word {
    position: absolute;
    z-index: -1;

    right: -40px;
    top: 120px;

    color: rgba(20,48,81,.025);

    font-size: clamp(100px, 11vw, 160px);
    line-height: .9;
    font-weight: 850;
    letter-spacing: -8px;

    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

.services-capabilities-scroll-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(310px, .82fr);

    gap: clamp(70px, 9vw, 135px);

    align-items: start;
}


/* =========================================================
   CAPABILITY SCROLL LIST
========================================================= */

.services-capabilities-scroll-list {
    border-top: 1px solid #d7e0ea;
}

.services-capability-scroll-item {
    position: relative;

    display: grid;

    grid-template-columns:
        54px
        minmax(0, 1fr);

    gap: 25px;

    padding: 34px 22px 35px 0;

    border-bottom: 1px solid #d7e0ea;

    opacity: .38;

    transition:
        opacity .38s ease,
        padding-left .38s ease,
        background .38s ease;
}

.services-capability-scroll-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background:
        linear-gradient(
            #9b1834,
            #2d75bd
        );

    transform: scaleY(0);
    transform-origin: center;

    transition: transform .38s cubic-bezier(.22,1,.36,1);
}

.services-capability-scroll-item.is-active {
    opacity: 1;

    padding-left: 20px;

    background:
        linear-gradient(
            90deg,
            rgba(31,93,168,.055),
            transparent 82%
        );
}

.services-capability-scroll-item.is-active::before {
    transform: scaleY(1);
}

.services-capability-scroll-number {
    color: #2d70b7;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
}

.services-capability-scroll-content small {
    display: block;

    margin-bottom: 8px;

    color: #9b1834;

    font-size: 9px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .75px;
}

.services-capability-scroll-content h3 {
    max-width: 500px;

    margin: 0;

    color: #1b3049;

    font-size: 18px;
    line-height: 1.38;
    font-weight: 650;
    letter-spacing: -.25px;
}

.services-capability-scroll-content p {
    max-width: 590px;

    margin: 9px 0 0;

    color: #718092;

    font-size: 11.5px;
    line-height: 1.7;
}


/* =========================================================
   CAPABILITIES STICKY SIDE
========================================================= */

.services-capabilities-sticky {
    position: relative;
    align-self: stretch;
}

.services-capabilities-sticky-inner {
    position: sticky;
    top: 118px;

    max-width: 455px;

    padding-left: 29px;

    border-left: 1px solid #d8e1ea;
}

.services-capabilities-sticky-inner::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 2px;
    height: 78px;

    background:
        linear-gradient(
            #9b1834,
            #286fb7
        );
}

.services-capabilities-sticky
.services-section-label {
    margin-bottom: 18px;
}

.services-capabilities-sticky h2 {
    margin: 0;

    color: #14213d;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.services-capabilities-sticky h2 span {
    display: block;

    margin-top: 4px;

    color: #1e5da8;
}

.services-capabilities-sticky-inner > p {
    margin: 20px 0 0;

    color: #718092;

    font-size: 12px;
    line-height: 1.74;
}

.services-capabilities-status {
    margin-top: 37px;

    padding-top: 18px;

    border-top: 1px solid #d9e2eb;
}

.services-capabilities-status-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.services-capabilities-status-head > span {
    color: #8793a1;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.services-capabilities-status-head strong {
    display: flex;
    align-items: baseline;
    gap: 3px;

    color: #183451;

    font-size: 23px;
    line-height: 1;
    font-weight: 650;
}

.services-capabilities-status-head strong small {
    color: #98a5b3;

    font-size: 10px;
    font-weight: 700;
}

.services-capabilities-progress {
    overflow: hidden;

    height: 2px;

    margin-top: 14px;

    background: #e1e7ee;
}

.services-capabilities-progress > span {
    display: block;

    width: 16.666%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #9b1834,
            #2e77bf
        );

    transition: width .4s cubic-bezier(.22,1,.36,1);
}

.services-capabilities-active {
    margin-top: 25px;

    padding-left: 18px;

    border-left: 2px solid #2d75bd;
}

.services-capabilities-active small {
    display: block;

    margin-bottom: 7px;

    color: #9b1834;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.services-capabilities-active strong {
    display: block;

    max-width: 340px;

    color: #1c344f;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 620;
}

.services-capabilities-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 27px;

    color: #1e5da8;

    font-size: 11px;
    font-weight: 700;

    transition:
        color .25s ease,
        gap .25s ease;
}

.services-capabilities-link svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-capabilities-link:hover {
    gap: 13px;
    color: #9b1834;
}


/* =========================================================
   REQUIREMENTS STICKY SCROLL
========================================================= */

.services-requirements {
    position: relative;
    isolation: isolate;

    overflow: visible;

    padding: 96px 0;

    color: #ffffff;

    background:
        linear-gradient(
            125deg,
            #091628 0%,
            #10223c 55%,
            #173654 100%
        );
}

.services-requirements-grid {
    position: absolute;
    inset: 0;
    z-index: -3;

    overflow: hidden;

    opacity: .48;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.019) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.019) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}

.services-requirements-word {
    position: absolute;
    z-index: -2;

    left: -35px;
    bottom: 35px;

    color: rgba(255,255,255,.018);

    font-size: clamp(90px, 10vw, 145px);
    line-height: .9;
    font-weight: 850;
    letter-spacing: -7px;

    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

.services-requirements-scroll-layout {
    display: grid;

    grid-template-columns:
        minmax(310px, .78fr)
        minmax(0, 1.22fr);

    gap: clamp(70px, 9vw, 135px);

    align-items: start;
}


/* REQUIREMENT STICKY */

.services-requirements-sticky {
    position: relative;
    align-self: stretch;
}

.services-requirements-sticky-inner {
    position: sticky;
    top: 118px;

    max-width: 455px;
}

.services-requirements-sticky
.services-dark-label {
    margin-bottom: 18px;
}

.services-requirements-sticky h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.services-requirements-sticky h2 span {
    display: block;

    margin-top: 4px;

    color: #83b8ee;
}

.services-requirements-sticky-inner > p {
    margin: 20px 0 0;

    color: rgba(196,214,232,.59);

    font-size: 12px;
    line-height: 1.74;
}

.services-requirements-status {
    margin-top: 37px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.11);
}

.services-requirements-status-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.services-requirements-status-head > span {
    color: rgba(189,209,229,.46);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.services-requirements-status-head strong {
    display: flex;
    align-items: baseline;
    gap: 3px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1;
    font-weight: 650;
}

.services-requirements-status-head strong small {
    color: rgba(178,202,226,.43);

    font-size: 10px;
}

.services-requirements-progress {
    overflow: hidden;

    height: 2px;

    margin-top: 14px;

    background: rgba(255,255,255,.1);
}

.services-requirements-progress > span {
    display: block;

    width: 16.666%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #a52343,
            #4895e1
        );

    transition: width .4s cubic-bezier(.22,1,.36,1);
}

.services-requirements-active {
    margin-top: 25px;

    padding-left: 18px;

    border-left: 2px solid #438dd8;
}

.services-requirements-active small {
    display: block;

    margin-bottom: 7px;

    color: #bd526b;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.services-requirements-active strong {
    display: block;

    color: #edf5fc;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 620;
}


/* =========================================================
   REQUIREMENT SCROLL LIST
========================================================= */

.services-requirements-scroll-list {
    border-top: 1px solid rgba(255,255,255,.11);
}

.services-requirement-scroll-item {
    position: relative;

    display: grid;

    grid-template-columns:
        54px
        minmax(0, 1fr);

    gap: 25px;

    padding: 34px 25px 35px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);

    opacity: .4;

    transition:
        opacity .38s ease,
        padding-left .38s ease,
        background .38s ease;
}

.services-requirement-scroll-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background:
        linear-gradient(
            #ad2c4a,
            #428bd8
        );

    transform: scaleY(0);
    transform-origin: center;

    transition: transform .38s cubic-bezier(.22,1,.36,1);
}

.services-requirement-scroll-item.is-active {
    opacity: 1;

    padding-left: 20px;

    background:
        linear-gradient(
            90deg,
            rgba(61,135,216,.08),
            transparent 84%
        );
}

.services-requirement-scroll-item.is-active::before {
    transform: scaleY(1);
}

.services-requirement-scroll-number {
    color: #8dbcef;

    font-size: 10px;
    font-weight: 800;
}

.services-requirement-scroll-item small {
    display: block;

    margin-bottom: 8px;

    color: #c25770;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.services-requirement-scroll-item h3 {
    max-width: 550px;

    margin: 0;

    color: #f1f6fb;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 630;
}

.services-requirement-scroll-item p {
    max-width: 590px;

    margin: 9px 0 0;

    color: rgba(195,213,231,.57);

    font-size: 11.5px;
    line-height: 1.7;
}


/* =========================================================
   DEVELOPMENT THINKING
========================================================= */

.services-approach {
    position: relative;

    padding: 96px 0;

    background: #ffffff;
}

.services-approach-head {
    display: grid;

    grid-template-columns:
        minmax(220px, .52fr)
        minmax(340px, .88fr)
        minmax(250px, .6fr);

    gap: 45px;

    align-items: end;

    padding-bottom: 38px;

    border-bottom: 1px solid #d9e2eb;
}

.services-approach-head
.services-section-label {
    align-self: start;

    margin-top: 8px;
}

.services-approach-head h2 {
    margin: 0;

    color: #14213d;

    font-size: clamp(31px, 3.05vw, 39px);
    line-height: 1.16;
    font-weight: 710;
    letter-spacing: -1px;
}

.services-approach-head h2 span {
    display: block;

    margin-top: 4px;

    color: #1e5da8;
}

.services-approach-head > p {
    margin: 0;

    color: #738193;

    font-size: 11.5px;
    line-height: 1.7;
}


/* APPROACH STATEMENT */

.services-approach-statement {
    position: relative;

    display: grid;

    grid-template-columns:
        55px
        minmax(0, 1fr)
        auto;

    gap: 25px;

    align-items: center;

    padding: 38px 0;

    border-bottom: 1px solid #d9e2eb;
}

.services-approach-statement-mark {
    color: #1e5da8;

    font-size: 54px;
    line-height: .8;
    font-family: Georgia, serif;
}

.services-approach-statement p {
    max-width: 720px;

    margin: 0;

    color: #213750;

    font-size: 19px;
    line-height: 1.55;
    font-weight: 560;
}

.services-approach-statement small {
    color: #909dab;

    font-size: 9px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: .65px;

    text-align: right;
}


/* APPROACH ROWS */

.services-approach-rows {
    border-bottom: 1px solid #d9e2eb;
}

.services-approach-rows article {
    position: relative;

    display: grid;

    grid-template-columns:
        55px
        170px
        minmax(220px, .7fr)
        minmax(300px, 1.3fr);

    gap: 25px;

    align-items: start;

    padding: 27px 0;

    border-bottom: 1px solid #e1e7ed;

    transition:
        padding-left .3s ease,
        background .3s ease;
}

.services-approach-rows article:last-child {
    border-bottom: 0;
}

.services-approach-rows article:hover {
    padding-left: 14px;

    background:
        linear-gradient(
            90deg,
            rgba(30,93,168,.045),
            transparent
        );
}

.services-approach-number {
    color: #2c6fb6;

    font-size: 10px;
    font-weight: 800;
}

.services-approach-rows article > small {
    color: #9b1834;

    font-size: 9px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: .65px;
}

.services-approach-rows h3 {
    margin: 0;

    color: #233951;

    font-size: 14px;
    line-height: 1.45;
    font-weight: 640;
}

.services-approach-rows p {
    max-width: 520px;

    margin: 0;

    color: #748293;

    font-size: 11px;
    line-height: 1.68;
}


/* =========================================================
   CTA
========================================================= */

.services-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 72px 0 0;

    background:
        linear-gradient(
            120deg,
            #081527 0%,
            #10233d 55%,
            #173757 100%
        );
}

.services-cta-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    opacity: .5;

    background-image:
        linear-gradient(
            rgba(255,255,255,.019) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.019) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.services-cta-glow {
    position: absolute;
    z-index: -3;

    right: -230px;
    top: 48%;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(56,130,216,.19),
            transparent 70%
        );

    transform: translateY(-50%);

    animation: servicesCtaGlow 9s ease-in-out infinite alternate;
}

.services-cta-word {
    position: absolute;
    z-index: -2;

    right: -20px;
    bottom: 55px;

    color: rgba(255,255,255,.018);

    font-size: clamp(75px, 9vw, 125px);
    line-height: .9;
    font-weight: 850;
    letter-spacing: -6px;

    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}


/* CTA TOP */

.services-cta-top {
    display: flex;
    align-items: center;

    gap: 16px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255,255,255,.11);
}

.services-cta-top > span {
    color: #8ab9eb;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
}

.services-cta-top-line {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.14),
            rgba(255,255,255,.02)
        );
}

.services-cta-top > small {
    flex: 0 0 auto;

    color: rgba(190,209,229,.42);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}


/* CTA MAIN */

.services-cta-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(330px, .92fr);

    gap: clamp(65px, 8vw, 115px);

    align-items: center;

    padding: 48px 0 50px;
}

.services-cta-heading h2 {
    max-width: 670px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 3.25vw, 42px);
    line-height: 1.14;
    font-weight: 710;
    letter-spacing: -1.1px;
}

.services-cta-heading h2 span {
    display: block;

    margin-top: 4px;

    color: #82b6ee;
}

.services-cta-content {
    max-width: 480px;

    padding-left: 27px;

    border-left: 1px solid rgba(255,255,255,.13);
}

.services-cta-content > p {
    margin: 0;

    color: rgba(196,214,232,.59);

    font-size: 11.5px;
    line-height: 1.72;
}

.services-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 21px;

    margin-top: 23px;
}

.services-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #edf5fc;

    font-size: 10.5px;
    font-weight: 700;

    transition:
        gap .25s ease,
        color .25s ease;
}

.services-cta-link svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-cta-link:hover {
    gap: 13px;
    color: #8abcf0;
}


/* =========================================================
   CTA EQUAL PLATFORM RAIL
========================================================= */

.services-cta-platforms {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}

.services-cta-platforms > a {
    display: grid;

    grid-template-columns:
        28px
        minmax(0, 1fr)
        20px;

    gap: 12px;

    align-items: center;

    min-height: 88px;

    padding: 18px;

    color: inherit;

    border-right: 1px solid rgba(255,255,255,.1);

    transition: background .3s ease;
}

.services-cta-platforms > a:hover {
    background: rgba(66,139,219,.08);
}

.services-cta-platforms > a > span {
    color: #83b5e9;

    font-size: 9px;
    font-weight: 800;
}

.services-cta-platforms small {
    display: block;

    margin-bottom: 4px;

    color: #ba5069;

    font-size: 9px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: .5px;
}

.services-cta-platforms strong {
    display: block;

    color: #f0f6fc;

    font-size: 14px;
    line-height: 1.35;
    font-weight: 630;
}

.services-cta-platforms b {
    color: rgba(222,235,248,.6);

    font-size: 15px;
    font-weight: 400;

    transition: transform .25s ease;
}

.services-cta-platforms > a:hover b {
    transform: translateX(3px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes servicesFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes servicesHeroRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes servicesGridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 70px 70px;
    }
}

@keyframes servicesGlowOne {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-38px, 34px) scale(1.08);
    }
}

@keyframes servicesGlowTwo {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(42px, -28px) scale(1.08);
    }
}

@keyframes servicesCtaGlow {
    from {
        transform: translateY(-50%) scale(1);
    }

    to {
        transform: translateY(-50%) scale(1.12);
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1120px) {

    .services-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(365px, .9fr);

        gap: 55px;
    }

    .services-platform-scroll-layout,
    .services-capabilities-scroll-layout,
    .services-requirements-scroll-layout {
        gap: 65px;
    }

    .services-approach-head {
        grid-template-columns:
            190px
            minmax(320px, 1fr)
            minmax(230px, .55fr);

        gap: 35px;
    }

    .services-approach-rows article {
        grid-template-columns:
            45px
            145px
            minmax(190px, .7fr)
            minmax(260px, 1.3fr);

        gap: 20px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .services-hero {
        padding-top: 66px;
    }

    .services-hero-layout {
        grid-template-columns: 1fr;

        gap: 42px;

        padding: 45px 0 54px;
    }

    .services-hero-content {
        max-width: 760px;
    }

    .services-hero-architecture {
        max-width: 730px;
    }


    /* INTRO */

    .services-intro {
        padding: 72px 0;
    }

    .services-intro-layout {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .services-intro-heading {
        max-width: 650px;
    }

    .services-intro-content {
        max-width: 760px;
    }


    /* DISABLE STICKY */

    .services-platforms,
    .services-capabilities,
    .services-requirements {
        padding: 72px 0;
        overflow: hidden;
    }

    .services-platform-scroll-layout,
    .services-capabilities-scroll-layout,
    .services-requirements-scroll-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .services-platform-sticky,
    .services-capabilities-sticky,
    .services-requirements-sticky {
        align-self: auto;
    }

    .services-platform-sticky-inner,
    .services-capabilities-sticky-inner,
    .services-requirements-sticky-inner {
        position: static;

        max-width: 680px;
    }

    .services-capabilities-sticky {
        grid-row: 1;
    }

    .services-capabilities-scroll-list {
        grid-row: 2;
    }

    .services-platform-scroll-item,
    .services-capability-scroll-item,
    .services-requirement-scroll-item {
        opacity: 1;
    }

    .services-platform-scroll-item.is-active {
        transform: none;
    }


    /* APPROACH */

    .services-approach {
        padding: 72px 0;
    }

    .services-approach-head {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .services-approach-head
    .services-section-label {
        margin-top: 0;
    }

    .services-approach-head > p {
        max-width: 620px;
    }

    .services-approach-statement {
        grid-template-columns:
            45px
            minmax(0, 1fr);

        gap: 20px;
    }

    .services-approach-statement small {
        grid-column: 2;

        text-align: left;
    }

    .services-approach-rows article {
        grid-template-columns:
            45px
            140px
            minmax(0, 1fr);

        gap: 18px;
    }

    .services-approach-rows p {
        grid-column: 3;
    }


    /* CTA */

    .services-cta-layout {
        gap: 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .services-page {
        overflow: hidden;
    }


    /* SHARED */

    .services-section-label,
    .services-dark-label,
    .services-eyebrow {
        font-size: 9px;
    }


    /* HERO */

    .services-hero {
        padding-top: 48px;
    }

    .services-hero-grid {
        background-size: 46px 46px;
    }

    .services-hero-word {
        top: 120px;
        right: -15px;

        font-size: 72px;
        letter-spacing: -4px;
    }

    .services-hero-layout {
        gap: 34px;

        padding: 33px 0 41px;
    }

    .services-eyebrow {
        margin-bottom: 14px;
    }

    .services-hero-content h1 {
        font-size: 32px;
        line-height: 1.12;
        letter-spacing: -.8px;
    }

    .services-hero-content h1 span {
        display: inline;
    }

    .services-hero-lead {
        margin-top: 18px;

        font-size: 13px;
        line-height: 1.68;
    }

    .services-hero-copy {
        font-size: 11px;
        line-height: 1.7;
    }

    .services-hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 24px;
    }

    .services-hero-actions .site-btn {
        width: 100%;
    }


    /* HERO PLATFORM */

    .services-hero-architecture-head {
        padding-left: 14px;
    }

    .services-hero-platform {
        grid-template-columns:
            27px
            minmax(0, 1fr)
            30px;

        gap: 9px;

        padding: 17px 0 17px 14px;
    }

    .services-hero-platform:hover {
        padding-left: 14px;
    }

    .services-hero-platform-content strong {
        font-size: 14px;
    }

    .services-hero-platform-content p {
        font-size: 10px;
    }

    .services-hero-platform-arrow {
        width: 29px;
        height: 29px;
    }

    .services-hero-capabilities {
        flex-wrap: wrap;
        justify-content: flex-start;

        gap: 9px 12px;

        padding-left: 14px;
    }


    /* INTRO */

    .services-intro {
        padding: 58px 0;
    }

    .services-intro-heading h2,
    .services-platform-sticky h2,
    .services-capabilities-sticky h2,
    .services-requirements-sticky h2,
    .services-approach-head h2 {
        font-size: 28px;
        line-height: 1.18;
        letter-spacing: -.6px;
    }

    .services-intro-heading h2 span,
    .services-platform-sticky h2 span,
    .services-capabilities-sticky h2 span,
    .services-requirements-sticky h2 span,
    .services-approach-head h2 span {
        display: inline;
    }

    .services-intro-content {
        padding-left: 18px;
    }

    .services-intro-content
    .services-intro-lead {
        font-size: 13px;
    }

    .services-intro-content p {
        font-size: 11px;
    }


    /* PLATFORM SCROLL */

    .services-platforms {
        padding: 58px 0;
    }

    .services-platform-sticky-inner > p,
    .services-capabilities-sticky-inner > p,
    .services-requirements-sticky-inner > p {
        font-size: 11px;
    }

    .services-scroll-status,
    .services-capabilities-status,
    .services-requirements-status {
        margin-top: 29px;
    }

    .services-platform-scroll-item {
        padding: 28px 8px 30px;
    }

    .services-platform-scroll-item.is-active {
        transform: none;
    }

    .services-platform-scroll-top {
        margin-bottom: 23px;
    }

    .services-platform-scroll-main h3 {
        font-size: 24px;
    }

    .services-platform-scroll-main h4 {
        font-size: 14px;
    }

    .services-platform-scroll-main p {
        font-size: 10.7px;
    }

    .services-platform-scroll-capabilities {
        grid-template-columns: 1fr;

        gap: 0;

        margin-top: 20px;
    }

    .services-platform-scroll-capabilities span {
        font-size: 10px;
    }


    /* CAPABILITIES */

    .services-capabilities {
        padding: 58px 0;
    }

    .services-capabilities-sticky-inner {
        padding-left: 18px;
    }

    .services-capability-scroll-item {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 14px;

        padding: 26px 7px 27px 0;
    }

    .services-capability-scroll-item.is-active {
        padding-left: 12px;
    }

    .services-capability-scroll-content h3 {
        font-size: 16px;
    }

    .services-capability-scroll-content p {
        font-size: 10.7px;
    }


    /* REQUIREMENTS */

    .services-requirements {
        padding: 58px 0;
    }

    .services-requirements-word {
        left: -15px;

        font-size: 65px;
        letter-spacing: -4px;
    }

    .services-requirement-scroll-item {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 14px;

        padding: 26px 7px 27px 0;
    }

    .services-requirement-scroll-item.is-active {
        padding-left: 12px;
    }

    .services-requirement-scroll-item h3 {
        font-size: 15px;
    }

    .services-requirement-scroll-item p {
        font-size: 10.7px;
    }


    /* APPROACH */

    .services-approach {
        padding: 58px 0;
    }

    .services-approach-head {
        padding-bottom: 28px;
    }

    .services-approach-statement {
        grid-template-columns:
            35px
            minmax(0, 1fr);

        gap: 13px;

        padding: 29px 0;
    }

    .services-approach-statement-mark {
        font-size: 43px;
    }

    .services-approach-statement p {
        font-size: 15px;
    }

    .services-approach-statement small {
        grid-column: 2;

        font-size: 9px;
    }

    .services-approach-rows article {
        display: grid;

        grid-template-columns:
            34px
            minmax(0, 1fr);

        gap: 8px 13px;

        padding: 23px 0;
    }

    .services-approach-rows article:hover {
        padding-left: 0;
    }

    .services-approach-rows article > small {
        grid-column: 2;
    }

    .services-approach-rows h3 {
        grid-column: 2;

        font-size: 13.5px;
    }

    .services-approach-rows p {
        grid-column: 2;

        font-size: 10.7px;
    }


    /* CTA */

    .services-cta {
        padding-top: 52px;
    }

    .services-cta-word {
        font-size: 63px;
        letter-spacing: -4px;
    }

    .services-cta-top > small {
        display: none;
    }

    .services-cta-layout {
        grid-template-columns: 1fr;

        gap: 26px;

        padding: 35px 0 39px;
    }

    .services-cta-heading h2 {
        font-size: 29px;
        line-height: 1.17;
        letter-spacing: -.6px;
    }

    .services-cta-heading h2 span {
        display: inline;
    }

    .services-cta-content {
        max-width: none;

        padding-left: 18px;
    }

    .services-cta-content > p {
        font-size: 10.8px;
    }

    .services-cta-actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .services-cta-actions .site-btn {
        width: 100%;
    }

    .services-cta-platforms {
        grid-template-columns: 1fr;
    }

    .services-cta-platforms > a {
        min-height: 75px;

        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .services-cta-platforms > a:last-child {
        border-bottom: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .services-hero-content h1 {
        font-size: 29px;
    }

    .services-intro-heading h2,
    .services-platform-sticky h2,
    .services-capabilities-sticky h2,
    .services-requirements-sticky h2,
    .services-approach-head h2 {
        font-size: 26px;
    }

    .services-cta-heading h2 {
        font-size: 27px;
    }

    .services-hero-platform {
        grid-template-columns:
            24px
            minmax(0, 1fr)
            28px;
    }

    .services-platform-scroll-item {
        padding-left: 3px;
        padding-right: 3px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .services-hero-grid,
    .services-hero-glow,
    .services-hero-content,
    .services-hero-architecture,
    .services-cta-glow {
        animation: none !important;
    }

    .services-arrow-link,
    .services-hero-platform,
    .services-hero-platform-arrow,
    .services-platform-scroll-item,
    .services-platform-scroll-item::before,
    .services-scroll-progress > span,
    .services-scroll-item-link,
    .services-capability-scroll-item,
    .services-capability-scroll-item::before,
    .services-capabilities-progress > span,
    .services-capabilities-link,
    .services-requirement-scroll-item,
    .services-requirement-scroll-item::before,
    .services-requirements-progress > span,
    .services-approach-rows article,
    .services-cta-link,
    .services-cta-platforms > a,
    .services-cta-platforms b {
        transition: none !important;
    }
}