:root {
    --bg-color: #0c0e12;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #dbf24a;
    /* A vibrant lime/green pop */
    --accent-glow: rgba(219, 242, 74, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

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

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(62, 100, 255, 0.15) 0%, rgba(12, 14, 18, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

.background-glow::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(219, 242, 74, 0.1) 0%, rgba(12, 14, 18, 0) 70%);
    filter: blur(100px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
    z-index: 1;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Logo */
.logo {
    height: 90px;
    /* Adjust based on actual logo size */
    margin-bottom: 3rem;
    filter: brightness(0) invert(1);
    /* Make sure SVG is white if it's black */
}

/* Typography */
.headline {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff, #a0a0a0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.subhead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Form */
.notify-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem;
    border-radius: 99px;
    /* Pill shape */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    display: inline-block;
    width: 100%;
    max-width: 450px;
    transition: var(--transition);
}

.notify-form:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.input-group {
    display: flex;
    align-items: center;
}

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

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

button {
    background: linear-gradient(135deg, #ff9a44, #fc6076);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 99px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

button.success {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

/* Footer */
.footer {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.3);
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 600px) {
    .headline {
        font-size: 2.5rem;
    }

    .notify-form {
        border-radius: 12px;
        padding: 1rem;
    }

    .input-group {
        flex-direction: column;
        gap: 1rem;
    }

    button {
        width: 100%;
    }

    input[type="email"] {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }
}