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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.company-name {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #1f2937;
    margin-bottom: 1rem;
}

.coming-soon {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6b7280;
    letter-spacing: 0.02em;
}

.footer {
    padding: 24px 20px;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    border-top: 1px solid #f3f4f6;
}

@media (max-width: 640px) {
    .company-name {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 1.125rem;
    }
}
