:root {
    --charcoal: #2C3E50;
    --sandy-brown: #FFA45B;
    --text-dark: #1C1C2E;
    --light-text: rgba(28, 28, 46, 0.7);
    --white: #FFFFFF;
}
body {
    margin: 0;
    padding: 0;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    transition: opacity 2s ease;
}
.glow-background {
    position: absolute;
    top: 50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 164, 91, 0.4) 0%, transparent 70%);
    z-index: 0;
    filter: blur(80px);
    animation: pulse 6s infinite ease-in-out;
    border-radius: 50%;
    transition: transform 0.5s ease;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
}
@keyframes pop {
    0% { transform: scale(1); }
    30% { transform: scale(1.4); }
    50% { transform: scale(0.9); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.content {
    position: relative;
    z-index: 1;
}
.logo {
    max-width: 240px;
    margin-bottom: 40px;
}
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}
p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.6;
}
.email-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
input[type="email"] {
    padding: 12px 20px;
    border: 1px solid var(--light-text);
    border-radius: 6px;
    background: var(--white);
    font-size: 1rem;
    width: 250px;
    color: var(--text-dark);
}
input[type="email"]::placeholder {
    color: var(--light-text);
}
button {
    padding: 12px 24px;
    font-size: 1rem;
    border: 1px solid var(--sandy-brown);
    background: transparent;
    color: var(--sandy-brown);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background-color: var(--sandy-brown);
    color: var(--white);
}
.footer {
    margin-top: 30px;
    font-size: 0.75rem;
    color: var(--light-text);
}
