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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Gradient background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(40deg, #000000, #000000);
    z-index: 0;
}

.gradients-container {
    width: 100%;
    height: 100%;
    filter: url(#blurMe) blur(40px);
}

.gradient-orb {
    position: absolute;
    mix-blend-mode: hard-light;
    width: 50%;
    height: 50%;
    top: calc(50% - 25%);
    left: calc(50% - 25%);
    opacity: 1;
}

.gradient-1 {
    background: radial-gradient(circle at center, rgba(242, 0, 137, 1) 0%, rgba(242, 0, 137, 0) 50%);
    animation: moveGradient1 20s ease infinite;
}

.gradient-2 {
    background: radial-gradient(circle at center, rgba(209, 0, 209, 0.8) 0%, rgba(209, 0, 209, 0) 50%);
    animation: moveGradient2 18s ease infinite;
    transform-origin: calc(50% - 400px);
}

.gradient-3 {
    background: radial-gradient(circle at center, rgba(161, 0, 242, 0.8) 0%, rgba(161, 0, 242, 0) 50%);
    animation: moveGradient3 22s ease infinite;
    transform-origin: calc(50% + 400px);
}

.gradient-4 {
    background: radial-gradient(circle at center, rgba(45, 0, 247, 0.8) 0%, rgba(45, 0, 247, 0) 50%);
    animation: moveGradient4 16s ease infinite;
    transform-origin: calc(50% - 200px);
    opacity: 0.7;
}

.gradient-5 {
    background: radial-gradient(circle at center, rgba(242, 0, 137, 0.8) 0%, rgba(242, 0, 137, 0) 50%);
    animation: moveGradient5 24s ease infinite;
    transform-origin: calc(50% - 800px) calc(50% + 800px);
}

.gradient-interactive {
    background: radial-gradient(circle at center, rgba(255, 0, 150, 0.9) 0%, rgba(255, 0, 150, 0) 50%);
    width: 80%;
    height: 80%;
    top: -40%;
    left: -40%;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes moveGradient1 {
    0%, 100% { transform: translate(0%, 0%) scale(1); }
    33% { transform: translate(30%, -20%) scale(1.1); }
    66% { transform: translate(-20%, 30%) scale(0.9); }
}

@keyframes moveGradient2 {
    0%, 100% { transform: translate(0%, 0%) rotate(0deg); }
    33% { transform: translate(-30%, 20%) rotate(120deg); }
    66% { transform: translate(20%, -30%) rotate(240deg); }
}

@keyframes moveGradient3 {
    0%, 100% { transform: translate(0%, 0%) rotate(0deg); }
    33% { transform: translate(30%, 30%) rotate(-120deg); }
    66% { transform: translate(-30%, -20%) rotate(-240deg); }
}

@keyframes moveGradient4 {
    0%, 100% { transform: translate(0%, 0%) scale(1); }
    50% { transform: translate(-20%, -20%) scale(1.2); }
}

@keyframes moveGradient5 {
    0%, 100% { transform: translate(0%, 0%); }
    33% { transform: translate(-30%, 30%); }
    66% { transform: translate(30%, -30%); }
}

/* Badge */
.badge {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
    animation: fadeInOnly 1s ease-out;
    will-change: opacity;
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
}

.content {
    max-width: 680px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: #ffffff;
    animation: fadeIn 1s ease-out 0.2s both;
    letter-spacing: -0.02em;
}

.title .italic {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.subtitle {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.4s both;
    font-weight: 400;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

input[type="email"] {
    flex: 1;
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input[type="email"]:focus {
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(30, 30, 40, 0.8);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-btn {
    background: #e8e8ed;
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    color: #66ea93;
    font-size: 1rem;
    animation: slideUp 0.5s ease-out;
    margin-bottom: 2rem;
}

.success-message.show {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.creator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    animation: fadeIn 1s ease-out 0.8s both;
}

.creator-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Responsive design */
@media (max-width: 768px) {
    .badge {
        top: 1.5rem;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .waitlist-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .subtitle br {
        display: none;
    }
}
