:root {
    --bg-color: #0c0c0e;
    --text-color: #ffffff;
    --accent-color: #7b2ff7;
    --accent-glow: rgba(123, 47, 247, 0.4);
    --secondary-accent: #00f2ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

/* Background Effects */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a1a1f 0%, #0c0c0e 100%);
}

.blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.blob-1 {
    background: var(--accent-color);
    top: -10%;
    right: -10%;
    animation: drift 20s infinite alternate;
}

.blob-2 {
    background: var(--secondary-accent);
    bottom: -15%;
    left: -10%;
    animation: drift 25s infinite alternate-reverse;
}

.blob-3 {
    background: #ff00de;
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    opacity: 0.3;
    animation: drift 15s infinite alternate;
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-10%, 10%) scale(1.1); }
}

.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

/* Main Content Layout */
main {
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.location i {
    width: 16px;
    color: var(--secondary-accent);
}

/* Hero Section */
.hero {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    perspective: 1000px;
}

.hero-content {
    max-width: 800px;
    padding: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.status {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tagline {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.description {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Form */
.signup-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    transition: var(--transition);
}

.signup-form:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

.signup-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.signup-form button {
    background: white;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.signup-form button:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

.signup-form button i {
    width: 20px;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: white;
    opacity: 0.6;
    transition: var(--transition);
}

.socials a:hover {
    opacity: 1;
    color: var(--secondary-accent);
    transform: translateY(-3px);
}

.contact-email a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
}

.contact-email a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Reveal Animation States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
    }
    
    .signup-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .signup-form input {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 100px;
        padding: 1rem 1.5rem;
    }
    
    .signup-form button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    footer {
        flex-direction: column;
        gap: 2rem;
    }
    
    header {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
}
