:root {
    color-scheme: light;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
    color: #111;
    background: #fff;
}

* {
    box-sizing: border-box;
}

body {
    display: grid;
    place-items: center;
    min-height: 100vh;
    margin: 0;
}

.page {
    width: min(100% - 48px, 960px);
    padding: 72px 0;
    text-align: center;
}

.app-icon {
    display: block;
    width: clamp(128px, 18vw, 176px);
    height: auto;
    margin: 0 auto 32px;
    border-radius: 22%;
    box-shadow: 0 16px 40px rgb(0 112 232 / 22%);
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 1;
}

.tagline {
    margin: 28px 0 0;
    color: #666;
    font-size: clamp(1.1rem, 2.25vw, 1.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.5;
}

.coming-soon {
    display: inline-block;
    margin: 32px 0 0;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 999px;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .tagline br {
        display: none;
    }
}
