@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary: #6d28d9;
    /* Deep violet */
    --primary-light: #8b5cf6;
    --secondary: #db2777;
    /* Pink */
    --accent: #0ea5e9;
    /* Sky blue from logo drop */
    --background: #f8fafc;
    /* Light slate */
    --text-main: #1e293b;
    /* Dark slate */
    --text-dim: #475569;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-logo: linear-gradient(135deg, #6d28d9, #db2777);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Dynamic background circles - subtle for light mode */
body::before,
body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    animation: float 25s infinite alternate ease-in-out;
}

body::before {
    background: var(--primary);
    top: -150px;
    left: -150px;
}

body::after {
    background: var(--accent);
    bottom: -150px;
    right: -150px;
    animation-delay: -12.5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 80px) scale(1.1);
    }
}

#bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('hero.webp') no-repeat center center;
    background-size: cover;
    filter: brightness(1.05) saturate(0.8) opacity(0.25);
    /* Increased visibility of the new hero image */
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body:hover #bg-container {
    transform: scale(1.05);
}

main {
    width: 90%;
    max-width: 650px;
    padding: 4.5rem 3.5rem;
    border-radius: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    text-align: center;
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.logo-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    /* White background as requested */
    padding: 1.5rem;
}

.main-logo {
    max-width: 350px;
    height: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-logo:hover {
    transform: scale(1.05) rotate(-1deg);
}

.status-badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: #ede9fe;
    border: 1px solid #ddd6fe;
    border-radius: 2rem;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.02em;
}

p.description {
    font-size: 1.25rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    background: #ffffff;
    padding: 0.75rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.input-group:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 10px 15px -3px rgba(109, 40, 217, 0.1);
}

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

input[type="email"]::placeholder {
    color: #94a3b8;
}

button.notify {
    background: var(--gradient-logo);
    color: white;
    border: none;
    padding: 0.85rem 2.25rem;
    border-radius: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    box-shadow: 0 4px 14px 0 rgba(109, 40, 217, 0.39);
}

button.notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.5);
    filter: brightness(1.05);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.social-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

footer {
    position: absolute;
    bottom: 2.5rem;
    width: 100%;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    main {
        padding: 3.5rem 1.5rem;
        width: 92%;
        border-radius: 2rem;
    }

    .main-logo {
        max-width: 280px;
    }

    h2 {
        font-size: 2.25rem;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    input[type="email"] {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 1rem;
        margin-bottom: 0.75rem;
        padding: 1rem;
    }

    button.notify {
        width: 100%;
    }
}