:root {
    --bg-color: #0d1117;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --accent-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #999999 100%);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Effects */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.15;
    pointer-events: none;
    z-index: 10;
}

.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.blob-1 {
    top: -20%;
    left: -20%;
    animation: floating-1 25s infinite ease-in-out;
}

.blob-2 {
    bottom: -20%;
    right: -20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: floating-2 30s infinite ease-in-out;
}

.blob-3 {
    top: 40%;
    left: 60%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: floating-3 35s infinite ease-in-out;
}

@keyframes floating-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15vw, 10vh) scale(1.1); }
    66% { transform: translate(-5vw, 20vh) scale(0.9); }
}

@keyframes floating-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-10vw, -15vh) scale(1.2); }
    66% { transform: translate(5vw, -5vh) scale(0.85); }
}

@keyframes floating-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20vw, 10vh) scale(1.1); }
}

@keyframes float-particle {
    0% { transform: translateY(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* Layout */
.content-wrapper {
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
    z-index: 20;
}

.logo {
    width: 240px;
    height: auto;
    margin-bottom: 20px;
}

.hero {
    margin-bottom: 50px;
}

.headline {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    vertical-align: bottom;
}

#typing-text::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 0.8em;
    background: var(--accent-color);
    margin-left: 5px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.subheadline {
    color: var(--text-secondary);
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* Form Styles */
.waitlist {
    margin-bottom: 80px;
}

.glass-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 100px;
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-form:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.glass-form input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 15px 25px;
    flex-grow: 1;
    font-size: 1rem;
    font-family: inherit;
}

.glass-form input::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.feedback-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer & Socials */
.footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: var(--text-primary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 1rem;
    opacity: 0.8;
    animation: shimmer 5s ease-in-out infinite;
    background: linear-gradient(90deg, var(--text-secondary) 0%, #ffffff 50%, var(--text-secondary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in 1s forwards;
}

.header { animation-delay: 0.2s; }
.hero { animation-delay: 0.4s; }
.waitlist { animation-delay: 0.6s; }
.footer { animation-delay: 0.8s; }

@keyframes fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .glass-form {
        border-radius: 20px;
        flex-direction: column;
        padding: 5px;
    }
    
    .submit-btn {
        width: 100%;
        border-radius: 15px;
        margin-top: 5px;
    }
}
