:root {
    --bg-primary: #000;
    --bg-secondary: #0a0a0f;
    --bg-tertiary: #111119;
    --bg-quaternary: #1F1F2E;
    --font-color-primary: #ededf0;
    --font-color-secondary: #a78bfa;
    --font-color-tertiary: #1a1a2a;
    --font-color-quaternary: #1f1f2e;
    --font-color-quinary: #69697D;
    --border: #1a1a2a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-primary);
    padding-top: clamp(8rem, 22vh, 12rem);
}
h1 , h3 , h6 {
    font-family: "Outfit" , sans-serif;
}
p , a{
    font-family: "Inter", serif;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem clamp(1.5rem, 10vw - 0.7rem, 9rem);
    border: 0.5px solid var(--border);
    border-radius: 200px;
    padding: 0.8rem 1.5rem;
    background-color: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
header nav .logo {
    filter: invert(1);
}
header nav .logo img {
    width: clamp(6rem, 5vw + 4.5rem, 9rem);
}
header nav .links ul {
    display: flex;
    align-items: center;
    list-style: none;
}
header nav .links ul li a {
    display: inline-block;
    padding: 0.55rem 1.125rem;
    text-decoration: none;
    color: var(--font-color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}
header nav .links a:hover {
    background-color: var(--border);
    border-radius: 1.25rem;
}
header nav .cta {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0.5rem;
}
header nav .cta a {
    font-size: 0.8rem;
    font-weight: 600;
}
header nav .cta > a:first-child {
    text-decoration: none;
    color: var(--font-color-primary);
    padding:0.5rem 1rem;
    border-radius: 20px;
}
header nav .cta > a:first-child:hover {
    color: var(--font-color-secondary);
}
header nav .cta .mode {
    color: var(--font-color-primary);
    height: 2.2rem;
    width: 2.2rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    cursor: pointer;
    position: relative;
}
header nav .cta .mode svg {
    width: 1rem;
}
header nav .cta .mode .sun {
    display: none;
}
header nav .cta .mode:hover {
    background-color: var(--bg-tertiary);
}
header nav .cta .mode:focus-visible {
    outline: 3px solid var(--font-color-secondary);
    outline-offset: 0;
    color: var(--font-color-secondary);
}
header nav .cta .mode .mode-change {
    position: absolute;
    top: 110%;
    right: 0;
    width: 130px;
    background-color: var(--bg-tertiary);
    border-radius: 9px;
    padding: 0.3rem;
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    border: 1px solid var(--border);
}
header nav .cta .mode .mode-change p {
    display: inline-block;
    width: 100%;
    padding: 0.4rem;
    border-radius: 5px;
    font-size: 0.92rem;
    text-align: left;
}
header nav .cta .mode .mode-change p:hover {
    background-color: var(--bg-quaternary);
}
header nav .cta .dd a {
    height: 2.5rem;
    width: 8rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0 0.8rem;
    background-color: var(--bg-tertiary);
}
header nav .cta .dd a p {
    color: var(--font-color-secondary);
}
header nav .cta .dd a svg {
    width: 1rem;
    transition: all .3s ease;
    color: var(--font-color-secondary);
}
header nav .cta .dd a:hover svg {
    transform: translate(2px, -2px);
}
header nav .cta .menu-toggles {
    color: var(--font-color-primary);
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
header nav .cta .menu-toggles svg {
    width: 2rem;
}
header nav .cta .menu-toggles .menu-close {
    display: none;
}
header nav .hamburger-menu {
    margin: 0 clamp(1.5rem, 10vw - 0.7rem, 9rem);
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 24px;
    opacity: 0.97;
    overflow: hidden;
    display: none;
    flex-direction: column;
}
header nav .hamburger-menu div {
    margin: 1.5rem;
}
header nav .hamburger-menu div:first-child {
    margin-bottom: 0;
}
header nav .hamburger-menu div:last-child {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}
header nav .hamburger-menu div ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}
header nav .hamburger-menu div ul li a {
    text-decoration: none;
    color: var(--font-color-primary);
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}
header nav .hamburger-menu div:last-child ul li a {
    color: var(--font-color-secondary);
}
header nav .hamburger-menu div:last-child ul li:last-child a {
    background-color: var(--bg-tertiary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 30px;
    margin-top: 1rem;
}
header nav .hamburger-menu div:last-child ul li a svg {
    width: 0.8rem;
}
header nav .hamburger-menu ul li a:hover {
    background-color: var(--bg-quaternary);
}
.section1 .section1-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 clamp(1.5rem, 10vw - 0.7rem, 9rem);
    margin-bottom: clamp(2.5rem, 14.5vw - 4vw, 10.5rem);
}
.section1 .section1-wrapper .parent1 > div{
    opacity: 0;
}
@keyframes load1 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section1 .section1-wrapper .parent1 .top {
    color: var(--font-color-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: inline-block;
    padding: 0.6rem 0.6rem;
    background-color: var(--bg-tertiary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.section1 .section1-wrapper .parent1 .c1 {
    margin: 2rem 0;
}
.section1 .section1-wrapper .parent1 .c1 h1 {
    font-size: clamp(2.75rem, 2vw + 2.3rem, 4.25rem);
    color: var(--font-color-primary);
    display: inline-block;
    margin-bottom: 1rem;
    max-width: 600px;
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler {
    color: var(--font-color-secondary);
    overflow: hidden;
    display: inline-grid;
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span {
    grid-area: 1 /1;
    animation: slide 28s ease infinite;
    opacity: 0;
    transform: translateY(100%);
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span:first-child {
    animation-delay: 0s;
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span:nth-child(2) {
    animation-delay: 4s;
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span:nth-child(3) {
    animation-delay: 8s;
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span:nth-child(4) {
    animation-delay: 12s;
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span:nth-child(5) {
    animation-delay: 16s;
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span:nth-child(6) {
    animation-delay: 20s;
}
.section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span:last-child {
    animation-delay: 24s;
}
@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    2% {
        opacity: 1;
        transform: translateY(0);
    }
    14% {
        opacity: 1;
        transform: translateY(0);
    }
    16% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}
.section1 .section1-wrapper .parent1 .c1 p {
    color: var(--font-color-quinary);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    max-width: 450px;
    line-height: 1.4;
    animation-delay: 0.15s;
}
@keyframes load0 {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section1 .section1-wrapper .parent1 .c2 {
    animation-delay: 0.5s;
}
.section1 .section1-wrapper .parent1 .c2 ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
.section1 .section1-wrapper .parent1 .c2 ul a {
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
}
.section1 .section1-wrapper .parent1 .c2 ul li:first-child a {
    background-color: var(--font-color-secondary);
    color: var(--font-color-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 180px;
    height: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}
.section1 .section1-wrapper .parent1 .c2 ul li a:focus-visible {
    outline: 2px solid var(--font-color-primary);
    outline-offset: 0;
    border: none;
}
.section1 .section1-wrapper .parent1 .c2 ul li:first-child a svg {
    width: 1rem;
    transition: all .3s ease;
}
.section1 .section1-wrapper .parent1 .c2 ul li:first-child a:hover svg {
    transform: translateX(2px);
}
.section1 .section1-wrapper .parent1 .c2 ul li:last-child a {
    border: 1px solid var(--border);
    color: var(--font-color-quinary);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}
.section1 .section1-wrapper .parent1 .c2 ul li:last-child a:hover {
    color: var(--font-color-primary);
}
.section1 .section1-wrapper .parent1 .c3 {
    margin: clamp(1rem, 10vw, 3.5rem) 0;
    display: flex;
    gap: 2rem;
    animation-delay: 0.7s;
}
.section1 .section1-wrapper .parent1 .c3 h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: var(--font-color-primary);
    margin-bottom: 0.4rem;
}
.section1 .section1-wrapper .parent1 .c3 p {
    color: var(--font-color-quinary);
    font-size: 0.9rem;
}
.section1 .section1-wrapper .parent2 {
    display: flex;
    justify-content: center;
}
.section1 .section1-wrapper .parent2 .animation {
    display: flex;
    align-items: flex-start;
}
.section1 .section1-wrapper .parent2 .animation video {
    width: min(680px, 52vw);
    object-fit: contain;
}
.section2 {
    scroll-margin-top: clamp(7rem, 4vw + 6rem, 11rem);
}
.section2 .section2-wrapper{
    margin: 0 clamp(1.5rem, 10vw - 0.7rem, 9rem);
    margin-bottom: clamp(1.25rem, 11vw - 2vw, 10rem);
}
.section2 .section2-wrapper .parent1 {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
}
@keyframes load2 {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section2 .section2-wrapper .parent1 p:first-child {
    color: var(--font-color-secondary);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
}
.section2 .section2-wrapper .parent1 h3 {
    font-size: clamp(2.25rem, 1.1vw + 2rem, 3rem);
}
.section2 .section2-wrapper .parent1 .white {
    color: var(--font-color-primary);
}
.section2 .section2-wrapper .parent1 .purple {
    color: var(--font-color-secondary);
    margin-bottom: 1rem;
}
.section2 .section2-wrapper .parent1 p:last-child {
    color: var(--font-color-quinary);
    margin-bottom: clamp(2rem, 3vw, 4rem);
    max-width: 470px;
    line-height: 1.4;
}
.section2 .section2-wrapper .parent2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.section2 .section2-wrapper .parent2 > div {
    border: 1px solid var(--border);
    border-radius: 16px;
    background-color: var(--bg-secondary);
    padding: 2rem;
    opacity: 0;
}
.section2 .section2-wrapper .parent2 > div:nth-child(2) {
    animation-delay: 0.1s;
}
.section2 .section2-wrapper .parent2 > div:nth-child(3) {
    animation-delay: 0.2s;
}
.section2 .section2-wrapper .parent2 > div .img-wrapper {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-tertiary);
}
.section2 .section2-wrapper .parent2 > div .img-wrapper svg {
    color: var(--font-color-secondary);
}
.section2 .section2-wrapper .parent2 > div h6 {
    color: var(--font-color-primary);
    font-size: 1.2rem;
    margin: 1.2rem 0;
}
.section2 .section2-wrapper .parent2 > div p {
    color: var(--font-color-quinary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.section2 .section2-wrapper .parent2 > div p:last-child {
    padding-top: 2rem;
    margin-bottom: 0;
    border-top: 1px solid var(--border);
}
.section2 .section2-wrapper .parent2 > div p strong {
    font-size: 1.5rem;
    color: var(--font-color-secondary);
    font-family: "Outfit" , sans-serif;
}
.section3 {
    position: relative;
    scroll-margin-top: clamp(2rem, 1.5vw + 1.5rem, 3.5rem);
}
.section3::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -100;
    background: radial-gradient(circle, var(--font-color-secondary) 0.5px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, var(--bg-primary) 30% , transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, var(--bg-primary) 30%, transparent 75%);
}
.section3 .section3-wrapper{
    margin: 0 clamp(1.5rem, 10vw - 0.7rem, 9rem);
    padding-top: clamp(1.25rem, 9vw , 10rem);
    padding-bottom: clamp(2.5rem, 10vw , 10rem);
}
.section3 .section3-wrapper .parent1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
}
.section3 .section3-wrapper .parent1 p:first-child {
    color: var(--font-color-secondary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 600;
}
.section3 .section3-wrapper .parent1 h3 {
    color: var(--font-color-primary);
    font-size: clamp(2.25rem, 1.1vw + 2rem, 3rem);
    margin-bottom: 1rem;
    max-width: 450px;
}
.section3 .section3-wrapper .parent1 p:last-child {
    color: var(--font-color-quinary);
    margin-bottom: clamp(2rem, 4vw, 4rem);
    max-width: 600px;
}
.section3 .section3-wrapper .parent2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: min(1vw, 1rem);
    margin-bottom: 1.5rem;
}
.section3 .section3-wrapper .parent2 > div {
    padding: 2rem 1.8rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.1s linear;
    opacity: 0;
}
.section3 .section3-wrapper .parent2 > div:nth-child(2) {
    animation-delay: 0.1s;
}
.section3 .section3-wrapper .parent2 > div:nth-child(3) {
    animation-delay: 0.2s;
}
.section3 .section3-wrapper .parent2 > div:nth-child(4) {
    animation-delay: 0.3s;
}
.section3 .section3-wrapper .parent2 > div:nth-child(5) {
    animation-delay: 0.4s;
}
.section3 .section3-wrapper .parent2 > div:nth-child(6) {
    animation-delay: 0.5s;
}
@keyframes load3 {
    from {
        opacity: 0;
        translate: 0 24px;
    }
    to {
        opacity: 1;
        translate: 0;
    }
}
.section3 .section3-wrapper .parent2 > div > p {
    color: var(--font-color-quinary);
    margin-bottom: 1.2rem;
}
.section3 .section3-wrapper .parent2 > div .lang {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.section3 .section3-wrapper .parent2 > div .lang h6{
    font-size: 1rem;
    font-family: "Outfit" , sans-serif;
    color: var(--font-color-primary);
    margin-bottom: 0.3rem;
}
.section3 .section3-wrapper .parent2 > div .lang div:first-child p:last-child {
    color: var(--font-color-quinary);
}
.section3 .section3-wrapper .parent2 > div .lang div:last-child h6 {
    color: var(--font-color-secondary);
}
.section3 .section3-wrapper .parent2 > div .info {
    display: flex;
    gap: 1rem;
}
.section3 .section3-wrapper .parent2 > div .info p {
    display: inline-block;
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 2rem;
    color: var(--font-color-primary);
    font-size: 0.8rem;
    font-weight: 600;
}
.section3 .section3-wrapper .parent2 > div:hover {
    background-color: var(--font-color-quaternary);
    transform: translateY(-5px);
    border: 1px solid var(--font-color-secondary);
}
.section3 .section3-wrapper .parent2 > div:hover .info p {
    border: 1px solid var(--font-color-secondary);
}
.section3 .section3-wrapper .parent3 {
    padding-top: 1.5rem;
    text-align: center;
    color: var(--font-color-quinary);
}
.section3 .section3-wrapper .parent3 p {
    font-size: 0.85rem;
}
.section4 {
    background-color: var(--bg-secondary);
    scroll-margin-top: clamp(2rem, 1.5vw + 1.5rem, 3.5rem);
}
.section4 h3, .section4 p {
    font-family: sans-serif , serif;
}
.section4 .section4-wrapper {
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 10vw - 0.7rem, 9rem);
    margin-bottom: clamp(2.5rem, 13vw - 4vw, 9rem);
}
.section4 .section4-wrapper .parent1 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}
.section4 .section4-wrapper .parent1 p:first-child {
    color: var(--font-color-secondary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
}
.section4 .section4-wrapper .parent1 h3 {
    color: var(--font-color-primary);
    font-size: clamp(2.25rem, 1.1vw + 2rem, 3rem);
    margin-bottom: 1rem;
}
.section4 .section4-wrapper .parent1 p:last-child {
    color: var(--font-color-quinary);
    margin-bottom: 4rem;
    max-width: 650px;
}
.section4 .section4-wrapper .parent2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    position: relative;
}
.section4 .section4-wrapper .parent2 .child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    z-index: 100;
    opacity: 0;
}
.section4 .section4-wrapper .parent2 .child:nth-child(4) {
    animation-delay: 0s;
}
.section4 .section4-wrapper .parent2 .child:nth-child(1) {
    animation-delay: 0.1s;
}
.section4 .section4-wrapper .parent2 .child:nth-child(2) {
    animation-delay: 0.2s;
}
.section4 .section4-wrapper .parent2 .child:nth-child(3) {
    animation-delay: 0.3s;
}
.section4 .section4-wrapper .parent2 .child p:last-child {
    text-align: center;
    line-height: 1.6;
}
.section4 .section4-wrapper .parent2 .child .icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 16px;
}
.section4 .section4-wrapper .parent2 .child .icon svg {
    color: var(--font-color-secondary);
}
.section4 .section4-wrapper .parent2 .child .nn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--font-color-quinary);
}
.section4 .section4-wrapper .parent2 .child h3 {
    color: var(--font-color-primary);
}
.section4 .section4-wrapper .parent2 .child p:last-child {
    color: var(--font-color-quinary);
}
.section4 .section4-wrapper .parent2::after {
    content: "";
    position: absolute;
    top: 40px;
    width: 80%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 10;
}
.section5 {
    scroll-margin-top: clamp(7rem, 4vw + 6rem, 11rem);
}
.section5 .section5-wrapper {
    margin: 0 clamp(1.5rem, 10vw - 0.7rem, 9rem);
    margin-bottom: clamp(2.5rem, 13vw - 4vw, 9rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.section5 .section5-wrapper .parent1 {
    position: sticky;
    top: 9rem;
    align-self: flex-start;
    opacity: 0;
}
@keyframes load4 {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.section5 .section5-wrapper .parent1 p:first-child {
    color: var(--font-color-secondary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
}
.section5 .section5-wrapper .parent1 h3 {
    font-size: clamp(2.25rem, 1.1vw + 2rem, 3rem);
    color: var(--font-color-primary);
    margin-bottom: 1rem;
    max-width: 300px;
}
.section5 .section5-wrapper .parent1 h3 span {
    color: var(--font-color-secondary);
}
.section5 .section5-wrapper .parent1 p:nth-child(3) {
    color: var(--font-color-quinary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.section5 .section5-wrapper .parent1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--font-color-tertiary);
    background-color: var(--font-color-secondary);
    border-radius: 2rem;
    width: 256px;
    height: 40px;
    transition: all .3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}
.section5 .section5-wrapper .parent1 a:focus-visible {
    outline: 2px solid var(--font-color-primary);
    outline-offset: 0;
    border: none;
}
.section5 .section5-wrapper .parent1 a svg {
    width: 1rem;
}
.section5 .section5-wrapper .parent1 a:hover {
    transform: scale(1.03);
}
.section5 .section5-wrapper .parent1 a:hover svg {
    transform: translate(2px, -2px);
}
.section5 .section5-wrapper .parent2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.section5 .section5-wrapper .parent2 > div {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all .3s ease;
}
.section5 .section5-wrapper .parent2 > div .img-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-tertiary);
    border-radius: 1rem;
}
.section5 .section5-wrapper .parent2 > div .img-wrapper svg {
    color: var(--font-color-secondary);
}
.section5 .section5-wrapper .parent2 > div h3 {
    color: var(--font-color-primary);
}
.section5 .section5-wrapper .parent2 > div p {
    color: var(--font-color-quinary);
    font-size: 0.9rem;
    line-height: 1.5;
}
.section5 .section5-wrapper .parent2 > div:hover {
    transform: scale(1.02) translateY(-5px);
    border: 1px solid var(--font-color-secondary);
}
.section5 .section5-wrapper .parent2 > div:hover .img-wrapper svg {
    color: var(--font-color-tertiary);
}
.section5 .section5-wrapper .parent2 > div:hover div:has(svg) {
    background-color: var(--font-color-secondary);
}
.section6 {
    background-color: var(--bg-tertiary);
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 10vw - 0.7rem, 9rem);
}
.section6 .section6-wrapper {
    padding: 1rem 0;
    background-color: var(--bg-secondary);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    opacity: 0;
}
.section6 .section6-wrapper > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: clamp(3rem, 8vw, 6rem) 0;
}
.section6 .section6-wrapper div p:first-child {
    color: var(--font-color-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
}
.section6 .section6-wrapper div h3 {
    color: var(--font-color-primary);
    font-size: clamp(2.25rem, 1.1vw + 2rem, 3rem);
    text-align: center;
}
.section6 .section6-wrapper div h3:nth-child(3) {
    color: var(--font-color-secondary);
    margin-bottom: 1.7rem;
}
.section6 .section6-wrapper div p:nth-child(4) {
    text-align: center;
    color: var(--font-color-quinary);
    margin-bottom: 2.8rem;
    max-width: 500px;
}
.section6 .section6-wrapper div > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--font-color-tertiary);
    background-color: var(--font-color-secondary);
    border-radius: 2rem;
    width: 240px;
    height: 43px;
    transition: all .2s ease;
    margin-bottom: 1.7rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.section6 .section6-wrapper div > a svg {
    width: 1rem;
    transition: all .2s ease;
}
.section6 .section6-wrapper div > a:hover svg {
    transform: translateX(2px);
}
.section6 .section6-wrapper div > a:focus-visible {
    outline: 2px solid var(--font-color-primary);
    outline-offset: 0;
    border: none;
}
.section6 .section6-wrapper div p:last-child {
    color: var(--font-color-quinary);
    font-size: 0.75rem;
}
.section6 .section6-wrapper div p:last-child a {
    color: var(--font-color-quinary);
    font-weight: bold;
}
footer .footer-wrapper {
    margin: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 10vw - 0.7rem, 9rem);
}
footer .footer-wrapper .parent1 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-bottom: clamp(2rem, 6vw, 4rem);
}
footer .footer-wrapper .parent1 div:first-child img{
    filter: invert(1);
    width: clamp(8rem, 11vw + 5.6rem, 16rem);
}
footer .footer-wrapper .parent1 > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}
footer .footer-wrapper .parent1 > div:first-child p {
    color: var(--font-color-quinary);
    max-width: 400px;
    line-height: 1.5;
    font-size: 0.9rem;
}
footer .footer-wrapper .parent1 > div:last-child {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}
footer .footer-wrapper .parent1 > div:last-child .links p {
    color: var(--font-color-secondary);
    margin-bottom: 1.3rem;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}
footer .footer-wrapper .parent1 > div:last-child .links ul {
    list-style: none;
}
footer .footer-wrapper .parent1 > div:last-child .links ul li {
    margin-bottom: 1.1rem;
}
footer .footer-wrapper .parent1 > div:last-child .links ul a {
    text-decoration: none;
    color: var(--font-color-quinary);
    font-size: 0.85rem;
}
footer .footer-wrapper .parent1 > div:last-child ul a:has(svg) {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: var(--font-color-quinary);
}
footer .footer-wrapper .parent1 > div:last-child .links ul a:has(svg) svg {
    width: 0.8rem;
}
footer .footer-wrapper .parent1 > div:last-child ul a:hover {
    color: var(--font-color-primary);
}
footer .footer-wrapper .parent2 {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}
footer .footer-wrapper .parent2 p {
    color: var(--font-color-quinary);
    font-size: 0.8rem;
}
footer .footer-wrapper .parent2 p a {
    text-decoration: none;
    color: var(--font-color-primary);
}
footer .footer-wrapper .parent2 p a:hover {
    color: var(--font-color-secondary);
}
footer a {
    border-radius: 2px;
}
@media (prefers-reduced-motion: no-preference) {
    .section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span {
        animation: slide 28s ease infinite;
    }
    .section1 .section1-wrapper .parent1 .c1 p {
        animation: load0 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards  ;
    }
    .section1 .section1-wrapper .parent1 > div,
    .section4 .section4-wrapper .parent2 .child {
        animation: load1 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .section2 .section2-wrapper .parent1,
    .section2 .section2-wrapper .parent2 > div,
    .section3 .section3-wrapper .parent1,
    .section4 .section4-wrapper .parent1,
    .section6 .section6-wrapper {
        animation: load2 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .section3 .section3-wrapper .parent2 > div {
        animation: load3 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .section5 .section5-wrapper .parent1 {
        animation: load4 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}
@media (prefers-reduced-motion: reduce) {
    .section1 .section1-wrapper .parent1 .c1 h1 .word-cycler span {
        opacity: 1;
        transform: translateY(0);
    }
    .section1 .section1-wrapper .parent1 .c1 p,
    .section1 .section1-wrapper .parent1 > div,
    .section2 .section2-wrapper .parent1,
    .section4 .section4-wrapper .parent2 .child,
    .section2 .section2-wrapper .parent2 > div,
    .section3 .section3-wrapper .parent1,
    .section3 .section3-wrapper .parent2 > div,
    .section4 .section4-wrapper .parent1,
    .section5 .section5-wrapper .parent1,
    .section6 .section6-wrapper{
        opacity: 1;
    }
}
@media (max-width: 1109px) {
    header nav .links {
        display: none;
    }
    header nav .cta .dd {
        display: none;
    }
    header nav .cta .menu-toggles {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 1023px) {
    .section1 .section1-wrapper {
        grid-template-columns: 1fr;
    }
    .section1 .section1-wrapper .parent2 .animation {
        display: none;
    }
    .section2 .section2-wrapper .parent2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section3 .section3-wrapper .parent2 {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .section4 .section4-wrapper .parent2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        animation: none;
    }
    .section4 .section4-wrapper .parent2::after {
        display: none;
    }
    .section5 .section5-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section5 .section5-wrapper .parent1 {
        position: static;
    }
    .section5 .section5-wrapper .parent2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    footer .footer-wrapper .parent1 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    footer .footer-wrapper .parent1 > div:last-child {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    footer .footer-wrapper .parent2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
@media (max-width: 639px) {
    .section3 .section3-wrapper .parent2 {
        grid-template-columns: 1fr;
    }
    .section4 .section4-wrapper .parent2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 456px) {
    .section1 .section1-wrapper .parent1 .c2 ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .section6 .section6-wrapper {
        padding: 0 2rem;
    }
    .section6 .section6-wrapper div p:last-child {
        max-width: 200px;
        text-align: center;
    }
}
