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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #F5F3EE 0%, #E8E4DD 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    color: #0C0C0C;
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 3s ease-in-out infinite;
    z-index: 1;
}

.sparkle.pink {
    background: #FF1F8F;
}

.sparkle.orange {
    background: #FFB020;
}

.sparkle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 15%; right: 15%; animation-delay: 0.5s; }
.sparkle-3 { top: 40%; left: 5%; animation-delay: 1s; }
.sparkle-4 { top: 60%; right: 10%; animation-delay: 1.5s; }
.sparkle-5 { bottom: 20%; left: 15%; animation-delay: 2s; }
.sparkle-6 { bottom: 15%; right: 20%; animation-delay: 2.5s; }
.sparkle-7 { top: 30%; right: 5%; animation-delay: 0.8s; }
.sparkle-8 { top: 70%; left: 20%; animation-delay: 1.2s; }
.sparkle-9 { top: 25%; left: 30%; animation-delay: 1.8s; }
.sparkle-10 { bottom: 30%; right: 25%; animation-delay: 0.3s; }

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Blobs */
.blob {
    position: absolute;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #00C896;
    top: 10%;
    left: -100px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #FFB020;
    bottom: 10%;
    right: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-image {
    margin: 2rem auto;
    max-width: 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0C0C0C;
    margin: 2rem 0 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 0px rgba(255, 31, 143, 0.1);
}

.subtitle {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon {
    background: linear-gradient(135deg, #FF1F8F 0%, #FF4FA8 100%);
    color: white;
    padding: 3rem;
    border-radius: 30px;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(255, 31, 143, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coming-soon p {
    font-size: 1.2rem;
    opacity: 0.95;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.notify-section {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 3px solid #FF1F8F;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: #00C896;
    box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.1);
}

.email-input.border-error {
    border-color: #FF1F8F;
    box-shadow: 0 0 0 4px rgba(255, 31, 143, 0.1);
}

.notify-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00C896 0%, #00A87A 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 200, 150, 0.3);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 200, 150, 0.4);
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Honeypot - completely hidden from users */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Success/Error messages */
.message {
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.message.hidden {
    display: none;
}

.message.error {
    color: #FF1F8F;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 31, 143, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 31, 143, 0.3);
}

.message.success {
    background: linear-gradient(135deg, #00C896 0%, #00A87A 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.3);
    animation: slideIn 0.5s ease;
}

.success-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
}

.success-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.success-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.success-subtitle {
    font-size: 0.9rem;
    opacity: 0.95;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: #6A6A6A;
    font-size: 0.9rem;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #00C896;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00A87A;
    text-decoration: underline;
}

.footer-company {
    font-size: 0.85rem;
    color: #8A8A8A;
    margin-top: 0.5rem;
}

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

    .coming-soon h2 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .notify-section {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .coming-soon {
        padding: 2rem;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }
}
