* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #5f6677;
	background: url("../assets/bg.jpg") center bottom / cover no-repeat;
}

.background-top {
	background-color: #c5cedb;
}

.background-bottom {
	background-color: #6a5440;
}

.landing-page {
	min-height: 100svh;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;

    padding: 60px 20px;

    position: relative;
    overflow: hidden;
}

/* ===========================
   LOGO
=========================== */

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper .logo-label {
    font-size: 28px;
    font-weight: 300;
    color: #96a0bb;
    margin-top: 18px;
    margin-bottom: 18px;
    transition: all .8s ease;
}

.logo-wrapper.sm .logo-label {
    font-size: 18px;
    margin-bottom: 8px;
}

.logo-wrapper .logo img {
    width: 100%;
    max-width: 960px;
    display: block;
    transition: all .8s ease;
}

.logo-wrapper.sm .logo img {
    max-width: 500px;
}

/* ===========================
   CONTENT
=========================== */

.call-to-download-container,
.verify-code-container {
    position: absolute;
    inset: 0;

    transition: transform .8s ease;

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

.landing-page.show-verify .call-to-download-container {
    transform: translateY(-100%);
    pointer-events: none;
}

.landing-page.show-verify .verify-code-container {
    transform: translateY(0);
}

/* ===========================
   CALL TO DOWNLOAD
=========================== */

.call-to-download-container {
    width: 100%;
    max-width: 960px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;

    top: 320px;
}

.call-to-download-container .call-description {
    font-size: 28px;
    font-weight: 400;

    margin-bottom: 30px;

    color: #5f6677;
}

.call-to-download-container button {
    width: 600px;
    height: 60px;
    margin: 0 auto;

    border: 1px solid #555f72;
    border-radius: 18px;

    background: transparent;
    backdrop-filter: blur(8px);

    padding: 6px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 22px;
    font-weight: 600;

    color: #555f72;

    cursor: pointer;

    transition: .2s ease;
    position: relative;
}

.call-to-download-container button:hover {
    background: #adb4c5;
}

.call-to-download-container button img {
    width: 44px;
    height: auto;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
	animation: arrowBounce 1.6s ease-in-out infinite;
}

@keyframes arrowBounce {
	0%, 100% {
		margin-top: 0;
	}
	50% {
		margin-top: 8px;
	}
}


/* ===========================
   VERIFY CODE
=========================== */

.verify-code-container {
    justify-content: center;
    padding: 0 24px 30px 24px;
    color: white;
    text-align: center;

    transform: translateY(100dvh);
    top: -80px;
}

.verify-code-container .buttons, .verify-code-container .button-descriptions {
    display: flex;
    gap: 50px;
    width: 100%;
    max-width: 960px;
    margin-bottom: 40px;
}

.verify-code-container .buttons input {
    width: 50%;
    height: 60px;
    padding: 6px 20px;

    border: 1px solid #555f72;
    border-radius: 18px;

    background: #eff3f7;
    backdrop-filter: blur(8px);

    color: #555f72;
    font-size: 22px;
    font-family: inherit;
    outline: none;
}

.verify-code-container .buttons input::placeholder {
    color: #adb4c5;
}

.verify-code-container .buttons button {
    width: 50%;
    height: 60px;
    padding: 6px 40px;

    border: none;
    border-radius: 18px;

    background: #555f72;
    color: #eff3f7;

    font-size: 22px;
    text-align: left;
    cursor: pointer;

    transition: .2s;
    position: relative;
}

.verify-code-container .buttons button img {
    width: 32px;
    height: auto;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.verify-code-container .buttons button:hover {
    background: #333b4b;
    color: #eff3f7;
}

.verify-code-container .button-descriptions div {
    width: 50%;
    font-size: 16px;
    font-weight: 200;
    color: #555f72;
    text-align: left;
    padding-left: 10px;
}

.verify-code-container .button-descriptions p {
    margin: 0;
}

.verify-code-container .contact-info {
    font-size: 20px;
    color: #555f72;
}

/* ===========================
   POPUP
=========================== */

.popup {
    width: 75%;
    max-width: 800px;
    background: white;
    border-radius: 18px;
    padding: 70px 60px 20px 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 1000;
    display: none;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup.active {
    display: initial;
}

.popup.error {
    padding-bottom: 30px;
}

.popup.error h3 {
    font-size: 22px;
    text-align: center;
    color: #555f72;
    margin-bottom: 20px;
}

.popup.error .popup-label div {
    margin-bottom: 20px;
}

.popup .popup-label {
    font-size: 20px;
    text-align: justify;
    color: #555f72;
    margin-bottom: 30px;
}

.popup .popup-label div.details {
    font-size: 16px;
    font-weight: 200;
    color: #bac0d2;
}

.popup .popup-label h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.popup .download-buttons {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 30px;
}

.popup .download-buttons button {
    width: 100%;
    /*height: 60px;*/
    /*max-height: 120px;*/
    padding: 18px 60px 18px 20px;
    border: none;
    border-radius: 18px;
    background: #555f72;
    color: #eff3f7;
    font-size: 22px;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: .2s;
}

.popup .download-buttons button:hover {
    background: #333b4b;
    color: #eff3f7;
}

.popup .download-buttons button img {
    width: 32px;
    height: auto;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.popup .close-popup img {
    width: 32px;
    height: auto;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.popup-overlay {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,.55);
    backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 9999;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay.active .download-popup {
    transform: scale(1);
}

body.popup-open {
    overflow: hidden;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1060px) {
    .popup {
        width: 80%;
    }
}

@media (max-width: 820px) {
    .popup {
        top: 50%;
        width: 90%;
        padding: 70px 40px 10px 40px;
    }

    .popup .popup-label {
        font-size: 18px;
        text-align: justify;
        margin-bottom: 30px;
    }

    .popup .popup-label div.details {
        font-size: 12px;
    }

    .popup .popup-label h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .popup .download-buttons button {
        padding: 18px 60px 18px 20px;
        font-size: 20px;
    }
}

@media (max-width: 650px) {
	body {
		background-image: url("../assets/bg-mobile.jpg");
	}

    .call-to-download-container,
    .verify-code-container {
        position: initial;
    }

    .verify-code-container {
        transform: translateY(0);
        display: none;
        transition: all .8s ease;
    }

    .landing-page {
        padding: 20px 0;
    }

    .landing-page.show-verify .call-to-download-container {
        transform: translateY(0);
        pointer-events: none;
    }

    .landing-page.show-verify .verify-code-container {
        transform: translateY(0);
    }

    .logo-wrapper {
        margin-top: 40px;
        margin-bottom: 90px;
        transition: all .8s ease;
    }

    .logo-wrapper .logo-label, .logo-wrapper.sm .logo-label {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .logo-wrapper.sm .logo img {
        max-width: 100%;
    }

    .logo-wrapper.md {
        margin-top: 0;
        margin-bottom: 36px;
    }

    .logo img {
        width: 100%;
    }

    .call-to-download-container {
        top: 260px;
        width: 86%;
    }

    .call-to-download-container .call-description {
        font-size: 22px;
        margin-bottom: 36px;
        text-align: center;
    }

    .call-to-download-container button {
        width: 100%;
        height: 120px;
        padding-right: 70px;
        font-size: 22px;
        text-align: left;
        display: block;
    }

    .call-to-download-container button.hidden {
        display: none;
    }

    .call-to-download-container button img {
        width: 30px;
        right: 20px;
    }

    .verify-code-container.active {
        transform: translateY(0);
    }

    .verify-code-container {
        transform: translateY(40px);
    }

    .verify-code-container .buttons {
        gap: 24px;
        width: 100%;
        margin-bottom: 36px;
        flex-direction: column;
    }

    .verify-code-container .buttons input {
        width: 100%;
    }

    .verify-code-container .buttons button {
        width: 100%;
        padding: 6px 20px;
    }

    .verify-code-container .button-descriptions {
        gap: 24px;
        flex-direction: column;
        margin-bottom: 24px;
    }

    .verify-code-container .button-descriptions div {
        width: 100%;
    }

    .verify-code-container .contact-info {
        font-size: 16px;
        text-align: left;
        padding-left: 10px;
    }
}

@media (max-width: 510px) {
    .logo-wrapper {
        top: 80px;
    }

    .call-to-download-container {
        top: 300px;
        width: 86%;
    }

    .call-to-download-container .call-description {
        font-size: 22px;
        font-weight: 200;
        margin-bottom: 40px;
    }

    .call-to-download-container button {
        font-size: 22px;
        padding: 20px 20px;
        text-align: center;
		animation: pulse 3s ease infinite;
    }

    .call-to-download-container button img {
        display: none;
    }

	@keyframes pulse {
		0%,100% {
			transform: scale(1);
		}
		50% {
			transform: scale(1.03);
		}
	}

    .verify-code-container {
        top: 0px;
    }

    .popup {
        width: 100%;
        border-radius: 0;
        height: 100dvh;
        padding: 80px 30px 10px 30px;
    }

    .popup .popup-label {
        margin-bottom: 40px;
    }

    .popup .download-buttons {
        margin-bottom: 40px;
        gap: 20px;
    }

    .popup.error {
        background: #333b4b;
    }

    .popup.error h3, .popup.error .popup-label div {
        color: #eff3f7;
    }
}
