* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Neuzeit Grotesk Light", sans-serif;
    background: #030f37;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

:root {
    --size-default: 22px;
    --size-sm: 16px;
    --color-green: #58dd93;
    --color-black: #000;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --glowColor {
    syntax: "<color>";
    initial-value: #58dd93;
}

@keyframes rotate {
    0% {
        --angle: 0deg;
        --glowColor: var(--color-green);
    }
    100% {
        --angle: 360deg;
        --glowColor: var(--color-green);
    }
}

.bg-image {
    width: 100%;
    height: 100vh;
}

/* Header */
header {
    position: absolute;
    top: 48px;
    left: 48px;
    right: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    height: 44px;
    width: auto;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 17L17 7M17 7H7M17 7v10"/></svg>')
        no-repeat center;
    background-size: contain;
}

/* Main content */
.hero-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 1129px;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    color: white;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.2;
}
.hero-title strong {
    font-family: "Neuzeit Grotesk Bold", sans-serif;
}

.animated-text-container {
    height: 98px;
    overflow: hidden;
    position: relative;
    margin: 24px 0;
}

.animated-text {
    color: #1ed58c;
    font-size: 64px;
    font-family: "Neuzeit Grotesk Bold", sans-serif;
    line-height: 98px;
    white-space: nowrap;
    animation: slideText 16s infinite;
}

@keyframes slideText {
    0%,
    12.5% {
        transform: translateY(0);
    }
    12.5%,
    25% {
        transform: translateY(-98px);
    }
    25%,
    37.5% {
        transform: translateY(-196px);
    }
    37.5%,
    50% {
        transform: translateY(-294px);
    }
    50%,
    62.5% {
        transform: translateY(-392px);
    }
    62.5%,
    75% {
        transform: translateY(-490px);
    }
    75%,
    87.5% {
        transform: translateY(-588px);
    }
    87.5%,
    100% {
        transform: translateY(-686px);
    }
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.coming-soon-text {
    color: white;
    font-size: 48px;
    font-weight: 300;
}

.website-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.website-url {
    font-size: 42px;
    background: linear-gradient(93deg, #1ed58c 49.3%, #02917a 87.76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
    text-decoration: none;
    font-family: "Georgia";
    font-style:italic;
    padding: 0 5px;
}

.underline {
    width: 238px;
    height: 1.5px;
    background: #b3f1d9;
    margin-top: 4px;
}

.da-text {
    color: white;
    font-size: 48px;
    font-weight: 300;
}

/* Responsive design */
@media (max-width: 1200px) {

    .hero-title {
        font-size: 28px;
    }

    .animated-text {
        font-size: 48px;
        line-height: 78px;
    }

    .animated-text-container {
        height: 78px;
    }

    @keyframes slideText {
        0%,
        12.5% {
            transform: translateY(0);
        }
        12.5%,
        25% {
            transform: translateY(-78px);
        }
        25%,
        37.5% {
            transform: translateY(-156px);
        }
        37.5%,
        50% {
            transform: translateY(-234px);
        }
        50%,
        62.5% {
            transform: translateY(-312px);
        }
        62.5%,
        75% {
            transform: translateY(-390px);
        }
        75%,
        87.5% {
            transform: translateY(-468px);
        }
        87.5%,
        100% {
            transform: translateY(-546px);
        }
    }

    .coming-soon-text,
    .da-text {
        font-size: 36px;
    }

    .website-url {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    header {
        top: 24px;
        left: 24px;
        right: 24px;
    }

    .hero-title {
        font-size: 24px;
    }

    .animated-text {
        font-size: 28px;
        line-height: 58px;
    }

    .animated-text-container {
        height: 58px;
    }

    @keyframes slideText {
        0%,
        12.5% {
            transform: translateY(0);
        }
        12.5%,
        25% {
            transform: translateY(-58px);
        }
        25%,
        37.5% {
            transform: translateY(-116px);
        }
        37.5%,
        50% {
            transform: translateY(-174px);
        }
        50%,
        62.5% {
            transform: translateY(-232px);
        }
        62.5%,
        75% {
            transform: translateY(-290px);
        }
        75%,
        87.5% {
            transform: translateY(-348px);
        }
        87.5%,
        100% {
            transform: translateY(-406px);
        }
    }

    .coming-soon-text,
    .da-text {
        font-size: 24px;
    }

    .website-url {
        font-size: 22px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* fonts*/
@font-face {
    font-family: "Neuzeit Grotesk Regular";
    src: url("./fonts/neuzeit-grotesk-regular.ttf") format("truetype");
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Neuzeit Grotesk Light";
    src: url("./fonts/neuzeit-grotesk-light.ttf") format("truetype");
    font-display: swap;
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Neuzeit Grotesk Bold";
    src: url("./fonts/neuzeit-grotesk-bold.ttf") format("truetype");
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Georgia";
    src: url("./fonts/Georgia-Italic.ttf") format("truetype");
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}
