* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #fff5f6 0%, #e6faf8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.icon {
    margin-bottom: 2rem;
}

.icon svg {
    width: 4rem;
    height: 4rem;
    color: #0d9488;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.supercharged {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.supercharged svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #f59e0b;
}

.description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .features {
        flex-direction: row;
        justify-content: center;
    }
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #0d9488;
}

.coming-soon {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #ccfbf1;
    color: #0f766e;
    border-radius: 9999px;
    font-weight: 600;
}