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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-secondary: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background: var(--secondary-color);
    height: 100vh;
    overflow: hidden;
}

/* Coming Soon Page */
.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-content {
    text-align: center;
    animation: fadeIn 1s ease-in;
}

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

.coming-soon h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-info {
    margin-top: 3rem;
}

.email-link {
    font-size: 1.125rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.875rem 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s ease;
}

.email-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .coming-soon h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

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