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

:root {
    --color-primary: #16EBB2;
    --color-secondary: #1B0055;
}

body {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    background-color: var(--color-secondary);
    color: #fff;
    overflow-x: hidden;
}

.coming-soon {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.background-image {
    width: 100%;
    z-index: -1;
}

.background-image img {
    width: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 876px;
    padding-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
}

.logo {
    margin-bottom: clamp(1.875rem, 1.2515rem + 1.5613vw, 3.125rem);
    max-width: 420px;
    width: 100%;
    animation: fadeIn 0.4s ease-in;
}

.content-inner {
    animation: fadeIn 0.5s ease-in;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.title {
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.24;
}

h1.title {
    font-size: clamp(1.1875rem, 0.221rem + 2.42vw, 3.125rem);
}

h2.title {
    font-size: clamp(1.1875rem, 0.2191rem + 2.4248vw, 2.75rem);
}

.email {
    display: inline-block;
    font-size: clamp(0.8125rem, 0.5943rem + 0.5464vw, 1.25rem);
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: clamp(0.9375rem, 0.6257rem + 0.7806vw, 1.5625rem);
    transition: all 0.3s ease;
    text-transform: uppercase;
    word-break: break-word;
}

.email:hover {
    color: #00D9C0;
    text-shadow: 0 8px 14px rgba(100, 88, 230, 0.65);
}

.social-icons {
    display: flex;
    gap: clamp(0.625rem, 0.3132rem + 0.7806vw, 1.25rem);
}

.social-icon {
    width: 74px;
    height: 74px;
    border: 1px solid #16EBB2;
    color: #16EBB2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-icon:hover {
    background-color: #16EBB2;
    transform: scale(1.1);
    box-shadow: 0 8px 14px rgba(100, 88, 230, 0.65);
    color: white;
}

.social-icon svg {
    width: 25px;
    height: 25px;
}

.uppercase {
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background-color: var(--color-primary);
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #16EBB2;
    box-shadow: 0 8px 14px rgba(100, 88, 230, 0.65);
    transform: scale(1.01);
    color: white;
}

.scroll-btn {
    transition: all 0.3s ease;
    margin-top: clamp(1.875rem, -0.0618rem + 4.8497vw, 5rem);
    display: flex;
}

.scroll-btn:hover {
    opacity: 0.5;
}

.arrow {
    transform: rotate(0deg);
    cursor: pointer;
}

.arrow span {
    display: block;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    margin: -12px 0;
    animation: scrollBtnArrowAnim 2s infinite;
    border-radius: 2px;
}

.arrow span:nth-child(1) {
    border-bottom: 3px solid rgba(22, 235, 178, 0.50);
    border-right: 3px solid rgba(22, 235, 178, 0.50);
}
.arrow span:nth-child(2) {
    animation-delay: -0.2s;
    border-bottom: 3px solid rgba(22, 235, 178, 0.70);
    border-right: 3px solid rgba(22, 235, 178, 0.70);
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
    border-bottom: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1rem, -0.2995rem + 3.8797vw, 3.75rem);
    width: 100%;
}

#main {
    margin-top: 80px;
    scroll-margin: 40px;
}

p {
    line-height: 24px;
    margin-bottom: 24px;
}

.col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.col img {
    object-fit: contain;
    height: auto;
}

.sec-1 {
    position: relative;
    margin-bottom: clamp(2.5rem, 0.9505rem + 3.8797vw, 5rem);
}

.sec-1 .columns {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: clamp(2rem, -2.6484rem + 9.6392vw, 6.5rem);
}

.sec-1 .columns .col:first-child {
    gap: 40px;
}

.sec-1 .col:last-child {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-1 .ball {
    position: absolute;
    top: 0;
    right: -20px;
    z-index: -1;
    transform: translateY(-20%);
}

@keyframes scrollBtnArrowAnim {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-15px, -15px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(15px, 15px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        filter: blur(6px);
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

/* Mobile styles */
@media (min-width: 769px) {
    .coming-soon {
        justify-content: center;
        align-items: flex-end;
    }

    .content {
        padding-top: 35%;
        margin-top: 0;
        padding-left: 40px;
        margin-right: clamp(3.75rem, -2.6415rem + 16.0039vw, 14.0625rem);
    }

    .background-image {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .scroll-btn {
        margin-left: -24px;
    }

    #main {
        margin-top: clamp(5rem, 2.6758rem + 5.8196vw, 8.75rem);
    }
}
@media (max-width: 768px) {
    .coming-soon {
        align-items: center;
    }

    .logo {
        max-width: clamp(10rem, 6.6993rem + 14.6699vw, 13.75rem);
    }

    .scroll-btn {
        justify-content: center;
    }
}
@media(min-width: 1024px) {
    .sec-1 .columns {
        flex-direction: row;
    }
    .sec-1 .col:last-child {
        max-width: 50%;
    }
    .sec-1 .col:last-child {
        position: static;
    }
}