:root {
    --bg-color: #07070b;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-blue: #00e0ff;
    --accent-purple: #7000ff;
    --glass-bg: rgba(20, 20, 25, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent scroll on landing if possible */
    position: relative;
    perspective: 1000px;
}

/* Background Effects */
#particle-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-blue), transparent 60%);
    top: -20vh;
    left: -10vw;
    animation-delay: 0s;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-purple), transparent 60%);
    bottom: -15vh;
    right: -5vw;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 5%) scale(1.1); }
    66% { transform: translate(-5%, 10%) scale(0.9); }
}

/* Glass Container */
.glass-container {
    position: relative;
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 4rem;
    max-width: 700px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
.brand {
    margin-bottom: 2rem;
}

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

.dot {
    -webkit-text-fill-color: var(--accent-blue);
}

.title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Form Styles */
.notify-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.input-group {
    display: flex;
    width: 100%;
    max-width: 450px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group:focus-within {
    border-color: rgba(0, 224, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.2);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #00aaff);
    color: #000;
    border: none;
    padding: 0 1.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.success-message {
    margin-top: 1rem;
    color: #4ade80;
    font-size: 0.95rem;
    animation: fadeIn 0.5s ease-out;
}

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

/* Footer & Socials */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-container {
        padding: 2.5rem 1.5rem;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        border: none;
        gap: 10px;
    }
    
    input[type="email"] {
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid var(--glass-border);
    }
    
    .btn-primary {
        padding: 1rem;
        border-radius: 12px;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .title {
         font-size: 1.8rem;
    }
}
