@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #07070a;
    --text: #f6f6f7;
    --muted: #8a8a94;
    --border: rgba(255, 255, 255, 0.09);
    --accent: #9d7cff;
    --accent-2: #5a7cff;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(92, 72, 180, 0.10),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    font-family: "Inter", sans-serif;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
}

/* Background noise */

.noise {
    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: 0.035;

    z-index: 100;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='.6'/%3E%3C/svg%3E");
}

/* Ambient lights */

.glow {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(150px);

    opacity: 0.11;

    pointer-events: none;

    animation: float 12s ease-in-out infinite;
}

.glow-1 {
    left: -250px;
    top: -150px;

    background: var(--accent);
}

.glow-2 {
    right: -250px;
    bottom: -200px;

    background: var(--accent-2);

    animation-delay: -5s;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(35px, 25px);
    }
}

/* Main */

.coming-soon {
    width: 100%;
    max-width: 1050px;

    margin: auto;

    padding: 80px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    position: relative;

    z-index: 2;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1px solid var(--border);

    padding: 8px 13px;

    border-radius: 100px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #b2b2ba;

    background: rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(15px);

    margin-bottom: 35px;
}

.dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #8d72ff;

    box-shadow:
        0 0 8px rgba(141, 114, 255, 0.7);

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

/* Logo */

.logo {
    font-size: clamp(3rem, 10vw, 7rem);

    font-weight: 800;

    letter-spacing: 0.16em;

    margin-left: 0.16em;

    line-height: 1;

    background:
        linear-gradient(
            120deg,
            #ffffff 10%,
            #b8b8c5 45%,
            #ffffff 75%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: reveal 1.2s ease forwards;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.line {
    width: 45px;
    height: 1px;

    margin: 34px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            #777,
            transparent
        );
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);

    font-weight: 400;

    letter-spacing: -0.04em;

    margin-bottom: 18px;
}

.description {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    font-weight: 300;
}

/* Countdown */

.countdown {
    margin-top: 58px;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 18px;
}

.time-box {
    min-width: 75px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.time-box span {
    font-size: clamp(2rem, 5vw, 3.7rem);

    font-weight: 300;

    letter-spacing: -0.06em;

    font-variant-numeric: tabular-nums;
}

.time-box small {
    font-size: 8px;

    color: #5f5f69;

    letter-spacing: 2px;

    font-weight: 600;
}

.separator {
    margin-top: 8px;

    color: #313139;

    font-size: 2rem;

    font-weight: 200;
}

/* Notify */

.notify {
    width: 100%;
    max-width: 470px;

    margin-top: 65px;
}

.notify > p {
    font-size: 11px;

    color: #777781;

    margin-bottom: 15px;
}

.input-wrapper {
    display: flex;

    width: 100%;

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 5px;

    background: rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(20px);

    transition: 0.25s;
}

.input-wrapper:focus-within {
    border-color: rgba(157, 124, 255, 0.4);

    box-shadow:
        0 0 0 3px rgba(157, 124, 255, 0.05);
}

input {
    flex: 1;

    min-width: 0;

    background: transparent;

    border: 0;
    outline: 0;

    color: white;

    padding: 0 16px;

    font-family: inherit;

    font-size: 12px;
}

input::placeholder {
    color: #595963;
}

button {
    border: 0;

    background: #f3f3f5;

    color: #111114;

    padding: 14px 18px;

    border-radius: 7px;

    font-family: inherit;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;

    cursor: pointer;

    display: flex;
    align-items: center;

    gap: 12px;

    transition:
        transform 0.2s,
        background 0.2s;
}

button:hover {
    background: #ffffff;

    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

button span {
    font-size: 14px;
}

.form-message {
    height: 18px;

    margin-top: 10px;

    font-size: 10px;

    color: #9898a3;
}

/* Footer */

footer {
    width: 100%;

    padding: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    color: #44444d;

    font-size: 9px;

    letter-spacing: 1px;

    position: relative;

    z-index: 2;
}

.footer-dot {
    color: #29292f;
}

/* Mobile */

@media (max-width: 600px) {

    .coming-soon {
        padding: 60px 20px;
    }

    .logo {
        font-size: clamp(2.5rem, 14vw, 4rem);
        letter-spacing: 0.1em;
        margin-left: 0.1em;
    }

    .countdown {
        gap: 4px;

        margin-top: 45px;

        width: 100%;
    }

    .time-box {
        min-width: 60px;
        flex: 1;
    }

    .time-box span {
        font-size: 2rem;
    }

    .separator {
        font-size: 1.4rem;
        margin-top: 5px;
    }

    .notify {
        margin-top: 50px;
    }

    .input-wrapper {
        flex-direction: column;

        gap: 5px;
    }

    input {
        min-height: 47px;
    }

    button {
        justify-content: center;

        width: 100%;
    }
}
/* Voryenta Logo */

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 5px;

    animation: logoReveal 1.2s ease forwards;
}

.voryenta-logo {
    width: 180px;
    height: 180px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 0 25px rgba(157, 124, 255, 0.12))
        drop-shadow(0 0 60px rgba(157, 124, 255, 0.05));
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.94);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}
.logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-bottom: 5px;

    animation: logoReveal 1.2s ease forwards;
}

.voryenta-logo {
    width: 180px;
    height: 180px;

    object-fit: contain;
    display: block;

    filter:
        drop-shadow(0 0 25px rgba(157, 124, 255, 0.12))
        drop-shadow(0 0 60px rgba(157, 124, 255, 0.05));
}

.brand-name {
    margin-top: 18px;

    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 700;

    letter-spacing: 0.32em;
    margin-left: 0.32em;

    color: #f4f4f6;

    background: linear-gradient(
        120deg,
        #ffffff 10%,
        #a9a9b4 50%,
        #ffffff 90%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 35px rgba(255, 255, 255, 0.04);
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.94);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}