*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: 'Magnetik';
    src: url('./../fonts/magnetik/Magnetik-Regular.woff2') format('woff2'),
        url('./../fonts/magnetik/Magnetik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* @font-face {
    font-family: 'Magnetik';
    src: url('./../fonts/magnetik/Magnetik-Bold.woff2') format('woff2'),
        url('./../fonts/magnetik/Magnetik-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
} */

@font-face {
    font-family: 'Magnetik';
    src: url('./../fonts/magnetik/Magnetik-Medium.woff2') format('woff2'),
        url('./../fonts/magnetik/Magnetik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Magnetik';
    src: url('./../fonts/magnetik/Magnetik-SemiBold.woff2') format('woff2'),
        url('./../fonts/magnetik/Magnetik-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f7fafc;
    --card: #ffffff;
    --muted: #6b7280;
    --accent: #2563eb;
    --border: #e6e9ee;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Magnetik';
    color: #565656;
}


a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}


/*********************** TYPO ***********************/

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

h1,
h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.5rem);
    color: #121212;
    font-weight: 500;
}

h3 {
    font-weight: 500;
    font-size: clamp(1.75rem, 3.25vw, 3.25rem);
    color: #121212;
}

h4 {
    font-size: 2rem;
    color: #1D1D1F;
}

h5 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #121212;
}


h6 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #121212;
}


/*********************** COMMON ***********************/
.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-end {
    align-items: end;
}

.align-items-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: 1rem;
}

.text-center {
    text-align: center;
}

.site-container {
    max-inline-size: var(--container-size, 1554px);
    padding-inline: 1rem;
    margin-inline: auto;
}

.site-container>*+* {
    margin-top: 2.5rem;
}

.flow-root {
    &>*+* {
        margin-top: 1.5rem;
    }
}


.section-gutter {
    padding-block: 5rem;
}


.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}


.downloads a {
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
    border-radius: 9px;
}

header {
    padding-block: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.cta {
    display: inline-block;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 1em 6em;
    background-color: #1D1D1F;
    color: #fff;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.22);
    border-radius: 5px;
    transition: 0.25s ease;
}

.cta:hover {
    background-color: #414d62;
}



/*********************** HERO ***********************/

.site__hero {
    background-image: url('./../img/bg-hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 8rem;
    position: relative;
}

.site__hero::after {
    content: '';
    position: absolute;
    background-color: #fff;
    height: 10%;
    bottom: 0;
    left: 0;
    right: 0;
}


.site__hero p {
    color: #373737;
    font-size: 1.25rem;
    max-inline-size: 56ch;
    margin-inline: auto;
}

.site__hero figure {
    max-inline-size: 1020px;
    margin-inline: auto;
    background-color: #121212;
    background-image: url('./../img/logo-white.png');
    background-repeat: no-repeat;
    background-position: center;
    /* box-shadow: 0px 34px 54px rgba(0, 0, 0, 0.37); */
    box-shadow: -2px 4px 20px 0px rgb(0 0 0 / 16%);
    border-radius: 20px;
    overflow: clip;
    margin-block-start: 5rem;
    position: relative;
    z-index: 1;
    aspect-ratio: 1020/546;
}


/*********************** DOWNLOAD APP ***********************/
.site__downloads {
    background-color: #121212;
    color: #fff;
    padding-block: 3rem;
    position: relative;
}

.site__downloads::before {
    content: '';
    position: absolute;
    background-color: inherit;
    inset: 0;
    transform: translateY(-98%);
    pointer-events: none;
}

.site__downloads::after {
    content: '';
    position: absolute;
    width: 552px;
    height: 552px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 86px;
    background: rgba(146, 146, 146, 0.2);
    mix-blend-mode: screen;
    filter: blur(122px);
    pointer-events: none;

}

.site__downloads p {
    font-size: 25px;
}

.site__downloads a {
    border: 1px solid #fff;
    border-radius: 5px;
    overflow: hidden;
    padding-block: 0.5em;
    background-color: #1d1d1f;
    width: 230px;
    flex-shrink: 1;

}

.site__downloads a img {
    margin: auto;
}


/*********************** BENIFITS ***********************/
.site__benefits .downloads {
    margin-top: 2.5rem;
}

.benefit--card-style {
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    box-shadow: 0px 11px 33px rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    padding: 1.5rem;
}

.benefit--card-style>*+* {
    margin-top: 1rem;
}

.benefit--card-style p {
    color: #565656;
}


/*********************** ACCELERATE ***********************/
.site__accelerate {
    background-color: #F6F6F6;
}

.accelerate--card-style {
    background: #FBFBFB;
    border: 1px solid #C9C9C9;
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem;
}


/*********************** FAQ ***********************/
.site__faq {
    --container-size: 990px;
}

.site__faq.with-bg {
    background-color: #F6F6F6;
}

.accordion-single-item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #DDDDDD;
}

.accordion-single-title {
    cursor: pointer;
    position: relative;
    font-weight: 500;
    font-size: 1.5rem;
    color: #1D1D1F;
    padding-right: 60px;
}

.accordion-single-title::after {
    content: "";
    display: block;
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    right: 0;
    top: -0.1em;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    background-image: url('./../img/+.svg');
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0px 2px 11px -6px rgba(0, 0, 0, 0.07);
}

.accordion-single-content {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 170%;
    color: #595959;
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.1s ease-in-out;
}

.accordion-single-item.is-open .accordion-single-content {
    grid-template-rows: 1fr;
    padding-top: 1rem;
}

.accordion-single-item.is-open .accordion-single-title::after {
    background-color: #1D1D1F;
    border-color: #1D1D1F;
    background-image: url('./../img/-.svg');
}

.accordion-inner-content {
    overflow: hidden;
}

.accordion-inner-content a {
    color: #000;
    text-decoration: underline;
}

/* FOOTER DOWNLOADS */
.site__footer-downloads {
    background-image: url('./../img/bg-footer.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* PRICING */
.site__pricing {
    --container-size: 830px;
    padding-block-start: 8rem;
}

.site__pricing p {
    font-size: 1.125rem;
}


.table-wrap {
    overflow-x: auto;
    background: #FBFBFB;
    border: 1px solid #f1f1f1;
    box-shadow: 0px 14px 24px rgb(0 0 0 / 9%);
    padding: 1rem;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: inherit;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f3f3f3;
}

table h6 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.15em;
    font-weight: 500;
}


th,
td {
    font-size: 1.125rem;
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #ededed;
    vertical-align: middle;
}

th {
    background: #121212;
    color: #b7b7b7;
    font-weight: 200;
}

th:last-child {
    text-align: right;
}

td.amount {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 600;
    color: #121212;
    white-space: nowrap;
}

tr:last-child td {
    border-bottom: 0;
}

.social-media-connect {
    margin-top: 3rem;
}

.social-media-connect>a {
    border: 1px solid #d3d3d3;
    padding: 1em;
    border-radius: 0.5em;
    text-align: left;
    flex-wrap: wrap;
}

.social-media-connect>a:hover{
    background: #f4f5f7;
    border-color: #cecece;
}
.social-media-connect img {
    width: 3.5rem;
}

.header-social-media-connect {
    font-size: 1.15rem;
}

.header-social-media-connect img {
    width: 2.5em;
}

.site__footer-downloads p {
    color: #373737;
    font-size: 1.25rem;
    max-inline-size: 56ch;
    margin-inline: auto;
}


footer {
    color: #929292;
    background-color: #1D1D1F;
}

footer a:hover {
    color: #fff;
}

.social-links a {
    width: 45px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #606060;
}

.social-links a img {
    width: 30px;
}

.social-links a:hover {
    background: #fff;
    border-color: #fff;
}

.social-links a:hover img {
    filter: brightness(0) saturate(100%);

}




dialog {
    margin: auto;
    padding: 2rem;
    border: none;
    width: 100%;
    max-width: 650px;
    background-image: url('./../img/bg-footer.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 0.5rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s ease, overlay 0.25s ease allow-discrete;
}

dialog[open] {
    opacity: 1;
}


dialog::backdrop {
    background-color: rgb(41 41 41 / 65%);
    opacity: 0;
    transition: opacity 0.25s ease, display 0.25s ease allow-discrete;
}

dialog[open]::backdrop {
    opacity: 1;
}


dialog h6 {
    margin-top: 0.5rem;
}


dialog h5 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-block: 2rem;
}

dialog h5 img {
    max-width: 8em;
    vertical-align: middle;
    margin-left: 0.25em;
}

dialog figure {
    margin-bottom: 2rem;
}

.dialog-close {
    float: right;
    background-color: transparent;
    border: none;
    outline: none;
    width: 1.5rem;
    height: 1.rem;
    cursor: pointer;
}

/* Starting states for discrete animation (required for [open] to animate) */
@starting-style {
    dialog[open] {
        opacity: 0;
        transform: scale(0.95);
    }

    dialog[open]::backdrop {
        opacity: 0;
    }
}

@media(max-width: 991px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site__downloads::before {
        bottom: auto;
        height: 50%;
    }
}

@media(max-width: 767px) {

    header {
        padding-block: 1rem;
    }

    header .downloads {
        display: none;
    }


    .header-social-media-connect {
        font-size: 0.85rem;
    }

    .header-social-media-connect p {
        display: none;
    }

    header figure img {
        max-width: 150px;
    }

    .section-gutter {
        padding-block: 2.5rem;
    }

    .site__pricing {
        padding-block-start: 6rem;
    }


    .site__hero {
        padding-top: 6rem;
    }

    .site__hero figure {
        margin-block-start: 3rem;
        border-radius: 8px;
    }

    .grid-2,
    .grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    h4 {
        font-size: 1rem;
    }

    .accordion-single-title,
    h5,
    h6 {
        font-size: 1.25rem;
    }

    .site__hero p,
    .site__footer-downloads p {
        font-size: 1rem;
    }

    .accelerate--card-style {
        padding: 1.25rem;
    }

    .site-container>*+* {
        margin-top: 2rem;
    }

    .cta {
        padding: 1em 4em;
    }

    td.amount,
    th,
    td {
        font-size: 1rem;
        padding: 1em;
    }

    table h6 {
        font-size: 1.25rem;
    }

    th {
        font-size: 0.85rem;
    }

    .table-wrap {
        padding: 0;
    }


    dialog {
        padding: 1.5rem 1rem;
    }

    dialog figure img {
        max-width: 8rem;
    }

    dialog h5 {
        font-size: 1.25rem;
    }

    dialog h5 img {
        max-width: 6em;
    }
}