/* =========================================================
   LUCENT SOFT
   MAGENTO DEVELOPMENT PAGE
   File: assets/css/magento-development.css
========================================================= */

.magento-page {
    position: relative;
    overflow: clip;
    background: #ffffff;
    color: #1d3048;
}


/* =========================================================
   SHARED LABELS
========================================================= */

.magento-eyebrow,
.magento-section-label,
.magento-dark-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    font-size: 10px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.magento-eyebrow,
.magento-dark-label {
    color: #91bff0;
}

.magento-section-label {
    color: #1e5da8;
}

.magento-eyebrow::before,
.magento-section-label::before,
.magento-dark-label::before {
    content: "";

    width: 23px;
    height: 2px;

    flex: 0 0 auto;

    background: #9b1834;
}


/* =========================================================
   HERO
========================================================= */

.magento-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 76px 0 0;

    color: #ffffff;

    background:
        linear-gradient(
            124deg,
            #071426 0%,
            #0b1c33 48%,
            #143554 100%
        );
}

.magento-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -5;

    opacity: .55;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    animation: magentoGridMove 25s linear infinite;
}

.magento-hero::after {
    content: "";

    position: absolute;
    z-index: -3;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(72,146,221,.5),
            transparent
        );
}

.magento-hero-glow {
    position: absolute;
    z-index: -4;

    border-radius: 50%;
    pointer-events: none;
}

.magento-hero-glow-one {
    width: 720px;
    height: 720px;

    right: -290px;
    top: -330px;

    background:
        radial-gradient(
            circle,
            rgba(53,126,210,.2) 0%,
            rgba(53,126,210,.07) 42%,
            transparent 70%
        );

    animation: magentoGlowOne 12s ease-in-out infinite alternate;
}

.magento-hero-glow-two {
    width: 540px;
    height: 540px;

    left: -300px;
    bottom: -300px;

    background:
        radial-gradient(
            circle,
            rgba(155,24,52,.12),
            transparent 70%
        );

    animation: magentoGlowTwo 14s ease-in-out infinite alternate;
}

.magento-hero-word {
    position: absolute;
    z-index: -2;

    right: -45px;
    top: 145px;

    color: rgba(255,255,255,.018);

    font-size: clamp(105px, 12vw, 175px);
    line-height: .85;
    font-weight: 850;
    letter-spacing: -8px;

    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}


/* =========================================================
   HERO LAYOUT
========================================================= */

.magento-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, .92fr);

    gap: clamp(60px, 7.5vw, 110px);

    align-items: center;

    padding: 52px 0 68px;
}


/* =========================================================
   HERO BREADCRUMB
========================================================= */

.magento-hero-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 24px;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .65px;
}

.magento-hero-breadcrumb a {
    color: rgba(190,211,232,.5);

    transition: color .25s ease;
}

.magento-hero-breadcrumb a:hover {
    color: #ffffff;
}

.magento-hero-breadcrumb span {
    color: rgba(255,255,255,.2);
}

.magento-hero-breadcrumb strong {
    color: #8ebced;
    font-weight: 800;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.magento-hero-content {
    max-width: 700px;

    animation: magentoFadeUp .75s ease both;
}

.magento-eyebrow {
    margin-bottom: 17px;
}

.magento-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;
}

.magento-hero-content h1 span {
    display: block;

    margin-top: 5px;

    color: #83b8ed;
}

.magento-hero-lead {
    max-width: 650px;

    margin: 23px 0 0;

    color: rgba(237,245,252,.88);

    font-size: 14px;
    line-height: 1.72;
    font-weight: 510;
}

.magento-hero-copy {
    max-width: 630px;

    margin: 13px 0 0;

    color: rgba(197,215,233,.61);

    font-size: 12px;
    line-height: 1.75;
}

.magento-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 24px;

    margin-top: 30px;
}

.magento-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;
}

.magento-arrow-link svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.magento-arrow-link:hover {
    gap: 13px;
    color: #8fc0f1;
}


/* =========================================================
   HERO DEVELOPMENT SCOPE
========================================================= */

.magento-hero-scope {
    position: relative;

    border-top: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13);

    animation: magentoHeroRight .8s .08s ease both;
}

.magento-hero-scope::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            #a52846 0%,
            #428bd7 52%,
            rgba(66,139,215,.1) 100%
        );
}

.magento-hero-scope-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);
}

.magento-hero-scope-head span {
    color: #91bff0;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .85px;
}

.magento-hero-scope-head small {
    color: rgba(197,215,233,.45);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .7px;
}

.magento-hero-scope-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.magento-hero-scope-item {
    display: grid;

    grid-template-columns:
        32px
        minmax(0, 1fr);

    gap: 12px;

    min-height: 78px;

    padding: 17px 18px 17px 21px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    transition:
        background .3s ease,
        padding-left .3s ease;
}

.magento-hero-scope-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.08);
}

.magento-hero-scope-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.magento-hero-scope-item:hover {
    padding-left: 26px;

    background:
        linear-gradient(
            90deg,
            rgba(60,135,217,.1),
            transparent
        );
}

.magento-hero-scope-item > span {
    color: rgba(137,186,238,.56);

    font-size: 9px;
    font-weight: 800;
}

.magento-hero-scope-item small {
    display: block;

    margin-bottom: 5px;

    color: #c15870;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .55px;
}

.magento-hero-scope-item strong {
    display: block;

    color: #edf5fc;

    font-size: 12px;
    line-height: 1.45;
    font-weight: 620;
}

.magento-hero-scope-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 14px 18px 14px 21px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.magento-hero-scope-bottom span {
    color: rgba(194,213,232,.48);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .5px;
}

.magento-hero-scope-bottom i {
    width: 15px;
    height: 1px;

    background: rgba(255,255,255,.1);
}


/* =========================================================
   MAGENTO CONTEXT
========================================================= */

.magento-context {
    position: relative;

    padding: 94px 0;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );
}

.magento-context-top {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 41px;
    padding-bottom: 17px;

    border-bottom: 1px solid #d9e2eb;
}

.magento-context-line {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7e0e9,
            rgba(215,224,233,.15)
        );
}

.magento-context-top > small {
    flex: 0 0 auto;

    color: #8a97a5;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.magento-context-layout {
    display: grid;

    grid-template-columns:
        minmax(330px, .9fr)
        minmax(0, 1.1fr);

    gap: clamp(70px, 9vw, 135px);

    align-items: start;
}

.magento-context-heading h2 {
    max-width: 560px;

    margin: 0;

    color: #14213d;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.magento-context-heading h2 span {
    display: block;

    margin-top: 4px;

    color: #1e5da8;
}

.magento-context-content {
    position: relative;

    padding-left: 31px;

    border-left: 1px solid #d7e0e9;
}

.magento-context-content::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 2px;
    height: 74px;

    background:
        linear-gradient(
            #9b1834,
            #2c73bb
        );
}

.magento-context-content p {
    max-width: 690px;

    margin: 0 0 14px;

    color: #6f7e8f;

    font-size: 12.5px;
    line-height: 1.76;
}

.magento-context-content p:last-child {
    margin-bottom: 0;
}

.magento-context-content .magento-context-lead {
    color: #273d55;

    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 550;
}


/* =========================================================
   CONTEXT RAIL
========================================================= */

.magento-context-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    margin-top: 57px;

    border-top: 1px solid #d8e1ea;
    border-left: 1px solid #d8e1ea;
}

.magento-context-rail > div {
    position: relative;

    min-height: 150px;

    padding: 23px 20px;

    border-right: 1px solid #d8e1ea;
    border-bottom: 1px solid #d8e1ea;

    transition:
        background .3s ease,
        transform .3s ease;
}

.magento-context-rail > div:hover {
    z-index: 2;

    background: #f6f9fc;

    transform: translateY(-3px);
}

.magento-context-rail span {
    display: block;

    margin-bottom: 25px;

    color: #2c70b8;

    font-size: 10px;
    font-weight: 800;
}

.magento-context-rail strong {
    display: block;

    color: #20364f;

    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.magento-context-rail small {
    display: block;

    margin-top: 7px;

    color: #778596;

    font-size: 10.5px;
    line-height: 1.6;
}


/* =========================================================
   GENERIC SCROLL
========================================================= */

.magento-scroll-section {
    position: relative;
    overflow: visible;
}


/* =========================================================
   DEVELOPMENT SERVICES
========================================================= */

.magento-services {
    position: relative;
    isolation: isolate;

    overflow: visible;

    padding: 98px 0;

    color: #ffffff;

    background:
        linear-gradient(
            128deg,
            #081527 0%,
            #0d2038 53%,
            #153453 100%
        );
}

.magento-services-grid {
    position: absolute;
    inset: 0;
    z-index: -4;

    opacity: .48;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.02) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}

.magento-services-glow {
    position: absolute;
    z-index: -3;

    left: -320px;
    top: 25%;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(49,121,204,.14),
            transparent 70%
        );

    pointer-events: none;
}

.magento-services-word {
    position: absolute;
    z-index: -2;

    right: -35px;
    bottom: 85px;

    color: rgba(255,255,255,.017);

    font-size: clamp(100px, 11vw, 160px);
    line-height: .9;
    font-weight: 850;
    letter-spacing: -8px;

    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.magento-services-layout {
    display: grid;

    grid-template-columns:
        minmax(310px, .78fr)
        minmax(0, 1.22fr);

    gap: clamp(70px, 9vw, 135px);

    align-items: start;
}


/* =========================================================
   SERVICES STICKY
========================================================= */

.magento-services-sticky {
    position: relative;
    align-self: stretch;
}

.magento-services-sticky-inner {
    position: sticky;
    top: 118px;

    max-width: 465px;
}

.magento-services-sticky .magento-dark-label {
    margin-bottom: 18px;
}

.magento-services-sticky h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.magento-services-sticky h2 span {
    display: block;

    margin-top: 4px;

    color: #83b8ed;
}

.magento-services-sticky-inner > p {
    margin: 20px 0 0;

    color: rgba(196,214,232,.61);

    font-size: 12px;
    line-height: 1.76;
}


/* =========================================================
   SCROLL STATUS
========================================================= */

.magento-scroll-status {
    margin-top: 38px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.11);
}

.magento-scroll-status-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.magento-scroll-status-head > span {
    color: rgba(188,208,228,.48);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.magento-scroll-status-head strong {
    display: flex;
    align-items: baseline;
    gap: 3px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1;
    font-weight: 650;
}

.magento-scroll-status-head strong small {
    color: rgba(177,201,225,.43);

    font-size: 10px;
    font-weight: 700;
}

.magento-scroll-progress {
    overflow: hidden;

    height: 2px;

    margin-top: 14px;

    background: rgba(255,255,255,.1);
}

.magento-scroll-progress > span {
    display: block;

    width: 12.5%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #a62444,
            #4896e3
        );

    transition: width .4s cubic-bezier(.22,1,.36,1);
}

.magento-scroll-active {
    margin-top: 25px;

    padding-left: 18px;

    border-left: 2px solid #438bd5;
}

.magento-scroll-active small {
    display: block;

    margin-bottom: 7px;

    color: #c1556e;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.magento-scroll-active strong {
    display: block;

    max-width: 350px;

    color: #edf5fc;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 620;
}

.magento-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;
}

.magento-sticky-link svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.magento-sticky-link:hover {
    gap: 13px;
    color: #ffffff;
}


/* =========================================================
   SERVICE SCROLL ITEMS
========================================================= */

.magento-services-list {
    border-top: 1px solid rgba(255,255,255,.11);
}

.magento-service-item {
    position: relative;

    display: grid;

    grid-template-columns:
        50px
        minmax(0, 1fr);

    gap: 25px;

    padding: 34px 27px 35px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);

    opacity: .4;

    transition:
        opacity .38s ease,
        padding-left .38s ease,
        background .38s ease;
}

.magento-service-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background:
        linear-gradient(
            #ad2c4a,
            #438dd8
        );

    transform: scaleY(0);
    transform-origin: center;

    transition:
        transform .38s cubic-bezier(.22,1,.36,1);
}

.magento-service-item.is-active {
    opacity: 1;

    padding-left: 20px;

    background:
        linear-gradient(
            90deg,
            rgba(60,134,215,.085),
            transparent 84%
        );
}

.magento-service-item.is-active::before {
    transform: scaleY(1);
}

.magento-service-number {
    color: #8dbcef;

    font-size: 10px;
    font-weight: 800;
}

.magento-service-content > small {
    display: block;

    margin-bottom: 8px;

    color: #c25870;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.magento-service-content h3 {
    max-width: 560px;

    margin: 0;

    color: #f2f7fc;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 650;
}

.magento-service-content > p {
    max-width: 610px;

    margin: 9px 0 0;

    color: rgba(195,213,231,.59);

    font-size: 11.5px;
    line-height: 1.72;
}

.magento-service-details {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 20px;

    margin-top: 17px;
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.magento-service-details span {
    position: relative;

    padding-left: 12px;

    color: rgba(216,229,241,.66);

    font-size: 10px;
    line-height: 1.5;
    font-weight: 550;
}

.magento-service-details span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 5px;
    height: 1px;

    background: #69a3de;
}


/* =========================================================
   COMMERCE ARCHITECTURE
========================================================= */

.magento-architecture {
    position: relative;
    overflow: hidden;

    padding: 98px 0;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );
}

.magento-architecture::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -280px;
    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37,105,177,.07),
            transparent 70%
        );
}

.magento-architecture-head {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .85fr);

    gap: 75px;

    align-items: end;

    padding-bottom: 39px;

    border-bottom: 1px solid #d9e2eb;
}

.magento-architecture-head .magento-section-label {
    margin-bottom: 18px;
}

.magento-architecture-head h2 {
    max-width: 680px;

    margin: 0;

    color: #14213d;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.magento-architecture-head h2 span {
    display: block;

    margin-top: 4px;

    color: #1e5da8;
}

.magento-architecture-head > p {
    max-width: 490px;

    margin: 0;

    color: #728193;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   ARCHITECTURE MAP
========================================================= */

.magento-architecture-map {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(250px, 1fr)
        240px
        minmax(250px, 1fr);

    gap: 45px;

    align-items: center;

    margin-top: 64px;
}

.magento-architecture-map::before {
    content: "";

    position: absolute;

    left: 19%;
    right: 19%;
    top: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #cbd8e5 15%,
            #aac5df 50%,
            #cbd8e5 85%,
            transparent
        );

    pointer-events: none;
}

.magento-architecture-side {
    position: relative;
    z-index: 2;

    display: grid;
    gap: 22px;
}

.magento-architecture-node {
    position: relative;

    display: grid;

    grid-template-columns:
        37px
        minmax(0, 1fr);

    gap: 16px;

    min-height: 142px;

    padding: 25px;

    background: rgba(255,255,255,.92);

    border-top: 1px solid #d5e0ea;
    border-bottom: 1px solid #d5e0ea;

    transition:
        transform .3s ease,
        background .3s ease;
}

.magento-architecture-left
.magento-architecture-node {
    border-left: 2px solid #2b70b7;
}

.magento-architecture-right
.magento-architecture-node {
    border-right: 2px solid #2b70b7;
}

.magento-architecture-node:hover {
    transform: translateY(-3px);
    background: #f7fafd;
}

.magento-architecture-node > span {
    color: #2b70b7;

    font-size: 10px;
    font-weight: 800;
}

.magento-architecture-node small {
    display: block;

    margin-bottom: 7px;

    color: #9b1834;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .65px;
}

.magento-architecture-node strong {
    display: block;

    color: #20364f;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 650;
}

.magento-architecture-node p {
    margin: 7px 0 0;

    color: #788696;

    font-size: 10.5px;
    line-height: 1.65;
}


/* =========================================================
   ARCHITECTURE CORE
========================================================= */

.magento-architecture-core {
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 210px;
    height: 210px;

    margin: 0 auto;

    text-align: center;

    border: 1px solid #c5d6e6;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #ffffff 0%,
            #f6f9fc 72%
        );

    box-shadow:
        0 22px 55px rgba(18,49,82,.08);
}

.magento-architecture-core-ring {
    position: absolute;

    inset: 12px;

    border: 1px dashed #b8cde1;
    border-radius: 50%;

    animation: magentoCoreRotate 28s linear infinite;
}

.magento-architecture-core::before,
.magento-architecture-core::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #9b1834;
}

.magento-architecture-core::before {
    top: 31px;
    right: 37px;
}

.magento-architecture-core::after {
    left: 29px;
    bottom: 45px;

    background: #2e75bd;
}

.magento-architecture-core > small {
    position: relative;
    z-index: 2;

    color: #8593a2;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .6px;
}

.magento-architecture-core > strong {
    position: relative;
    z-index: 2;

    display: block;

    margin-top: 7px;

    color: #153452;

    font-size: 27px;
    line-height: 1.1;
    font-weight: 720;
    letter-spacing: -.6px;
}

.magento-architecture-core > span {
    position: relative;
    z-index: 2;

    margin-top: 8px;

    color: #9b1834;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================================
   EXISTING MAGENTO STORE
========================================================= */

.magento-existing {
    position: relative;
    isolation: isolate;

    overflow: visible;

    padding: 98px 0;

    color: #ffffff;

    background:
        linear-gradient(
            125deg,
            #081527 0%,
            #10233d 55%,
            #173654 100%
        );
}

.magento-existing-grid {
    position: absolute;
    inset: 0;
    z-index: -3;

    opacity: .47;

    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;

    pointer-events: none;
}

.magento-existing-word {
    position: absolute;
    z-index: -2;

    left: -25px;
    bottom: 55px;

    color: rgba(255,255,255,.017);

    font-size: clamp(100px, 11vw, 160px);
    line-height: .9;
    font-weight: 850;
    letter-spacing: -8px;

    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.magento-existing-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(310px, .82fr);

    gap: clamp(70px, 9vw, 135px);

    align-items: start;
}


/* =========================================================
   EXISTING LIST
========================================================= */

.magento-existing-list {
    border-top: 1px solid rgba(255,255,255,.11);
}

.magento-existing-item {
    position: relative;

    display: grid;

    grid-template-columns:
        50px
        minmax(0, 1fr);

    gap: 24px;

    padding: 33px 25px 34px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);

    opacity: .4;

    transition:
        opacity .38s ease,
        padding-left .38s ease,
        background .38s ease;
}

.magento-existing-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background:
        linear-gradient(
            #a92a48,
            #438bd6
        );

    transform: scaleY(0);
    transform-origin: center;

    transition:
        transform .38s cubic-bezier(.22,1,.36,1);
}

.magento-existing-item.is-active {
    opacity: 1;

    padding-left: 20px;

    background:
        linear-gradient(
            90deg,
            rgba(60,134,215,.085),
            transparent 84%
        );
}

.magento-existing-item.is-active::before {
    transform: scaleY(1);
}

.magento-existing-item > span {
    color: #8dbcef;

    font-size: 10px;
    font-weight: 800;
}

.magento-existing-item small {
    display: block;

    margin-bottom: 8px;

    color: #c25870;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.magento-existing-item h3 {
    max-width: 560px;

    margin: 0;

    color: #f1f6fb;

    font-size: 17px;
    line-height: 1.42;
    font-weight: 640;
}

.magento-existing-item p {
    max-width: 600px;

    margin: 9px 0 0;

    color: rgba(195,213,231,.58);

    font-size: 11.5px;
    line-height: 1.72;
}


/* =========================================================
   EXISTING STICKY
========================================================= */

.magento-existing-sticky {
    position: relative;
    align-self: stretch;
}

.magento-existing-sticky-inner {
    position: sticky;
    top: 118px;

    max-width: 455px;

    padding-left: 29px;

    border-left: 1px solid rgba(255,255,255,.12);
}

.magento-existing-sticky-inner::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 2px;
    height: 82px;

    background:
        linear-gradient(
            #a42645,
            #448dd8
        );
}

.magento-existing-sticky .magento-dark-label {
    margin-bottom: 18px;
}

.magento-existing-sticky h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.magento-existing-sticky h2 span {
    display: block;

    margin-top: 4px;

    color: #83b8ed;
}

.magento-existing-sticky-inner > p {
    margin: 20px 0 0;

    color: rgba(196,214,232,.6);

    font-size: 12px;
    line-height: 1.75;
}

.magento-existing-status {
    margin-top: 38px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.11);
}

.magento-existing-status-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.magento-existing-status-head > span {
    color: rgba(188,208,228,.47);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.magento-existing-status-head strong {
    display: flex;
    align-items: baseline;
    gap: 3px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1;
    font-weight: 650;
}

.magento-existing-status-head strong small {
    color: rgba(177,201,225,.43);

    font-size: 10px;
}

.magento-existing-progress {
    overflow: hidden;

    height: 2px;

    margin-top: 14px;

    background: rgba(255,255,255,.1);
}

.magento-existing-progress > span {
    display: block;

    width: 16.666%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #a62444,
            #4896e3
        );

    transition: width .4s cubic-bezier(.22,1,.36,1);
}

.magento-existing-active {
    margin-top: 25px;

    padding-left: 18px;

    border-left: 2px solid #438bd6;
}

.magento-existing-active small {
    display: block;

    margin-bottom: 7px;

    color: #c1556e;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.magento-existing-active strong {
    display: block;

    color: #edf5fc;

    font-size: 16px;
    line-height: 1.45;
    font-weight: 620;
}

.magento-existing-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 27px;

    color: #91c0f1;

    font-size: 11px;
    font-weight: 700;

    transition:
        gap .25s ease,
        color .25s ease;
}

.magento-existing-link svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.magento-existing-link:hover {
    gap: 13px;
    color: #ffffff;
}


/* =========================================================
   PRINCIPLES
========================================================= */

.magento-principles {
    position: relative;

    padding: 98px 0;

    background: #ffffff;
}

.magento-principles-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, .9fr);

    gap: 75px;

    align-items: end;

    padding-bottom: 39px;

    border-bottom: 1px solid #d9e2eb;
}

.magento-principles-intro .magento-section-label {
    margin-bottom: 18px;
}

.magento-principles-intro h2 {
    max-width: 670px;

    margin: 0;

    color: #14213d;

    font-size: clamp(32px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -1px;
}

.magento-principles-intro h2 span {
    display: block;

    margin-top: 4px;

    color: #1e5da8;
}

.magento-principles-intro > p {
    max-width: 500px;

    margin: 0;

    color: #718092;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   PRINCIPLE ROWS
========================================================= */

.magento-principles-list {
    border-bottom: 1px solid #d9e2eb;
}

.magento-principles-list article {
    position: relative;

    display: grid;

    grid-template-columns:
        50px
        170px
        minmax(220px, .72fr)
        minmax(300px, 1.28fr);

    gap: 25px;

    align-items: start;

    padding: 28px 0;

    border-bottom: 1px solid #e0e7ee;

    transition:
        padding-left .3s ease,
        background .3s ease;
}

.magento-principles-list article:last-child {
    border-bottom: 0;
}

.magento-principles-list article:hover {
    padding-left: 14px;

    background:
        linear-gradient(
            90deg,
            rgba(30,93,168,.045),
            transparent
        );
}

.magento-principles-list article > span {
    color: #2c70b7;

    font-size: 10px;
    font-weight: 800;
}

.magento-principles-list article > small {
    color: #9b1834;

    font-size: 9px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: .65px;
}

.magento-principles-list h3 {
    margin: 0;

    color: #233951;

    font-size: 14px;
    line-height: 1.45;
    font-weight: 650;
}

.magento-principles-list p {
    max-width: 530px;

    margin: 0;

    color: #748293;

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   STATEMENT
========================================================= */

.magento-statement {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 66px 0;

    color: #ffffff;

    background: #10233c;
}

.magento-statement-grid {
    position: absolute;
    inset: 0;
    z-index: -1;

    opacity: .5;

    background-image:
        linear-gradient(
            rgba(255,255,255,.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.02) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.magento-statement-layout {
    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1fr)
        190px;

    gap: 50px;

    align-items: center;
}

.magento-statement-index {
    align-self: stretch;

    display: flex;
    align-items: center;

    padding-right: 25px;

    color: rgba(153,193,234,.56);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;

    border-right: 1px solid rgba(255,255,255,.11);
}

.magento-statement-content small {
    display: block;

    margin-bottom: 11px;

    color: #c25770;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .75px;
}

.magento-statement-content blockquote {
    max-width: 850px;

    margin: 0;

    color: #edf5fc;

    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.5;
    font-weight: 540;
    letter-spacing: -.3px;
}

.magento-statement-meta {
    padding-left: 25px;

    border-left: 1px solid rgba(255,255,255,.11);
}

.magento-statement-meta span {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.magento-statement-meta small {
    display: block;

    margin-top: 5px;

    color: rgba(187,208,228,.46);

    font-size: 9px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: .55px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.magento-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 75px 0 0;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            #071426 0%,
            #0d2038 52%,
            #173858 100%
        );
}

.magento-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;
}

.magento-cta-glow {
    position: absolute;
    z-index: -3;

    right: -250px;
    top: 40%;

    width: 580px;
    height: 580px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(55,130,215,.19),
            transparent 70%
        );

    animation: magentoCtaGlow 10s ease-in-out infinite alternate;
}

.magento-cta-word {
    position: absolute;
    z-index: -2;

    right: -30px;
    bottom: 50px;

    color: rgba(255,255,255,.017);

    font-size: clamp(90px, 10vw, 145px);
    line-height: .9;
    font-weight: 850;
    letter-spacing: -7px;

    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}


/* CTA TOP */

.magento-cta-top {
    display: flex;
    align-items: center;

    gap: 16px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255,255,255,.11);
}

.magento-cta-top > span {
    color: #8ab9eb;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
}

.magento-cta-top > div {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.14),
            rgba(255,255,255,.02)
        );
}

.magento-cta-top > small {
    flex: 0 0 auto;

    color: rgba(190,209,229,.43);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}


/* CTA LAYOUT */

.magento-cta-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(340px, .92fr);

    gap: clamp(65px, 8vw, 115px);

    align-items: center;

    padding: 49px 0 52px;
}

.magento-cta-heading .magento-dark-label {
    margin-bottom: 17px;
}

.magento-cta-heading h2 {
    max-width: 680px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 3.25vw, 42px);
    line-height: 1.14;
    font-weight: 710;
    letter-spacing: -1.1px;
}

.magento-cta-heading h2 span {
    display: block;

    margin-top: 4px;

    color: #82b6ee;
}

.magento-cta-content {
    max-width: 500px;

    padding-left: 28px;

    border-left: 1px solid rgba(255,255,255,.13);
}

.magento-cta-content p {
    margin: 0 0 12px;

    color: rgba(196,214,232,.6);

    font-size: 11.5px;
    line-height: 1.73;
}

.magento-cta-content p:last-of-type {
    margin-bottom: 0;
}

.magento-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 21px;

    margin-top: 24px;
}

.magento-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;
}

.magento-cta-link svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.magento-cta-link:hover {
    gap: 13px;
    color: #8abcf0;
}


/* =========================================================
   CTA BOTTOM
========================================================= */

.magento-cta-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    min-height: 72px;

    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,.1);
}

.magento-cta-bottom span {
    color: rgba(201,218,235,.51);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .55px;
}

.magento-cta-bottom i {
    width: 18px;
    height: 1px;

    flex: 0 0 auto;

    background: rgba(255,255,255,.11);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes magentoFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes magentoHeroRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes magentoGridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 70px 70px;
    }
}

@keyframes magentoGlowOne {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-38px, 32px) scale(1.08);
    }
}

@keyframes magentoGlowTwo {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, -28px) scale(1.08);
    }
}

@keyframes magentoCoreRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes magentoCtaGlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1120px) {

    .magento-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(370px, .9fr);

        gap: 55px;
    }

    .magento-services-layout,
    .magento-existing-layout {
        gap: 65px;
    }

    .magento-architecture-map {
        grid-template-columns:
            minmax(230px, 1fr)
            205px
            minmax(230px, 1fr);

        gap: 30px;
    }

    .magento-architecture-core {
        width: 190px;
        height: 190px;
    }

    .magento-principles-list article {
        grid-template-columns:
            45px
            145px
            minmax(190px, .7fr)
            minmax(260px, 1.3fr);

        gap: 20px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .magento-hero {
        padding-top: 62px;
    }

    .magento-hero-layout {
        grid-template-columns: 1fr;

        gap: 42px;

        padding: 45px 0 55px;
    }

    .magento-hero-content {
        max-width: 760px;
    }

    .magento-hero-scope {
        max-width: 740px;
    }


    /* CONTEXT */

    .magento-context {
        padding: 74px 0;
    }

    .magento-context-layout {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .magento-context-heading {
        max-width: 680px;
    }

    .magento-context-content {
        max-width: 760px;
    }

    .magento-context-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* STICKY OFF */

    .magento-services,
    .magento-existing {
        overflow: hidden;

        padding: 74px 0;
    }

    .magento-services-layout,
    .magento-existing-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .magento-services-sticky,
    .magento-existing-sticky {
        align-self: auto;
    }

    .magento-services-sticky-inner,
    .magento-existing-sticky-inner {
        position: static;

        max-width: 680px;
    }

    .magento-existing-sticky {
        grid-row: 1;
    }

    .magento-existing-list {
        grid-row: 2;
    }

    .magento-service-item,
    .magento-existing-item {
        opacity: 1;
    }


    /* ARCHITECTURE */

    .magento-architecture {
        padding: 74px 0;
    }

    .magento-architecture-head {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .magento-architecture-head > p {
        max-width: 680px;
    }

    .magento-architecture-map {
        grid-template-columns: 1fr;

        gap: 26px;

        max-width: 740px;
        margin-left: auto;
        margin-right: auto;
    }

    .magento-architecture-map::before {
        left: 50%;
        right: auto;
        top: 9%;
        bottom: 9%;

        width: 1px;
        height: auto;

        background:
            linear-gradient(
                180deg,
                transparent,
                #cbd8e5 15%,
                #aac5df 50%,
                #cbd8e5 85%,
                transparent
            );
    }

    .magento-architecture-core {
        grid-row: 2;

        width: 190px;
        height: 190px;
    }

    .magento-architecture-right {
        grid-row: 3;
    }

    .magento-architecture-node {
        background: #ffffff;
    }

    .magento-architecture-right
    .magento-architecture-node {
        border-right: 0;
        border-left: 2px solid #2b70b7;
    }


    /* PRINCIPLES */

    .magento-principles {
        padding: 74px 0;
    }

    .magento-principles-intro {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .magento-principles-intro > p {
        max-width: 680px;
    }

    .magento-principles-list article {
        grid-template-columns:
            45px
            140px
            minmax(0, 1fr);

        gap: 18px;
    }

    .magento-principles-list p {
        grid-column: 3;
    }


    /* STATEMENT */

    .magento-statement-layout {
        grid-template-columns:
            120px
            minmax(0, 1fr);

        gap: 35px;
    }

    .magento-statement-meta {
        grid-column: 2;

        padding-left: 0;

        border-left: 0;
    }


    /* CTA */

    .magento-cta-layout {
        gap: 45px;
    }

    .magento-cta-bottom {
        flex-wrap: wrap;
        justify-content: flex-start;

        gap: 12px 18px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .magento-page {
        overflow: hidden;
    }

    .magento-eyebrow,
    .magento-section-label,
    .magento-dark-label {
        font-size: 9px;
    }


    /* HERO */

    .magento-hero {
        padding-top: 46px;
    }

    .magento-hero-grid {
        background-size: 46px 46px;
    }

    .magento-hero-word {
        top: 140px;
        right: -18px;

        font-size: 72px;
        letter-spacing: -4px;
    }

    .magento-hero-layout {
        gap: 34px;

        padding: 33px 0 42px;
    }

    .magento-hero-breadcrumb {
        gap: 6px;

        margin-bottom: 19px;

        font-size: 8px;
    }

    .magento-eyebrow {
        margin-bottom: 14px;
    }

    .magento-hero-content h1 {
        font-size: 32px;
        line-height: 1.12;
        letter-spacing: -.8px;
    }

    .magento-hero-content h1 span {
        display: inline;
    }

    .magento-hero-lead {
        margin-top: 18px;

        font-size: 13px;
        line-height: 1.68;
    }

    .magento-hero-copy {
        font-size: 11px;
        line-height: 1.7;
    }

    .magento-hero-actions {
        display: grid;
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 24px;
    }

    .magento-hero-actions .site-btn {
        width: 100%;
    }


    /* HERO SCOPE */

    .magento-hero-scope-head {
        padding-left: 14px;
    }

    .magento-hero-scope-list {
        grid-template-columns: 1fr;
    }

    .magento-hero-scope-item {
        min-height: 0;

        padding: 16px 13px 16px 14px;

        border-right: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.08) !important;
    }

    .magento-hero-scope-item:last-child {
        border-bottom: 0 !important;
    }

    .magento-hero-scope-item:hover {
        padding-left: 14px;
    }

    .magento-hero-scope-bottom {
        flex-wrap: wrap;
        justify-content: flex-start;

        padding-left: 14px;
    }


    /* CONTEXT */

    .magento-context {
        padding: 58px 0;
    }

    .magento-context-top {
        margin-bottom: 29px;
    }

    .magento-context-top > small {
        display: none;
    }

    .magento-context-heading h2,
    .magento-services-sticky h2,
    .magento-architecture-head h2,
    .magento-existing-sticky h2,
    .magento-principles-intro h2 {
        font-size: 28px;
        line-height: 1.18;
        letter-spacing: -.6px;
    }

    .magento-context-heading h2 span,
    .magento-services-sticky h2 span,
    .magento-architecture-head h2 span,
    .magento-existing-sticky h2 span,
    .magento-principles-intro h2 span {
        display: inline;
    }

    .magento-context-content {
        padding-left: 18px;
    }

    .magento-context-content .magento-context-lead {
        font-size: 13px;
    }

    .magento-context-content p {
        font-size: 11px;
    }

    .magento-context-rail {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .magento-context-rail > div {
        min-height: 0;

        padding: 20px 18px;
    }

    .magento-context-rail span {
        margin-bottom: 13px;
    }


    /* SERVICES */

    .magento-services {
        padding: 58px 0;
    }

    .magento-services-sticky-inner > p,
    .magento-existing-sticky-inner > p {
        font-size: 11px;
    }

    .magento-scroll-status,
    .magento-existing-status {
        margin-top: 29px;
    }

    .magento-service-item {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 14px;

        padding: 27px 7px 28px 0;
    }

    .magento-service-item.is-active {
        padding-left: 12px;
    }

    .magento-service-content h3 {
        font-size: 16px;
    }

    .magento-service-content > p {
        font-size: 10.8px;
    }

    .magento-service-details {
        display: grid;

        grid-template-columns: 1fr;

        gap: 7px;
    }


    /* ARCHITECTURE */

    .magento-architecture {
        padding: 58px 0;
    }

    .magento-architecture-head {
        padding-bottom: 28px;
    }

    .magento-architecture-head > p {
        font-size: 11px;
    }

    .magento-architecture-map {
        margin-top: 42px;
    }

    .magento-architecture-node {
        grid-template-columns:
            32px
            minmax(0, 1fr);

        gap: 12px;

        min-height: 0;

        padding: 20px 17px;
    }

    .magento-architecture-node strong {
        font-size: 13px;
    }

    .magento-architecture-node p {
        font-size: 10px;
    }

    .magento-architecture-core {
        width: 165px;
        height: 165px;
    }

    .magento-architecture-core > strong {
        font-size: 23px;
    }


    /* EXISTING */

    .magento-existing {
        padding: 58px 0;
    }

    .magento-existing-sticky-inner {
        padding-left: 18px;
    }

    .magento-existing-item {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 14px;

        padding: 27px 7px 28px 0;
    }

    .magento-existing-item.is-active {
        padding-left: 12px;
    }

    .magento-existing-item h3 {
        font-size: 15px;
    }

    .magento-existing-item p {
        font-size: 10.8px;
    }


    /* PRINCIPLES */

    .magento-principles {
        padding: 58px 0;
    }

    .magento-principles-intro {
        padding-bottom: 28px;
    }

    .magento-principles-intro > p {
        font-size: 11px;
    }

    .magento-principles-list article {
        grid-template-columns:
            34px
            minmax(0, 1fr);

        gap: 8px 13px;

        padding: 23px 0;
    }

    .magento-principles-list article:hover {
        padding-left: 0;
    }

    .magento-principles-list article > small,
    .magento-principles-list h3,
    .magento-principles-list p {
        grid-column: 2;
    }

    .magento-principles-list h3 {
        font-size: 13.5px;
    }

    .magento-principles-list p {
        font-size: 10.8px;
    }


    /* STATEMENT */

    .magento-statement {
        padding: 52px 0;
    }

    .magento-statement-layout {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .magento-statement-index {
        min-height: auto;

        padding: 0 0 14px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.11);
    }

    .magento-statement-content blockquote {
        font-size: 17px;
        line-height: 1.55;
    }

    .magento-statement-meta {
        grid-column: 1;

        padding-top: 15px;

        border-top: 1px solid rgba(255,255,255,.1);
    }


    /* CTA */

    .magento-cta {
        padding-top: 52px;
    }

    .magento-cta-word {
        font-size: 65px;
        letter-spacing: -4px;
    }

    .magento-cta-top > small {
        display: none;
    }

    .magento-cta-layout {
        grid-template-columns: 1fr;

        gap: 27px;

        padding: 36px 0 40px;
    }

    .magento-cta-heading h2 {
        font-size: 29px;
        line-height: 1.17;
        letter-spacing: -.6px;
    }

    .magento-cta-heading h2 span {
        display: inline;
    }

    .magento-cta-content {
        max-width: none;

        padding-left: 18px;
    }

    .magento-cta-content p {
        font-size: 10.8px;
    }

    .magento-cta-actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .magento-cta-actions .site-btn {
        width: 100%;
    }

    .magento-cta-bottom {
        gap: 10px 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .magento-hero-content h1 {
        font-size: 29px;
    }

    .magento-context-heading h2,
    .magento-services-sticky h2,
    .magento-architecture-head h2,
    .magento-existing-sticky h2,
    .magento-principles-intro h2 {
        font-size: 26px;
    }

    .magento-cta-heading h2 {
        font-size: 27px;
    }

    .magento-hero-scope-head {
        gap: 10px;
    }

    .magento-hero-scope-head small {
        display: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .magento-hero-grid,
    .magento-hero-glow,
    .magento-hero-content,
    .magento-hero-scope,
    .magento-architecture-core-ring,
    .magento-cta-glow {
        animation: none !important;
    }

    .magento-arrow-link,
    .magento-hero-scope-item,
    .magento-context-rail > div,
    .magento-scroll-progress > span,
    .magento-service-item,
    .magento-service-item::before,
    .magento-sticky-link,
    .magento-architecture-node,
    .magento-existing-item,
    .magento-existing-item::before,
    .magento-existing-progress > span,
    .magento-existing-link,
    .magento-principles-list article,
    .magento-cta-link {
        transition: none !important;
    }
}