:root {
    --primary-text: rgba(255, 255, 255, 0.9);
    --secondary-text: rgba(255, 255, 255, 0.6);
    --background-color: #0d0d1a;
    --accent-gradient: linear-gradient(90deg, #da00ff, #00c2ff);
    --font-serif: 'Lora', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--background-color);
    background-image: radial-gradient(circle at 20% 20%, rgba(100, 100, 200, 0.1) 0%, transparent 40%),
                      radial-gradient(circle at 80% 80%, rgba(200, 100, 100, 0.1) 0%, transparent 40%);
    font-family: var(--font-sans);
    color: var(--primary-text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
    animation: fadeIn 2s ease-in-out;
}

header h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.creed {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.divider {
    height: 1px;
    width: 50%;
    margin: 2rem auto;
    background: linear-gradient(90deg, transparent, var(--secondary-text), transparent);
    opacity: 0.3;
}

.genesis-call h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.genesis-call p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0 auto;
}

form input[type="email"] {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-text);
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

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

form input[type="email"]:focus {
    outline: none;
    border-color: #00c2ff;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.3);
}

form button {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(150, 50, 200, 0.3);
}

footer {
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    header h1 { font-size: 2.5rem; }
    .creed { font-size: 1rem; }
    .genesis-call h2 { font-size: 2rem; }
}