@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
    --font-family-primary: "Source Sans Pro", sans-serif;
    --pulse-animation-duration: 600ms;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: var(--font-family-primary);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

a {
    text-decoration: none;
}

#mocks {
    border-radius: 1rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero {
    padding-bottom: 8rem;
}

.logo-wrap {
    margin-bottom: 2rem;
    padding: 1rem 0;
    text-align: center;
    background-color: rgba(245, 245, 245, 1);
}

.activision {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.activision p {
    margin: 0;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
    opacity: .3;
}

#click-icon {
    width: 48px;
}

.hero-title {
    margin-bottom: 2.6rem;
    font-weight: 700;
    font-size: 50px;
    line-height: 49px;
    text-align: center;
}

.hero-title span {
    color: rgba(246, 53, 52, 1);
}

.email-wrap {
    position: relative;
    margin-top: .8rem;
    margin-bottom: 1.6rem;
    padding: 0 1.2rem;
}

.email-icon {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.email-input {
    width: 100%;
    padding: 20px 16px 20px 16%;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2%;
    border: 2px solid rgba(229, 229, 229, 1);
    border-radius: 10px;
}

.email-input::placeholder {
    opacity: .5;
}

.email-input:focus {
    outline: none;
    border-color: rgba(15, 203, 139, 1);
}

.email-input.valid {
    border-color: rgba(15, 203, 139, 1);
}

.cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-btn {
    display: block;
    width: 90%;
    padding: 18px 50px;
    border: unset;
    border-radius: 1000px;
    color: #fff;
    font-size: 26px;
    line-height: 38px;
    font-weight: 600;
    text-align: center;
}

.cta-btn.disabled {
    background: rgba(219, 219, 219, 1);
    -webkit-tap-highlight-color: transparent;
}

.cta-btn:not(.disabled) {
    animation: pulse var(--pulse-animation-duration) ease-in-out infinite;
    will-change: transform;
    background: rgba(15, 203, 139, 1);
}

.cta-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.4rem;
    margin-bottom: 1.5rem;
    gap: 7px;
    font-size: 15px;
    color: rgba(106, 114, 130, 1);
}

.cta-desc svg {
    margin-right: 4px;
}

.cta-desc span {
    font-weight: 600;
    color: rgba(15, 203, 139, 1);
}

.separator {
    position: relative;
    top: 4px;
    margin: 0 -42px;
}

.steps {
    display: flex;
    gap: 4px;
    margin-top: 1rem;
    margin-bottom: 3rem;
    padding: 0 .8rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step svg {
    margin-bottom: .3rem;
}

.step__count {
    margin: 0 0 .3rem 0;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 18%;
    font-weight: 400;
    text-transform: uppercase;
    opacity: .4;
}

.step__desc {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 100%;
}

.acc-creation-desc {
    margin-bottom: 2rem;
    padding: 12px;
    border-radius: 12px;
    background: rgba(229, 229, 229, 0.4);
    color: rgba(128, 128, 128, 1);
    letter-spacing: -2%;
    line-height: 100%;
    font-size: 10px;
}

.download {
    padding-bottom: 2rem;
}

.unlimited-title {
    text-align: center;
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
}

.download-title {
    margin: 0;
    padding: 1rem 0 1.4rem 0;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
}

.about {
    margin-bottom: 1rem;
    position: relative;
    padding: 3rem 0 2rem 0;
    background-image: url('../images/about-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.about-title {
    margin: 0;
    padding: 1.6rem 0;
    text-align: center;
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
    color: #fff;
}

.about-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.4rem
}

.card--about {
    text-align: center;
}

.card--about img {
    max-width: 40px;
    margin-bottom: 5px;
}

.card--about h3 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.card--about p {
    margin: 0;
    font-size: 13px;
    color: #fff;
}

footer {
    padding: 20px;
    background-color: #000;
}

footer .img-wrap {
    text-align: center;
}

footer img {
    max-width: 200px;
}

footer .links {
    display: flex;
    margin-top: 20px;
    justify-content: space-around;
}

footer a {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -2%;
    color: rgba(168, 168, 168, 1);
}