/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111;
    background: radial-gradient(ellipse at 20% 30%, #ffe5db 40%, transparent 70%),
                radial-gradient(ellipse at 80% 40%, #d6f6ff 40%, transparent 70%),
                #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Header */
.header {
    padding: 2rem 0 0 0;
    text-align: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-title {
    font-size: 5rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Remove all previous countdown and form styles */
.countdown-container, .form-note, .email-form, .form-group, .notify-btn {
    display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.typing-cursor {
    display: inline-block;
    margin-left: 2px;
    width: 1ch;
    animation: blink 0.8s steps(1) infinite;
    color: #111;
    font-weight: 500;
    font-size: inherit;
}
.typing-cursor.done {
    animation: none;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.footer {
    padding: 2rem 0;
    text-align: center;
}

.copyright {
    color: rgba(34, 34, 34, 0.7);
    font-size: 0.95rem;
} 