@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(50deg, #4e73df, #132249);
    color: #1a202c;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.page {
    width: 100%;
    max-width: 720px;
    padding: 32px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    padding: 12px 0 28px;
}

.logo {
    height: 48px;
}

.card {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(19, 34, 73, 0.35);
    padding: 40px 32px;
}

.eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 600;
    color: #a0aec0;
}

.title {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: #132249;
}

.lead {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.requisites {
    margin: 0 0 32px;
    padding: 4px 0;
    border-top: 1px solid #edf2f7;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
}

.row dt {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #a0aec0;
}

.row dd {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    overflow-wrap: break-word;
}

.row dd a {
    color: #4e73df;
    text-decoration: none;
    font-weight: 600;
}

.row dd a:hover {
    text-decoration: underline;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #4e73df;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 999px;
    padding: 16px 28px;
    box-shadow: 0 12px 24px rgba(78, 115, 223, 0.35);
    transition: background 0.15s ease, transform 0.15s ease;
}

.cta:hover {
    background: #3d5fc4;
    transform: translateY(-1px);
}

.footer {
    margin-top: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

@media (min-width: 640px) {
    .row {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
        gap: 24px;
    }

    .row dt {
        flex: 0 0 200px;
    }

    .row dd {
        flex: 1;
        min-width: 0;
        text-align: right;
    }

    .cta {
        width: auto;
        padding: 16px 40px;
    }
}
