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

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

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 400;
    color: #308174;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05);
}

.coming-soon-badge {
    background: linear-gradient(45deg, #308174, #40a085);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(48, 129, 116, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.coming-soon-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 129, 116, 0.4);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 4rem;
}

.hero-section {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #308174;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #308174, #40a085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Browser Section */
.browser-section {
    width: 100%;
    max-width: 1000px;
    animation: fadeUp 1s ease-out 0.3s both;
}

.browser-mockup {
    position: relative;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: browserAppear 1.2s ease-out 0.6s forwards;
}

.browser-mockup:hover {
    transform: translateY(-10px);
}

.browser-image {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.coming-soon-text {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 400;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #f8f8f8;
    transition: all 0.2s ease;
    display: inline-block;
}

.email-link:hover {
    background-color: #f0f0f0;
    border-color: #d0d0d0;
    color: #333;
}

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

@keyframes browserAppear {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .coming-soon-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .main-content {
        padding: 1.5rem;
        gap: 3rem;
    }

    .main-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .tagline {
        font-size: 1.1rem;
    }

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

    .email-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .main-content {
        padding: 1rem;
        gap: 2.5rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .browser-mockup {
        border-radius: 8px;
    }

    .coming-soon-text {
        font-size: 1.3rem;
    }
}

/* Micro-interactions */
@media (hover: hover) {
    .logo h1,
    .coming-soon-badge,
    .browser-mockup,
    .email-link {
        cursor: pointer;
    }
}

/* Loading animation for the page */
body {
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}