* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0b0d1a;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1000px;           /* ? шире, чтобы на десктопе текст был в одну строку */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

.logo {
    display: block;
    max-height: 70px;
    width: auto;
    margin-bottom: 32px;
    filter: brightness(0.95);
}

h1 {
    font-weight: 700;
    font-size: clamp(24px, 3.8vw, 46px);  /* ? минимальный размер уменьшен с 28 до 24 */
    line-height: 1.2;                     /* ? плотнее */
    color: #e0e6f5;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    max-width: 100%;
    word-break: keep-all;                 /* не разбиваем слова */
}

h1 span {
    color: #8ba0d9;
}

p {
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 22px);
    color: rgba(200, 215, 240, 0.7);
    line-height: 1.6;
    max-width: 620px;                    /* чуть шире, чтобы меньше переносился */
    margin: 0 auto 36px;
}

.btn {
    display: inline-block;
    padding: 14px 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0b0d1a;
    background: #a0b8e0;
    border: none;
    border-radius: 60px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(60, 100, 200, 0.2);
}

.btn:hover {
    background: #b0c8ec;
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(60, 100, 200, 0.3);
}
.btn:active {
    transform: scale(0.97);
}

.footer {
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 13px;
    color: rgba(160, 180, 220, 0.3);
    letter-spacing: 0.04em;
    padding: 20px 0;
    margin-top: auto;
}

@media (max-width: 640px) {
    .logo {
        max-height: 50px;
        margin-bottom: 24px;
    }
    .btn {
        padding: 12px 32px;
        font-size: 16px;
    }
    h1 {
        font-size: clamp(20px, 5vw, 28px); /* на совсем маленьких экранах ещё меньше */
    }
}