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

body {
    background: #03040f;
    color: white;
    font-family: Inter, sans-serif;
    overflow: hidden;
}

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

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

    text-align: center;
    padding: 2rem;
}

.background {
    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(139,92,246,.18),
            transparent 60%);

    filter: blur(80px);

    animation: pulse 8s ease-in-out infinite;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    margin-bottom: 0.75rem;
}

.logo-icon {
    width: 110px;
    height: 110px;

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

    flex-shrink: 0;

    border-radius: 28px;

    background: linear-gradient(
        135deg,
        #8b5cf6 0%,
        #6366f1 45%,
        #0ea5e9 100%
    );

    box-shadow:
        0 0 45px rgba(139, 92, 246, 0.55),
        0 0 90px rgba(14, 165, 233, 0.25);

    animation: iconPulse 6s ease-in-out infinite;
}

.bolt-icon {
    width: 58px;
    height: 58px;
    color: white;
    z-index: 2;

    filter:
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.75))
        drop-shadow(0 0 18px rgba(255, 255, 255, 0.35));
}

h1 {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;

    background: linear-gradient(
        90deg,
        #8b5cf6,
        #38bdf8,
        #a855f7
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: titlePulse 6s ease-in-out infinite;

    filter:
        drop-shadow(0 0 24px rgba(139, 92, 246, 0.45))
        drop-shadow(0 0 42px rgba(56, 189, 248, 0.25));
}

@keyframes titlePulse {
    0%, 100% {
        filter:
            hue-rotate(0deg)
            drop-shadow(0 0 22px rgba(139, 92, 246, 0.45))
            drop-shadow(0 0 36px rgba(56, 189, 248, 0.22));
    }

    50% {
        filter:
            hue-rotate(28deg)
            drop-shadow(0 0 38px rgba(168, 85, 247, 0.7))
            drop-shadow(0 0 72px rgba(56, 189, 248, 0.42));
    }
}

button {
    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #3b82f6,
            #06b6d4,
            #8b5cf6
        );

    background-size: 300% 300%;

    color: white;

    border: none;

    padding: 1rem 2rem;

    border-radius: 14px;

    font-size: 1rem;
    font-weight: 600;

    cursor: default;

    animation:
        buttonGradient 5s ease-in-out infinite,
        buttonGlow 3s ease-in-out infinite;

    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.45);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlow {
    0%, 100% {
        filter:
            drop-shadow(0 0 18px rgba(139, 92, 246, 0.35))
            drop-shadow(0 0 28px rgba(59, 130, 246, 0.2));
    }

    50% {
        filter:
            drop-shadow(0 0 34px rgba(168, 85, 247, 0.65))
            drop-shadow(0 0 58px rgba(56, 189, 248, 0.35));
    }
}

@keyframes iconGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow:
            0 0 45px rgba(139, 92, 246, 0.55),
            0 0 90px rgba(59, 130, 246, 0.25);
    }

    50% {
        box-shadow:
            0 0 70px rgba(168, 85, 247, 0.75),
            0 0 130px rgba(56, 189, 248, 0.45);
    }
}

@keyframes buttonGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow:
            0 0 28px rgba(139, 92, 246, 0.35);
    }

    50% {
        box-shadow:
            0 0 52px rgba(56, 189, 248, 0.55);
    }
}

.tagline {
    font-size: 1.5rem;
    color: #a8acc7;

    margin-bottom: 6rem;
}

button {
    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #3b82f6
        );

    color: white;

    border: none;

    padding:
        1rem 2rem;

    border-radius: 14px;

    font-size: 1rem;
    font-weight: 600;

    cursor: default;

    box-shadow:
        0 0 30px rgba(139,92,246,.35);
}

.footer-text {
    margin-top: 0.35rem;

    color: #7d84a8;

    font-size: .95rem;

    letter-spacing: 1px;
}

@keyframes gradientFlow {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.15);
    }
}
.launching-soon {
    margin-top: 0;
    margin-bottom: 0.5rem;

    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.02em;

    background: linear-gradient(
        90deg,
        #8b5cf6,
        #38bdf8,
        #a855f7
    );

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: titlePulse 6s ease-in-out infinite;

    filter:
        drop-shadow(0 0 12px rgba(139, 92, 246, 0.35))
        drop-shadow(0 0 24px rgba(56, 189, 248, 0.18));
}

.copyright {
    position: fixed;
    bottom: 24px;

    font-size: 0.8rem;
    color: rgba(160, 160, 184, 0.55);

    letter-spacing: 0.04em;

    transition: opacity 0.3s ease;
}

.copyright:hover {
    opacity: 1;
}