/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #6b46c1 0%, #8b5cf6 50%, #a78bfa 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(196, 181, 253, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    width: fit-content;
    animation: pulse 3s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.product-image {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.product-image:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.product-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.product-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0e6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 12px;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-description {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-details {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 500px;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item .feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
}

/* Hero Signup */
.hero-signup {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-signup h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.hero-signup > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
}

.email-form {
    max-width: 500px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    padding: 8px;
    transition: all 0.3s ease;
}

.form-group:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.form-group input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: white;
    outline: none;
    font-family: inherit;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(2px);
}

.form-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    display: none;
    font-size: 0.9rem;
    animation: fadeInUp 0.3s ease;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
}

/* Social Proof */
.social-proof {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.social-proof p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    display: none;
}

/* Decorative Elements */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .product-image img {
        max-width: 350px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 60px 30px;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .social-proof {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.6rem;
    }
    
    .product-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-item {
        width: fit-content;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
        padding: 12px;
    }
    
    .form-group input {
        padding: 14px 20px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .product-image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .hero-left {
        gap: 30px;
    }
    
    .product-image {
        padding: 15px;
    }
    
    .product-image img {
        max-width: 250px;
    }
    
    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 10px 20px;
    }
}