/* GLOBAL */

:root {
    --accent-color: #D1FF54;
    --accent-color-translucent: #D1FF5420;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #FFF;
    background-color: #010101;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

main {
    flex: 1 0 auto;
}

a,
.link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
}

a:visited {
    color: var(--accent-color);
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

section {
    margin: 12rem 0;
}

@media (max-width: 992px) {
    section {
        margin: 10rem 0;
    }
}

@media (max-width: 768px) {
    section {
        margin: 8rem 0;
    }
}

@media (max-width: 576px) {
    section {
        margin: 5rem 0;
    }
}

/* HEADER */

header {
    color: #FFF;
    padding: 2rem 0;
}

header .logo a {
    color: #000;
    text-decoration: none;
}

.navigation-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navigation-menu a,
.navigation-menu a:visited {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.25s, text-decoration-color 0.25s;
}

.navigation-menu a:hover {
    color: #D1FF54;
    text-decoration: none;
}

.menu-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    color: currentColor;
    fill: currentColor;
    stroke: currentColor;
}

.menu-open {
    display: block;
}

.menu-close {
    display: none;
}

.navbar-toggler {
    color: inherit;
    border: 0;
    background: transparent;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:not(.collapsed) .menu-open {
    display: none;
}

.navbar-toggler:not(.collapsed) .menu-close {
    display: block;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 992px) {
    header {
        padding: 1.5rem 0;
    }

    .navigation-menu a,
    .navigation-menu a:visited {
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    header {
        padding: 0.75rem 0;
    }
}

/* FOOTER */

footer {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #010101;
    color: #BBB;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.nav-link {
    color: #BBB;
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: #BBB;
    text-decoration: underline;
}

.nav-link:visited {
    color: #BBB;
}

.nav .nav-item:not(:last-child) {
    border-right: 2px solid #333;
}

.socials-icon {
    color: var(--accent-color);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.socials-icon:hover {
    background-color: var(--accent-color-translucent);
}

@media (max-width: 768px) {
    footer {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .nav .nav-item:not(:last-child) {
        border-right: none;
    }
}

/* HERO */

.icon-quote {
    display: block;
    margin-bottom: 1rem;
    color: var(--accent-color-translucent);
}

.hero-title {
    font-size: 4.625rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    color: var(--accent-color);
}

.hero-title-gradient {
    background: linear-gradient(150deg, #F1FF0F 10%, #85FFBC 40%, #3CFF82 70%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    color: #FFF;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* SECTION TITLE */

.section-title {
    font-size: 7.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--accent-color);
}

.section-title-gradient {
    background: linear-gradient(90deg, #BEFF53, #91FFAD, #57FF89);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 3rem;
    }
}

/* SECTION SUBTITLE */

.section-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 150%;
    color: #FFF;
    text-align: center;
}

@media (max-width: 992px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

/* SECTION CAPTION */

.section-caption {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 140%;
    margin: 0 auto;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .section-caption {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .section-caption {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-caption {
        font-size: 0.875rem;
    }
}

/* SUBSECTION TITLE */

.subsection-title {
    font-size: 4.75rem;
    font-weight: 700;
    line-height: 120%;
    color: var(--accent-color);
    text-align: start;
}

@media (max-width: 992px) {
    .subsection-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .subsection-title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .subsection-title {
        font-size: 2rem;
    }
}

/* BADGE BUTTON */

.badge-btn {
    display: inline-block;
    overflow: hidden;
    border-radius: 0.5rem;
    width: 160px;
    height: 54px;
    transition: transform 1s ease;
}

.badge-btn img {
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
}

.badge-btn:hover {
    transform: scale(1.02);
}

/* IMAGE EFFECTS */

.scaling-img {
    transition: transform 2s ease;
}

.scaling-img:hover {
    transform: scale(1.02);
}

/* FEATURES */

.phone-mockup {
    max-height: 800px;
}

.feature-title {
    font-size: 4rem;
    font-weight: 700;
    color: #FFF;
}

.feature-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 1rem;
    color: #CCC;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .feature-title {
        font-size: 2.5rem;
    }

    .feature-subtitle {
        font-size: 1.125rem;
    }

    .feature-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .feature-title {
        font-size: 2rem;
    }

    .feature-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .phone-mockup {
        max-height: 600px;
    }
}

/* BANNER */

.banner-full-width {
    display: block;
    width: 100%;
    background: var(--accent-color);
    color: #000;
    border: none;
    text-decoration: none;
}

.banner-full-width .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 576px) {
    .banner-full-width .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.banner-full-width-gradient {
    background: linear-gradient(135deg, #DFFF00, #00FF7F);
}

.banner-logo {
    width: 200px;
    height: 200px;
}

.banner-icon {
    transition: transform 2s ease;
}

.banner-icon:hover {
    transform: scale(1.02);
}

.banner-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 1rem;
    }

    .banner-subtitle {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 0.875rem;
    }

    .banner-logo {
        width: 80px;
        height: 80px;
    }
}

/* POWERED BY */

.powered-title {
    font-size: 1rem;
    font-weight: 400;
    color: #FAFBFF;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.powered-logo {
    max-height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .powered-title {
        font-size: 0.75rem;
    }
}

/* CARDS */

.card {
    display: block;
    background-color: #111;
    border: 1px solid #222;
    border-radius: 1.25rem;
    color: #FFF;
    text-decoration: none;
}

.card-hover {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 60px var(--accent-color-translucent);
    text-decoration: none;
    color: inherit;
}

.card-gradient {
    background: linear-gradient(150deg, #DFFF00 25%, #85FFBC, #00FF7F);
    color: #000;
}

.card-gradient .card-title {
    color: #000;
}

.card-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto;
    text-transform: uppercase;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .card-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .card-logo {
        width: 120px;
        height: 120px;
    }
}

/* PRODUCT CARDS */

.product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
}

.product-card-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-title {
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card-subtitle {
    color: #BBB;
    font-size: 1rem;
    font-weight: 400;
}

.product-card-link {
    color: #FFF;
    font-size: 1rem;
    font-weight: 500;
}

.product-card:hover .product-card-link,
.product-card:focus-within .product-card-link {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .product-card-icon {
        width: 100px;
        height: 100px;
    }

    .product-card-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .product-card-icon {
        width: 80px;
        height: 80px;
    }

    .product-card-title {
        font-size: 1rem;
    }

    .product-card-subtitle,
    .product-card-link {
        font-size: 0.875rem;
    }
}

/* CTA BUTTON */

.cta-btn {
    display: inline-block;
    background: linear-gradient(270deg, #F1FF0F, #3CFF82, #85FFBC, #F1FF0F);
    background-size: 400% 400%;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0px 0px 20px #3CFF8210;
    border: none;
    transform-origin: center;
    will-change: transform;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: gradientMove 10s ease infinite;
}

.cta-btn:hover {
    color: #000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0px 10px 60px #3CFF8270;
}

.cta-btn:visited {
    color: #000;
}

.cta-btn:active {
    transform: translateY(1px);
}

.cta-btn-dark {
    background: #000;
    color: #FFF;
}

.cta-btn-dark span {
    background: linear-gradient(90deg, #F1FF0F, #85FFBC, #3CFF82);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: inline-block;
    animation: gradientMove 5s ease infinite;
}

.cta-btn-dark:hover {
    box-shadow: 0px 10px 60px #DFFF00;
}

@media (max-width: 768px) {
    .cta-btn {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}