:root {
    --primary-color: #4a148c; /* Deep Purple/Indigo */
    --accent-color: #ff4081;  /* Soft Pink/Rose */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

header .logo {
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
}

p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Progress Bar UX */
.progress-container {
    margin: 40px 0;
}

.progress-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.progress-bar {
    background: #dfe6e9;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background: var(--primary-color);
    width: 75%; /* Manually set progress */
    height: 100%;
    transition: width 0.5s ease-in-out;
}

/* Form Styling */
.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 12px 20px;
    border: 2px solid #dfe6e9;
    border-radius: 30px;
    width: 300px;
    outline: none;
}

button {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

button:hover {
    transform: translateY(-2px);
    background: #38006b;
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #b2bec3;
}

.social-links {
    margin-bottom: 10px;
}

.social-links a {
    text-decoration: none;
    color: var(--primary-color);
    margin: 0 10px;
    font-weight: 600;
}

@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    input[type="email"] { width: 100%; }
    button { width: 100%; }
}