:root {
    --green: #1DB954;
    --green-dark: #128C3E;
    --white: #ffffff;
    --gray: #a6f3cd;
    --text: #1f2933;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: 'Inter', sans-serif;

    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--text);
}

.wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}


.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 250px;
    animation: float 4s ease-in-out infinite;
    will-change: transform;
}

.logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
}


.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.hero h1 {
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
}


.badge {
    position: relative;
    overflow: hidden;

    display: inline-block;
    background: rgba(29, 185, 84, 0.12);
    color: var(--green-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}


.badge::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -150%;
    width: 50%;
    height: 140%;

    background: linear-gradient(110deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 50%,
            transparent 100%);

    transform: skewX(-25deg);
    opacity: 0;

    animation: animeShine 5.5s cubic-bezier(.2, .6, .3, 1) infinite;
}


.badge::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.28);
    opacity: 0;

    animation: animeFlash 5.5s ease-in-out infinite;
}



@keyframes animeShine {
    0% {
        left: -150%;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    55% {
        left: 120%;
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

@keyframes animeFlash {

    0%,
    12% {
        opacity: 0;
    }

    16% {
        opacity: 0.45;
    }

    22% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}






.features {
    display: grid;
    gap: 16px;
}

.feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature i {
    color: var(--green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.cta {
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.cta>* {
    position: relative;
    z-index: 2;
}



.cta::before,
.cta::after {
    content: '$   $  $    $   $ \A $   $  $    $   $ \A  $    $ $   $  $ \A $  $    $   $  $ \A  $   $  $    $ $ \A $   $  $    $   $';
    white-space: pre;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;

    font-family: sans-serif;
    font-weight: 900;
    color: #eeff00;
    pointer-events: none;
    z-index: 1;

    text-align: justify;
    letter-spacing: 2.5rem;
    line-height: 5rem;
}


.cta::before {
    font-size: 1.8rem;
    opacity: 0.08;
    animation: fallingDollars 14s linear infinite;
}


.cta::after {
    content: '$     $   $      $ \A   $ $      $    $ \A $      $   $    $ \A   $   $      $ $ \A $      $ $    $   \A $   $      $   $';
    font-size: 1.2rem;
    opacity: 0.05;
    letter-spacing: 1.5rem;
    line-height: 4rem;
    margin-left: 15%;

    animation: fallingDollars 9s linear infinite;
    animation-delay: -4s;

}

@keyframes fallingDollars {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0%);
    }
}


.cta h2 {
    margin-bottom: 12px;
}

.cta p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

.cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--green-dark);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* FOOTER */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

footer a {
    margin-left: 14px;
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
}


@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
    }
}



@keyframes float {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.18));
    }

    50% {
        transform: translateY(-12px);
        filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.25));
    }

    100% {
        transform: translateY(0);
        filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.18));
    }
}