.page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    max-width: 1280px;
    margin: 120px auto 0 auto;
    position: relative;
}


@media(max-width: 768px) {
    .page-container {
        margin: 64px 15px 0;
    }
}

.section-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;

    position: relative;
}

.section-container .particles-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 40vh;
    z-index: 0;
}

.page-title {
    line-height: 100%;
    font-weight: 700;
    font-size: 56px;
    letter-spacing: -0.01em;
    text-align: center;
    white-space: pre-wrap;
    word-break: break-word;

    color: var(--text-main);

    z-index: 1;
    position: relative;
}

@media(max-width: 768px) {
    .page-title {
        font-size: 32px;
        word-break: break-word;
        padding: 0 16px;
        line-height: 120%;
    }
}

.page-description {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    text-align: center;

    color: var(--text-secondary);
    white-space: pre-wrap;
    margin-top: 24px;

    z-index: 1;
    position: relative;
}

@media(max-width: 768px) {
    .page-description {
        word-break: break-word;
        padding: 0 16px;
        font-size: 16px;
        white-space: initial;
    }
}

.buttons-container {
    margin-top: 56px;

    display: flex;

    z-index: 1;
    position: relative;
}

.buttons-container a {
    display: block;
    margin-top: 0;
}

.buttons-container a:not(:first-child) {
    margin-left: 18px;
}

@media(max-width: 768px) {
    .buttons-container a:not(:first-child) {
        margin-left: 0;
        margin-top: 18px;
    }

    .buttons-container {
        display: flex;
        flex-direction: column;
    }
}

.rounded-button {
    padding: 20px 56px;

    color: var(--text-on-brand);
    background: var(--surface-brand);
    border: 1px solid var(--surface-border);
    box-sizing: border-box;
    border-radius: 16px;
    margin-top: 56px;

    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    transition: background-color 200ms linear;
}

.rounded-button span {
    transition: all ease 200ms;
    margin-left: 4px;
}

.rounded-button:hover {
    filter: brightness(1.1);
}

.rounded-button > span {
    transform: translateX(5px);
}

@media(max-width: 768px) {
    .rounded-button {
        margin-top: 32px;
    }
}

.transparent-button {
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-main);
    transition: box-shadow 200ms ease;
    border: 1px solid var(--surface-border);
}

.transparent-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: rgb(0 56 110 / 8%) 0 0 15px 5px, rgb(225 237 250) 0 0 0 1px inset;
}

.phone-container {
    width: 100%;
    height: 380px;

    overflow: hidden;

    position: relative;

    border-bottom: 1px solid var(--surface-border);
}

.phone-container::after {
    position: absolute;
    width: 31.25vw;
    height: 34.7vw;

    bottom: -14.1vw;

    left: 0;
    right: 0;
    margin: 0 auto;

    background: url("/ssr-landing-static/super-bow/phone.svg") no-repeat;
    background-size: contain;

    content: '';
}

@media (max-width: 768px) {
    .phone-container::after {
        width: 450px;
        height: 500px;
        bottom: -220px;
        left: -30px;
    }
}

@keyframes circleAnimation {
    0% {
        opacity: .03;
        transform:scale(1)
    }

    50% {
        opacity: .06;
        transform:scale(.9)
    }

    to {
        opacity: .03;
        transform:scale(1)
    }
}

@keyframes circleInnerAnimation {
    0% {
        opacity: .03;
        transform:scale(.8)
    }

    50% {
        opacity: .08;
        transform:scale(1)
    }

    to {
        opacity: .03;
        transform:scale(.8)
    }
}

.big-circle {
    background: var(--surface-brand);
    border-radius: 500px;
    bottom: 0;
    opacity: .03;
    position: absolute;
    top: 90px;
    width: 544px;
    height: 544px;

    left: 0;
    right: 0;
    margin: 0 auto;

    animation: circleAnimation 12s ease-in-out infinite;
}

.smaller-circle {
    width: 418px;
    height: 418px;

    top: 150px;

    animation: circleInnerAnimation 12s ease-in-out infinite;
}

@keyframes heartsAnimation {
    0% {
        opacity: 0;
        transform: rotate(10deg) translateY(45%);
    }

    50% {
        opacity: 0.65;
        transform: rotate(10deg) translateY(-15%);
    }

    to {
        transform: rotate(10deg) translateY(-25%);
        opacity: 0;
    }
}

.hearts-container {
    width: 450px;
    height: 350px;

    z-index: 1;
    position: absolute;

    left: 0;
    right: 0;
    margin: 0 auto;
}

.hearts-container > :nth-child(1) {
    top: 10%;
    left: 20%;
    transform: rotate(10deg);

    animation: heartsAnimation 2s infinite linear;
    animation-delay: 0s;
}

.hearts-container > :nth-child(2) {
    bottom: 10%;
    left: 20%;
    transform: rotate(-19deg);

    animation: heartsAnimation 2.2s infinite linear;
    animation-delay: 200ms;
}

.hearts-container > :nth-child(3) {
    bottom: 34%;
    left: 26%;

    transform: rotate(25deg);

    animation: heartsAnimation 2.5s infinite linear;
    animation-delay: 250ms;
}

.hearts-container > :nth-child(4) {
    bottom: 45%;
    left: 5%;

    transform: rotate(9deg);

    animation: heartsAnimation 2.9s infinite linear;
    animation-delay: 290ms;
}

.hearts-container > :nth-child(5) {
    bottom: 55%;
    left: 35%;

    transform: rotate(49deg);

    animation: heartsAnimation 1.3s infinite linear;
    animation-delay: 100ms;
}

.hearts-container > :nth-child(6) {
    bottom: 15%;
    left: 10%;

    transform: rotate(-50deg);

    animation: heartsAnimation 2.5s infinite linear;
    animation-delay: 600ms;
}

.hearts-container > :nth-child(7) {
    bottom: 25%;
    left: 40%;

    transform: rotate(-22deg);

    animation: heartsAnimation 1.5s infinite linear;
    animation-delay: 800ms;
}

.hearts-container > :nth-child(8) {
    top: 25%;
    left: 1%;

    transform: rotate(22deg);

    animation: heartsAnimation 2.5s infinite linear;
    animation-delay: 500ms;
}

.heart {
    position: absolute;

    background: url("/ssr-landing-static/default/heart.svg") no-repeat;
    background-size: contain;
}

.socials-container {
    margin-top: 100px;
    position: relative;

    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .socials-container .page-description {
        white-space: initial;
    }
}


.socials-container .social-images-container {
    margin-top: 50px;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.socials-container .social-icons-container {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 80%, transparent);
}

.socials-container .social-images-container .social-icons-container .social-icon {
    width: 100%;
    height: 120px;
    z-index: 1;

    animation: infiniteScroll 40s linear infinite;
}

.socials-container .social-images-container .social-icons-container .social-icon:not(:first-child) {
    padding-left: 20px;
}

@media(max-width: 768px) {
    .socials-container .social-images-container .social-icons-container .social-icon {
        width: initial;
        height: 80px;
    }
}

.features-section {
    position: relative;

    padding: 100px 0;
}

.features-section .page-title {
    color: #000;
}

.features-section .page-description {
    color: #465666;
}

.features-section::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: radial-gradient(21.05% 11.89% at 98.84% 103.11%, rgba(170, 191, 248, 0.20) 0%, rgba(169, 190, 246, 0.03) 72.4%, rgba(169, 190, 246, 0.00) 100%), radial-gradient(120.28% 33.72% at 98.73% -14.02%, rgba(170, 191, 248, 0.20) 0%, rgba(169, 190, 246, 0.03) 72.4%, rgba(169, 190, 246, 0.00) 100%), radial-gradient(77.12% 60.8% at 53.79% 100.02%, #AABFF8 0%, #AABFF7 10.61%, rgba(169, 190, 246, 0.17) 72.4%, rgba(169, 190, 246, 0.00) 100%), radial-gradient(30.21% 60.39% at 58.48% 97.49%, rgba(211, 232, 242, 0.90) 0%, rgba(169, 246, 241, 0.15) 72.4%, rgba(169, 246, 241, 0.00) 100%), radial-gradient(18.29% 23.49% at 10.22% 103.42%, rgba(189, 169, 246, 0.90) 0%, rgba(193, 169, 246, 0.15) 72.4%, rgba(193, 169, 246, 0.00) 100%), radial-gradient(59.8% 60.61% at 0% 96.01%, rgba(219, 169, 246, 0.90) 0%, rgba(219, 169, 246, 0.15) 72.4%, rgba(219, 169, 246, 0.00) 100%), linear-gradient(94deg, #F8FCFB 0.73%, #F4FAFF 96.82%);
}

.features-section > * {
    z-index: 22;
    position: relative;
}

@media (max-width: 768px) {
    .features-section {
        margin-top: 0;

        padding: 0 0 100px;
    }

    .features-section .page-title {
        padding-top: 15vw;
    }
}


.features-section .features-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;

    max-width: 1280px;
    margin: 100px auto 0;
}


@media(max-width: 768px) {
    .features-section .features-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        padding: 0 17px;
        margin-top: 12.5vh;
    }
}

.feature-box-container {
    position: relative;
    padding: 88px 24px 32px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 12px 32px 0 rgba(0, 48, 105, 0.05);
}

.feature-box-container:not(:first-child) {
    margin-left: 32px;
}

@media(max-width: 768px) {
    .feature-box-container:not(:first-child) {
        margin-top: 80px;
        margin-left: 0;
    }
}

@media(max-width: 768px) {
    .feature-box-container {
        padding: 23vw 11.2vw 8.53vw;
    }
}

.feature-box-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
}

.feature-box-text {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-top: 8px;
    color: #465666;
}

.feature-box-icon-container {
    position: absolute;
    top: -64px;

    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;

    padding: 32px;

    width: 128px;
    height: 128px;

    background-color: #fff;
    border-radius: 1000px;
    box-shadow: 0 12px 32px 0px rgba(0, 48, 105, 0.05);
    border: 1px solid #EBF1F7;
}

@media(max-width: 768px) {
    .feature-box-icon-container {
        top: -14.7vw;
        width: 128px;
        height: 128px;
    }
}

.feature-box-icon {
    width: 64px;
    height: 64px;
}

.panel-features-container {
    margin-top: 100px;
    padding: 0 5.52vw;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.panel-features-container .features-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    max-width: 1280px;
}

.panel-features-container .features-container a {
    align-self: center;
}

.panel-features-container .features-container > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-gap: 20px;
}

@media (max-width: 768px) {
    .panel-features-container .features-container > div {
        grid-template-columns: 1fr;
        margin-bottom: 32px;
    }

    .panel-features-container .features-container {
        flex-direction: column;
        padding: 0;
    }
}

.panel-features-container .feature-text {
    position: relative;
    color: var(--text-main);
    padding-left: 40px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
    white-space: pre-wrap;
}

.panel-features-container .feature-text::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    -webkit-mask: url('/ssr-landing-static/super-bow/check.svg') no-repeat;
    mask: url('/ssr-landing-static/super-bow/check.svg') no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--surface-brand);
}

.order-card-container {
    bottom: 10px;
    left: 0;
    width: 100%;
    transform: perspective(350px) rotateX(7deg) rotateY(0) skew(0);
    max-width: 1200px;

    right: 0;
    margin: 50px auto;
}

@media (min-width: 769px) {
    .order-card-container > * {
        max-width: 100% !important
    }

    .card-container {
        border-radius: 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .order-card-container {
        transform: unset;
        bottom: -190px;
    }

    .order-card-container > * {
        bottom: -20px;
    }
}

.panel-features-container .features-container .rounded-button {
    margin-top: 0;
}
