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

:root {
    --teal: #2EBCB3;
    --teal-light: #5DD3CB;
    --teal-lighter: #E8F8F7;
    --navy: #1B2E4A;
    --navy-light: #2D4A6F;
    --white: #FFFFFF;
    --gray-light: #F8FAFB;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        var(--white) 0%,
        var(--teal-lighter) 25%,
        var(--white) 50%,
        rgba(46, 188, 179, 0.1) 75%,
        var(--white) 100%
    );
    z-index: -2;
}

.background-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(46, 188, 179, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.background-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(46, 188, 179, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

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

.logo {
    display: block;
    width: 180px;
    height: auto;
    margin: 0 auto 2rem auto;
    filter: drop-shadow(0 4px 20px rgba(46, 188, 179, 0.2));
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(46, 188, 179, 0.3);
}

.headline {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.highlight {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--navy-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.contact p {
    font-size: 1rem;
    color: var(--navy-light);
    margin-bottom: 0.5rem;
}

.email {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 2px solid var(--teal);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.email:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 188, 179, 0.4);
}

footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--navy-light);
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        width: 140px;
        margin: 0 auto 1.5rem auto;
    }

    .coming-soon-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .headline {
        margin-bottom: 1rem;
    }

    .tagline {
        margin-bottom: 2rem;
    }

    .divider {
        margin-bottom: 2rem;
    }

    .email {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}
