html {
    scroll-behavior: smooth;
    font: 20px 'Manrope', sans-serif;
}

body {
    margin: 0;    
}

/* custom properties */
:root {
    --primary-color: #7C3AED;
    --secondary-color: #2563EB;
    --logo-color: #102F6A;
    --theme-gradient: linear-gradient(-270deg, var(--primary-color) 0.11%, var(--secondary-color) 99.89%);

    --core-width: 800px;
    --inner-bezel: 163px;
    --outer-bleed: 1fr;
    --standart-grid: [windowel-start] var(--outer-bleed) [outer-start] var(--inner-bezel) [core-start] var(--core-width) [core-end] var(--inner-bezel) [outer-end] var(--outer-bleed) [windowel-end];
}

.hidden {
    display: none !important;
}

.hidden-visually {
    /* display: none; */
    margin-top: -100px;
    position:fixed
}

a:has(img:only-child, svg:only-child) {
    font-size: 0;
}

.icon {
    min-width: 1rem;
    min-height: 1rem;
    &.tick {
        width: 1.2rem;
        height: 1.2rem;
        margin-right: 1rem;
        vertical-align: middle;
    }   
}

.nobr {
    white-space: nowrap;
}

/* layout styles */
.site-grid  {
    width: 100%;
    display: grid;
    grid-template-columns: var(--standart-grid);
}
.site-header {
    display: grid;
    grid-column: windowel-start / windowel-end;
    grid-template-columns: subgrid;
    justify-content: center;
    align-items: center;
    .header-content {
        grid-column: outer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 0 1.75rem;
    }
}


.site-content {
    display: grid;
    background: #F5F7FA;
    grid-column: windowel-start / windowel-end;
    grid-template-columns: subgrid;
    justify-content: center;
    align-items: center;
    section {
        box-sizing: border-box;
        position: relative;
        display: grid;
        grid-column: windowel-start / windowel-end;
        grid-template-columns: subgrid;
        justify-content: center;
        align-items: center;
        margin-top: 3.5rem;
    }
}



.hero-content,
.enrich-content,
.feed-content {
    grid-column: outer;
}

.added-value-content,

.brain-content,
.ally-content,
.snap-content,
.edge-content,
.armor-content,
.form-content {
    grid-column: core;
}

.hero-section {
    grid-template-columns: [windowel-start] var(--outer-bleed) [outer-start] 1256px [mid-line] 470px [outer-end] var(--outer-bleed) [windowel-end]!important;
}

.hero-back {
    position: absolute;
    grid-column: windowel-start / mid-line;
    width: 100%;
    height: 100%;
    display: block;
    background: var(--logo-color);
    border-radius: 0 10px 10px 0;

}
.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: subgrid;
    .signin-button {
        display: none;
    }
}

.enrich-section {
    background: linear-gradient(47deg, #102F6A 26.59%, #2563EB 185.16%);
    color: white;
}

.feed-agregator-section {
    grid-column: outer!important;
    background: var(--theme-gradient);
    color: white;
    border-radius: 10px;
}

.ally-section {
    grid-column: outer!important;
    background: var(--logo-color);
    color: white;
    border-radius: 10px;
}

.edge-section {
    background: var(--theme-gradient);
    color: white;
}

.form-section {
    background: var(--logo-color);
    color: white;
}

.site-footer {
    grid-column: windowel-start / windowel-end;
    background: var(--theme-gradient);
    color: #fff;
    display: flex;
    .footer-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1rem auto;
        a {
            display: inline-block;
            padding: 1.5rem 1rem;
            text-decoration: none;
            color: inherit;
            font: 400 .8rem/1.2 'Manrope', sans-serif;
        }
    }
}

.to-top {
    position: fixed;
    width: 76px;
    aspect-ratio: 1;
    bottom: -80px;
    right: 20px;
    border: none;
    padding: 0  ;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    .icon {
        width: 100%;
        height: 100%;
    }
}

/* buttons */

.button {
    display: inline-block;
    padding: 0.5rem 1.25rem;    
    border-radius: 8px;
    font: normal .9rem/1.25rem 'Manrope', sans-serif;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease, color 0.3s ease;
    color: #000;
    &.demo-button {
        background: var(--primary-color);
        color: #fff;
    }
    &.signin-button {
        background: transparent;
        color: #7C3AED;
        border: 1px solid var(--logo-color);
    }

    nav & {
        margin-left: .75rem; 
        min-width: 7.25rem;
        text-align: center;
        box-sizing: border-box;        
    }
}

/* gradient text and titles */
.gradient-txt {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

.big-title {
    font: 300 6.4rem/1.2 'Manrope', sans-serif;
    margin: 0 0 4rem;
}

.section-title {
    font: 800 1.8rem/1.2 'Manrope', sans-serif;
    margin: 0;
}
.section-description {
    font: normal .8rem/1.2 'Manrope', sans-serif;
    margin: 1rem 0 2.5rem 0;
}

/* common DL list */

dl {
    display: flex;
    flex-direction: column; 
    flex-wrap: wrap;
    margin: 0;
    & > div {
        width: 45%;
        display: grid;
        grid-template-columns: 1.2rem 1fr;
        margin-bottom: 1.5rem;
        gap: 1rem
    }
    .icon.tick { 
        fill: var(--secondary-color)
    }
    dt {
        display: inline;
        font-weight: 600;
    }
    dd {
        display: inline;
        margin: 0;
    }
}

/* hero */

.hero-visual {
    display: flex;
    justify-content: space-between;
    color: #fff;  
    padding: 4rem 3.5rem 3.5rem 0; 
}

.text-info {
    max-width: 650px;
    margin-right: -5rem;
}

.hero-title {
    font: 800 2.7rem/1.2 'Manrope', sans-serif;
    margin-top: 1rem;
    background:linear-gradient( -270deg,
    #fff 0%,
    #fff 40%,
    #7C3AED 60%,
    #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-clip: text;
    background-size: 230% 100%;
    background-position: 0% 0%;
    transition: background-position 0.6s ease;
}

.ai-span {
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: #fff;
    .nb-image {
        position: absolute;
        z-index: 20;
        width: 2.8rem;
        height: auto;
        top: 5px;
        left: 0;
        background-color: var(--logo-color);
        opacity: 0;
        transition: opacity 0.6s ease;
    }
}

.hero-subtitle {
    font: normal 1.2rem/1.4 'Manrope', sans-serif;
    margin: .75rem 6rem 1.5rem 0;  
    color: #C6D4EF;
}

img.hero-image {
    max-width: 604px;
    width: 50%;
    height: auto;
    top: 90px;
}

/* key features nav */

.key-features {
    padding: 2.5rem 0 0 2.25rem;
    h3 {
        margin: 0;
        font: 800 .8rem/1.2 'Manrope', sans-serif;
        color: var(--primary-color);
    }

    ul {
        margin: 1.5rem 0 0;
        padding: 0;
        list-style: none;
    }
    li {
        &:not(:last-child) {
            border-bottom: 2px solid #E2E2E2;
        }
        .icon.tick { fill: #374957}
        a {
            display: flex;
            padding: 1rem 0;
            justify-content: flex-start;
            align-items: center;
            text-decoration: none;
            color: var(--logo-color);
            font-weight: 600;
            transition: padding-left 0.3s ease, color 0.5s ease;
        }
    }
}


/* Аdded value section */

.added-value-content {
    position: relative;
    width: 100%;
    padding: 0;
}

.added-value-title {
    position: absolute;
    right:  0;
    width: 22rem;
    text-align: right;
    margin: 0;
    padding-left: 2em;
    background: #F5F7FA;
    z-index: 10;
    .highlight {
        color: var(--secondary-color);
        white-space: nowrap;
    }    
}

.value-features {
    display: grid;
    margin: 1.6rem auto;
    justify-content: center;
    & > div {
        box-sizing: border-box;
        position: relative;
        display: grid;
        grid-template-columns: 8.5rem 1fr;
        margin: -1px auto;
        border-top: 2px solid #E2E2E2;
        padding: 2rem 0;
        width: max(55%, 785px);
        img {
            width: 7.3rem;
            grid-row: 1 / span 2;
            margin: auto 0;
        }
        .added-title {
            margin: auto 0 .25rem;
            font: 800 1.1rem/1.4 'Manrope', sans-serif;
        }
        .added-description {
            margin: 0;
        }

        &.added-1 {
            /* left: -20rem; */
        }
        &.added-2 {
            /* right: -15rem; */
        }
        &.added-3 {
            /* left: -9rem; */
        }
        &.added-4 {
            /* right: -8rem; */
        }
    }
}

/* Key features section */

.enrich-content {
    display: grid;
    /* grid-template-columns: auto 1fr; */
    margin: 4.5rem 0 17rem;
    .big-title, 
    .section-title {
        grid-column: 1 / -1;
    }
    .section-title {
        margin-bottom: 2.5rem;
    }
    video {
        border-radius: 10px;
    }
}

.feature-list {
    max-height: 30rem;
    overflow: visible;
    .icon.tick { 
        color: var(--secondary-color);
    }
    .feature-item {
        margin: 0 0 2.5rem 2rem;
    }
}



/* Feed agregator */

section.feed-agregator-section {
    margin-top: -6.5rem;
    padding: 4rem 0 3rem;
}

.feed-content {
    display: grid;
    grid-template-columns: auto 1fr;
    margin: 0;
     
    .section-title,
    .section-description {
        grid-column: 1 / -1;
    }

    .section-description {
        max-width: 50%;
    }

    .feed-image {
        margin: 0 -3.5rem 0 -1.5rem;
    }
    video {
        border-radius: 10px;
    }
}

.feed-list {
    max-height: 30rem;
    & > div {
        margin: 0 2rem 2rem 0;
    }
}

/* The Brain */

.brain-content {
    margin: 2rem 0 ;
    color: var(--logo-color);
    .section-title {
        margin-bottom: 2.25rem;
    }
}

.brain-list {
    max-height: 17rem;
    & > div {
        margin: 0 2rem 2rem 0;
    }
}


/* The Ally */
.ally-content {
    margin: 4rem 0 5rem;
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 2rem;
    .section-title {
        margin: auto auto 1.5rem 0;
        grid-column-end: -1;
    }
    & > img,
    & > svg {
        grid-row: 1 / span 2;
    }
}

.ally-list {
    & > div {
        width: 80%;
    }
}

/* The Snap */

.snap-content {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 2rem;
    .section-title {
        margin: auto auto 1.5rem 0;
        grid-column-end: -1;
        color: var(--logo-color);
    }
    .snap-image-wrap {
        grid-row: 1 / span 2;
        margin: auto 0 auto 0;
        padding: 30px;
        position: relative;
        width: 340px;
        height: 341px;
        .snap-image {
            position: static;
        }
        .snap-top,
        .snap-right,
        .snap-bottom,
        .snap-left {
            position: absolute;
        }
        .snap-top {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .snap-right {
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        .snap-bottom {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .snap-left {
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }
}

.snap-list {
    max-height: 18rem;
}

/* The Edge */
.edge-content {
    margin: 5rem 0 4rem;
    color: #fff;
    .section-title {
        margin-bottom: 2.25rem;
    }
}

.edge-list {
    max-height: 14rem;
    & > div {
        margin: 0 2rem 4rem 0;
    }
}

/* The Armor */
.armor-content {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 2rem;
    .section-title {
        margin: auto auto 1.5rem 0;
        grid-column-end: -1;
        color: var(--logo-color);
    }
    .armor-image-wrap {
        grid-row: 1 / span 2;
        margin: 0 0 auto 0;
        position: relative;
        .armor-image {
            height: auto;
        }
        .nb-image {
            position: absolute;
            width: 125px;
            height: auto;
            top: 85px;
            left: 50%;
            transform: translateX(-50%);
            background: #F5F7FA;
            opacity: 0;
            transition: opacity 0.6s ease;
        }
    }
}

.armor-list {
    max-height: 18rem;
    & > div {
        margin: 0 2rem 4rem 0;
    }
}


/* Form */

.form-content {
    box-sizing: border-box;
    max-width: min(45rem, 100%);
    padding: 3rem 0 4rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    .form-title {
        margin: auto auto 0 0;
        grid-column: 1 / -1;
        font: 300 3.2rem/1.2 'Manrope', sans-serif;
    }
    .one-wrap {
            grid-column: 1 / span 2;
    }
    form {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: subgrid;
        width: 100%;

        .half-wrap {
            position: relative;
            grid-column: auto span 1;
        }

        .one-wrap,
        .submit-button {
            position: relative;
            grid-column: 1 / span 2;
        }

        label {
            position: relative;
            display: inline-block;
            margin: 0 auto 0 1rem;
            padding: .25rem .5rem;
            bottom: -.75rem;
            font: 600 .8rem/1.2 'Manrope', sans-serif;
            background-color: var(--logo-color);
        }

        input, 
        textarea,
        input:focus, 
        textarea:focus,
        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        input:-webkit-autofill:active,
        textarea:-webkit-autofill,
        textarea:-webkit-autofill:hover,
        textarea:-webkit-autofill:focus,
        textarea:-webkit-autofill:active {
            width: 100%;
            box-sizing: border-box;
            margin-bottom: .75rem;
            padding: .75rem 1rem;
            border: 1px solid var(--secondary-color);
            border-radius: 3px;
            font: normal .7rem/1.2 'Manrope', sans-serif;
            background: var(--logo-color)!important;
            color: var(--secondary-color);
            outline: none;
            -webkit-text-fill-color: var(--secondary-color) !important;
            transition: background-color 5000s ease-in-out 0s;

            [data-theme="dark"] & {
                border: 1px solid var(--secondary-color) !important;
                background: var(--logo-color)!important;
            }
            &::placeholder {
                color: var(--secondary-color);
                opacity: 1;
            }
        }
        textarea {
            resize: vertical;
            min-height: 100px;
        }


        .checkbox-wrap {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            font: normal .75rem/1.2 'Manrope', sans-serif;
            color: #fff;
            a {
                color: inherit;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
            }

            .form-check {
                display: flex;
                min-height: 0;
                margin: 0 .5rem 0 0;
                padding: 0;
                position: relative;
                width: .9rem;
                height: .9rem;
                flex: 0 0 .9rem;
                border: 1px solid var(--secondary-color);
                border-radius: 3px;
                color: var(--secondary-color);
                .icon.tick {
                    display: none;
                    position: absolute;
                    top: -2px;
                    left: 5px;
                    width: 15px;
                    height: 15px;
                    min-width: 0;
                    min-height: 0;
                    stroke: var(--logo-color);
                    stroke-width: 12px;
                    paint-order: stroke fill markers;


                    
                    input:checked ~ & {
                        display: block;
                        
                    }
                }
            }

            input[type="checkbox"] {
                width: 100%;
                height: 100%;
                margin: 0 .4rem 0 0;
                accent-color: var(--primary-color);
                cursor: pointer;
                opacity: 0;
            }

            label {
                padding: 0;
                margin: 0;
                bottom: auto;
                font-weight: 400;
                
            }
        }   

        .submit-button {
            padding: .75rem 2rem;
            background: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 5px;
            font: 400 .9rem/1.2 'Manrope', sans-serif;
            cursor: pointer;
        }

        .alert {
            grid-column: 1 / -1;
            padding: 1.5rem 0;
            margin-bottom: 1.5rem;
            text-align: center;
            &.alert-success {}
            &.alert-danger {
                color: #e33;
            }
        }
    }
}



/* Login pages */

.login-pg,
section.form-section.login-pg {
    margin-top: 0;
    height: 100%;  
    .form-content {
        margin: 0 auto auto;
    }   
}

.site-grid:has(.login-pg) {
    height: 100vh;
    grid-template-rows: auto 1fr;
}






@media (hover: hover) and (pointer: fine) {

    .button {
        &:hover {
            color: var(--primary-color);
        }
        &.demo-button {
            &:hover {
                background: #fff;
                color: var(--primary-color);
            }
        }
        &.signin-button {
            &:hover {
                background: var(--logo-color);
                color: #fff;
            }
        }
    }

    .hero-visual {
        &:hover {
            .hero-title {
                background-position: 100% 0%;
            }        
            .ai-span {
                .nb-image {
                    opacity: 1;        
                }
            }
        }
    }

    .key-features {
        li {
            a {
                &:hover {
                    padding-left: 1.5rem;
                    color: var(--secondary-color);
                }
            }
        }
    }


    .armor-content {
        &:hover .armor-image-wrap{
            .nb-image {
                opacity: 1;        
            }
        }
    }

    .form-content form .submit-button {
        background:linear-gradient( -270deg,
            #7C3AED 0%,
            #7C3AED 50%,
            #2563EB 100%);
            background-size: 200% 100%;
            background-position: 0% 0%;
            transition: background-position .6s ease;
            &:hover {
                background-position: 100% 0%;
            }
        }



}






/* small screens up to 800 */
@media only screen and (max-width: 799.999px) {
    :root {
        --core-width: 1fr;
        --inner-bezel: 20px;
        --outer-bleed: 0;
    }
    html {
        font: 18px 'Manrope', sans-serif;
    }
    .hidden-ms, .hidden-mb, .hidden-md {
        display: none;
    }

    .to-top {
        bottom: 20px;
    } 

    .section-title  {
        font-size: 1.4rem;
    }  

    dl {
    & > div {
        width: 100%;
        }
    }

    nav .button {
        min-width: 0;        
    }
    .site-header {
        .header-content {
            flex-direction: column;
            padding: 2.75rem 0 0;
            .navbar-logo img {
                width: 14.25rem;
            }
            .navbar {
                display: flex;
                box-sizing: border-box;
                width: 100%;
                padding: 1.65rem 0;
                margin-top: 1.75rem;
                background: #F5F7FA;
                justify-content: center;
            }
            .button {
                font-size: 1rem;
                padding: 0.58rem .85rem;
            }
            .demo-button {
                order: -1;
                margin: 0;
            }
            .button:first-child {
                background: transparent;
                color: #7C3AED;
                border: 1px solid var(--logo-color);
            }
        }
    }

    .site-content {
        max-width: 100%;
        overflow: hidden;
        section {
            margin-top: 0;
        }
    }


    .hero-section {
        grid-template-columns: [windowel-start] var(--outer-bleed) [outer-start] 1256px [mid-line] 470px [outer-end] var(--outer-bleed) [windowel-end]!important;
        grid-template-columns: 1fr!important;
    }

    .hero-back {
        display: none;
    }
    .hero-content {
        position: relative;
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1 / -1;
    }

    .hero-visual {
        flex-direction: column;
        background: var(--logo-color);
        padding: 2rem 0 3.5rem 0;
    }

    .hero-title {
        font-size: 1.55rem;
        margin-top: 0;
        margin-bottom: .5rem;
    }

    .hero-subtitle {
        width: 80%;
        box-sizing: border-box;
        padding-right: 1rem;
        font: normal .9rem / 1.4 'Manrope', sans-serif;
        margin: 0 auto .75rem 0;

    }

    .hero-content .signin-button {
        display: inline-block;
        background: var(--secondary-color);
        color: #fff;
    }

    .text-info {
        padding: 0 var(--inner-bezel);
    }

    img.hero-image {
        width: calc(100% - 40px);
        margin: auto;
    }

    .key-features {
        padding: 1rem var(--inner-bezel) 0 ;
        h3 {
            font-size: 1.1rem;
        }
        ul {
           margin-top: .5rem; 
        }
        & li:last-child {
            border-bottom: 2px solid #E2E2E2;
        }
    }

    .added-value-title {
        position: static;
        width: auto;
        text-align: left;
        margin: 2rem 0 0 0;
        padding-left: 0;
        font-size: 1.55rem;
    }

    .value-features {
        margin-top: 0;
        & > div {
            width: 100%;
            grid-template-columns: 3rem 1fr;
            padding: 1rem 0;
            img {
                width: 4.2rem;
                margin: -.5rem 0 0 -1rem;
            }
            &.added-1{ border-top:none; }
            &.added-1, &.added-3 {
                left: auto;
            }
            &.added-2, &.added-4 {
                right: auto;
            }
            &.added-4 img { margin-top: -1rem}
        }
    }

    .enrich-content {
        grid-column: core;
        grid-template-columns: 1fr;
        margin: 2rem 0 6rem;
        .section-title {
            margin-bottom: 1rem;
        }
        video {
            width: auto;
            max-width: 100%;
            max-height: 95vh;
            margin: auto;
        }
    }
    .big-title {
        font-size: 2.5rem;
        margin: 0 0 1.25rem;
    }

    .feature-list {
        margin: 2rem auto 0;
        max-width: 100%;
        max-height: none;
        .feature-item {
            margin: 0 0 2rem;
        }
    }

    section.feed-agregator-section {
        margin: -4.5rem var(--inner-bezel) 0;
        padding: 2rem 0 1rem;
    }

    .feed-content {
        grid-template-columns: 1fr;
        padding: 0 var(--inner-bezel);
        .section-description {
            max-width: 100%;
        }
        img {
            grid-row: 3;
            margin: auto auto 2rem;
            &.wide {
                display: none;
            }
        }
        video {
            max-width: 100%;
            margin: 0 auto 2rem;
        }
   }

   .feed-list {
        grid-row: 4;
        max-height: none;
    }

    .brain-content {
        .section-title {
            margin-bottom: 1.35rem;
        }
    }
    
    .brain-list {
        max-height: none;
            & > div {
            margin: 0 0 1.5rem 0;
            }
    }

    .ally-section {
        border-radius: 0;
    }
    .ally-content {
        margin: 2rem 0;
        grid-template-columns: 1fr;
        .section-title {
            margin-bottom: 1.35rem;
        }
        & > img,
        & > svg {
            width: 100%;
            grid-row: 3;
            &.ally-image-mobile,
            &.ally-image-mobile.hidden {
                display: block!important;
            }
        }
    }

    

    .snap-content {
        grid-template-columns: 1fr;
        margin: 2.45rem 0 .5rem;
        .snap-image-wrap {
            margin: 0 auto 1.6rem;
            padding: 11px 10px 7px;
            grid-row: 2;
            text-align: center;
            max-width: 242px;
            height: auto;
            .snap-image {
                width: 242px;
                height: auto;
            }
            img:not(.snap-image) {
                /* display: none; */
                width: 110px;
            }
        }
    }

    .snap-list {
        max-height: none;
        .snap-item {
            width: auto;
        }   
    }

    .edge-content {
        margin: 2rem 0 1rem;
        .section-title {
            margin-bottom: 2rem;
        }
    }

    .edge-list {
        max-height: none;
            & > div {
            margin: 0 2rem 2rem 0;
            }
    }

    .armor-content {
        margin: 2.75rem 0;
        grid-template-columns: 80px 1fr;
        gap: 0 1rem;
        .section-title {
            grid-column: 1 / span 2!important;
            margin-bottom: .75rem;
        }
        .armor-image-wrap {
            position: relative;
            width: calc(100% +10px);
            margin: 0 auto auto -10px;
            grid-row: 2;
            grid-column: 1/ span 1;
            .armor-image {
                width: 100%;
                height: auto;                
            }
            .nb-image {
                    top: 25px;
                    width: 50px;
            }
        }
    }   

    .armor-list {
        max-height: none;
        display: contents;
            & > div {
                width: 100%;
                margin: 0 0 2rem 0;
                grid-column: 1 / span 2;
                &:first-child {
                    grid-row: 2;
                    grid-column: 2 / span 1;
                    grid-template-columns: 1fr;
                    .icon {
                        display: none;
                    }
                }
            }
    }


    .edge-section,
    .feed-agregator-section {
        background: linear-gradient(0deg, var(--primary-color) 0.11%, var(--secondary-color) 99%);;
    }




    .form-content {
        padding: 2.35rem 0;
        gap: 0;
        grid-template-columns: 1fr;
        .form-title {
            margin: auto auto .5rem 0;
            grid-column: 1 / -1;
            font: 300 2.2rem / 1.2 'Manrope', sans-serif;
        }
    }

    .site-footer {
    .footer-nav {
        flex-direction: column;
        a {
            padding: .75rem 0;
        }
    }}
}

/* 800 --- 1400 */
@media screen and (min-width:800px) and (max-width:1399.99px){
    :root {
        --core-width: 1fr;
        --inner-bezel: 15px;
        --outer-bleed: 10px;
    }
    html {
        font: 18px 'Manrope', sans-serif;
    }
    .hidden-md {
        display: none;
    }

    .section-title  {
        font-size: 1.4rem;
    }  


    .hero-section {
        grid-template-columns: [windowel-start] var(--outer-bleed) [outer-start] 1256px [mid-line] 470px [outer-end] var(--outer-bleed) [windowel-end]!important;
        grid-template-columns: 1fr!important;
    }

    .hero-back {
        display: none;
        position: absolute;
        grid-column: auto;
        width: 100%;
        height: 100%;
        background: var(--logo-color);
        border-radius: 0;

    }
    .hero-content {
        position: relative;
        display: grid;
        grid-column: 1 / -1;
    }

    .hero-visual {
        background: var(--logo-color);
    }

    .text-info {
        position: relative;
        padding: 0 20px;
        margin-right: -8rem;
    }

    img.hero-image {
        width: 45%;
    }

    .key-features {
        box-sizing: border-box;
        padding: 2.5rem 2.25rem 0;
        & li:last-child {
            border-bottom: 2px solid #E2E2E2;
        }
    }

    .added-value-title {
        position: static;
        width: auto;
        text-align: left;
        margin: 2rem 0 0 0;
        padding-left: 0;
    }

    .value-features {
        & > div {
            width: 100%;
            &.added-1 { border-top:none; }
            &.added-1, &.added-3 {
                left: auto;
            }
            &.added-2, &.added-4 {
                right: auto;
            }
        }
    }

    .enrich-content {
        grid-column: core;
        grid-template-columns: 1fr;
        margin: 2.5rem 0 6rem;
        video {
            width: auto;
            max-width: 100%;
            max-height: 95vh;
            margin: auto;
        }
    }
    .big-title {
        font-size: 2.5rem;
        margin: 0 0 2rem;
    }

    .feature-list {
        margin: 2rem auto 0;
        max-width: 100%;
        max-height: 32rem;
    }

    section.feed-agregator-section {
        margin-top: -4.5rem;
        padding: 2rem 0;
    }

    .feed-content {
        grid-template-columns: 1fr;
        box-sizing: border-box;
        padding: 0 1rem;
        .section-description {
            max-width: 100%;
        }
        img {
            grid-row: 3;
            margin: auto auto 2rem;
            &.high {
                display: none;
            }
        }
        video {
            max-width: 100%;
            margin: 0 auto 2rem;
        }
   }

   .feed-list {
        grid-row: 4;
        max-height: 25rem;
        margin: 0 auto;
    }   


    .ally-content {
        grid-template-columns: 1fr 1fr;
        & > img,
        & > svg {
            width: 100%;
        }
    }

    .snap-content {
        grid-template-columns: 1fr 1fr;
        margin: 2rem 0;
        .snap-image-wrap {
            margin: auto 0 auto 0;
        }
    }

    .snap-list {
        max-height: none;
        .snap-item {
            width: auto;
        }   
    }

    .edge-content {
        margin: 5rem 0 3rem;
    }

    .edge-list {
        max-height: 18rem;
            & > div {
            margin: 0 2rem 2.5rem 0;
            }
    }

    .armor-content {
        margin: 3rem 0;
    }

    .armor-list {
        max-height: none;
            & > div {
                width: 100%;
            margin: 0 2rem 2rem 0;
            }
    }
    
}


/* 1400 to 1800 */
@media only screen and (min-width: 1400px) and (max-width:1799.99px){
    :root {
        --core-width: 1180px;
        --inner-bezel: 100px;
        --outer-bleed: 1fr;
    }
    .hidden-md {
        display: none;
    }
    .hero-section {
        grid-template-columns: [windowel-start] var(--outer-bleed) [outer-start] calc(var(--core-width) + 2*var(--inner-bezel) - 420px) [mid-line] 420px [outer-end] var(--outer-bleed) [windowel-end]!important;
    }

    .text-info {
        margin-right: -6rem;
        flex: 0 0 650px;
        position: relative;
    }

    .hero-title {
        font-size: 2.5rem!important;
    }
    img.hero-image {
        width: 45%;
    }

    .value-features {
        & > div {
            &.added-1 {
                /* left: -17rem; */
            }
            &.added-2 {
                /* right: -14rem; */
            }
        }
    }

    .enrich-content {
        grid-template-columns: 1fr;
        margin-bottom: 11rem;
        video {
            width: auto;
            max-width: 90%;
            max-height: 95vh;
            margin: auto;
        }
   }

   .feature-list {
    margin: 5rem auto 0;
    max-width: 100%;
    max-height: 28rem;
   }


    section.feed-agregator-section {
        padding: 3rem 0 2rem;
        border-radius: 15px;
    }
   .feed-content {
        grid-template-columns: 1fr;
        box-sizing: border-box;
        padding: 0 2rem;
        img {
            height: 21rem;
            &.wide {
                display: none;
            }
        }
        video {
            max-width: 100%;
            margin: 0 auto 2rem;
            width: auto;
            max-height: 95vh;
            margin: 0 auto 2rem;
        }
   }

   .feed-list {
        grid-row: 4;
        max-height: 25rem;
        margin: 0 auto;
    }
}

/* 1800 and larger */
@media only screen and (min-width: 1800px){
    :root {
        --core-width: 1400px;
        --inner-bezel: 163px;
        --outer-bleed: 1fr;
    }
    .hidden-lg {
        display: none;
    }   
    .hero-section {
        grid-template-columns: [windowel-start] var(--outer-bleed) [outer-start] calc(var(--core-width) + 2*var(--inner-bezel) - 470px) [mid-line] 470px [outer-end] var(--outer-bleed) [windowel-end]!important;
    }

    .text-info {
        margin-right: -8rem;
        flex: 0 0 650px;
        position: relative;
    }
    
    .enrich-content {
        grid-template-columns: auto 1fr;
        video {
            max-width: none;
            margin: 0;
        }
   }

    section.feed-agregator-section {
        padding: 3rem 0 2rem;
        border-radius: 15px;
    }
   .feed-content {
        box-sizing: border-box;
        padding: 0 2rem;
        img.high {
            display: none;
        }
   }
   .feed-list {
    padding-right: 2rem;
   }

   .snap-content {
        margin: 3rem 0;
        width: 90%;
        gap: 0 6rem;
    }   
}

/* suitable for animations */
@media only screen and (min-width: 1400px){

        
    @keyframes move-left-center {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
    }

    @keyframes move-right-center {
        from {
        transform: translateX(50%);
    }
    to {
        transform: translateX(0);
    }
    
    }

    @keyframes shrink-content {
    from {
        width: 22rem;
        font-size: 2rem;
    }
    to {
        width: 14rem;
        font-size: 1rem;
    }
    }

    @keyframes snap-top {
        from {
            top: 0;
        } to {
            top: 30px;
        }
    }

    @keyframes snap-right {
        from {
            right: 0;
        } to {
            right: 30px;
        }
    }

    @keyframes snap-bottom {
        from {
            bottom: 0;
        } to {
            bottom: 30px;
        }
    }

    @keyframes snap-left {
        from {
            left: 0;
        } to {
            left: 30px;
        }
    }

    @keyframes show-to-top {
        from {
            bottom: -80px;
        } to {
            bottom: 20px;
        }

    }


    @supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {


        .added-1, .added-3 {
            animation: move-left-center  linear forwards;
        }   
        .added-2, .added-4 {
            animation: move-right-center  linear forwards;
        }  

        .added-value-title {
            animation: shrink-content  linear forwards;
        }


        .snap-top {
            animation: snap-top linear forwards;
        }
        .snap-right {
            animation: snap-right linear forwards;
        }
        .snap-bottom {
            animation: snap-bottom linear forwards;
        }
        .snap-left {
            animation: snap-left linear forwards;
        }

        .added-1, 
        .added-2, 
        .added-3,
        .added-4,
        .added-value-title,
        .snap-top,
        .snap-right,
        .snap-bottom,
        .snap-left {
            animation-timeline: view();
            animation-range: entry 0 exit -180%;
        }

        .to-top {
            animation: show-to-top 2s linear forwards;
            animation-timeline: scroll();
            animation-range: 100vh calc(100vh + 200px);  
        }

        
    }
}


