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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="40%"><stop offset="0%" style="stop-color:white;stop-opacity:.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
    background-size: 100px 20px;
    animation: water-ripple 8s ease-in-out infinite;
}

@keyframes water-ripple {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-5px) translateY(-2px); }
    50% { transform: translateX(5px) translateY(-1px); }
    75% { transform: translateX(-3px) translateY(-3px); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 40px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(135deg, #d4a574 0%, #c49060 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #c49060 0%, #b8835a 100%);
}

.hero-image {
    flex: 1;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%234299e1;stop-opacity:1"/><stop offset="70%" style="stop-color:%236bb6ff;stop-opacity:1"/><stop offset="100%" style="stop-color:%2390cdf4;stop-opacity:1"/></linearGradient><linearGradient id="water" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%232b6cb0;stop-opacity:1"/><stop offset="100%" style="stop-color:%231a365d;stop-opacity:1"/></linearGradient></defs><rect width="400" height="300" fill="url(%23sky)"/><rect y="300" width="400" height="300" fill="url(%23water)"/><rect y="290" width="400" height="20" fill="%23ffffff" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
}

.waitlist h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.waitlist > div > p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group input:focus {
    outline: none;
    border-color: #d4a574;
    background: rgba(255, 255, 255, 0.15);
}

.form-group button {
    background: linear-gradient(135deg, #d4a574 0%, #c49060 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.form-group button:hover {
    background: linear-gradient(135deg, #c49060 0%, #b8835a 100%);
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-top: 1rem;
}

.success-message {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid #48bb78;
    color: #68d391;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #1a202c;
    color: #a0aec0;
    text-align: center;
}

.footer a {
    color: #d4a574;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content {
        padding: 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        height: 300px;
        width: 100%;
    }

    .form-group {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .waitlist h2 {
        font-size: 2.5rem;
    }
}