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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
                Roboto, Helvetica, Arial, sans-serif;
    color: #171717;
    background: #f5f5f3;
}

.container {
    width: 100%;
    max-width: 720px;
    text-align: center;
}

.icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 32px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #171717;
    color: white;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid #deded9;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    color: #666;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 8vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 750;
}

p {
    max-width: 520px;
    margin: 0 auto;
    color: #6b6b67;
    font-size: clamp(16px, 2.5vw, 19px);
    line-height: 1.6;
}

.line {
    width: 48px;
    height: 3px;
    margin: 34px auto;
    border-radius: 10px;
    background: #171717;
}

.footer {
    color: #999;
    font-size: 13px;
}

@media (max-width: 480px) {
    body {
    padding: 20px;
    }

    .icon {
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
    border-radius: 17px;
    font-size: 26px;
    }

    .badge {
    font-size: 11px;
    }

    h1 {
    letter-spacing: -0.045em;
    }
}
