* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 35%),
        linear-gradient(135deg, #0b0b0b, #181818 50%, #0d0d0d);
    color: #ffffff;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.card {
    width: 100%;
    max-width: 680px;
    padding: 55px 50px;
    text-align: center;

    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: #ffffff;
    color: #111111;

    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35);
}

.badge {
    display: inline-block;

    padding: 8px 14px;
    margin-bottom: 22px;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;

    color: #bdbdbd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

h1 {
    font-size: clamp(34px, 6vw, 52px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

h1 span {
    display: block;
    font-weight: 400;
    color: #bdbdbd;
}

.divider {
    width: 60px;
    height: 3px;
    margin: 27px auto 28px;

    border-radius: 10px;
    background: #ffffff;
}

h2 {
    margin-bottom: 18px;

    font-size: 25px;
    font-weight: 700;
}

p {
    max-width: 550px;
    margin: 0 auto 15px;

    color: #c5c5c5;
    font-size: 16px;
    line-height: 1.75;
}

p strong {
    color: #ffffff;
}

.intro {
    color: #eeeeee;
    font-size: 17px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 20px;
    padding: 15px 25px;

    border-radius: 50px;

    background: #ffffff;
    color: #111111;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.button span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.button:hover span {
    transform: translateX(4px);
}

.technical {
    margin-top: 35px;
    margin-bottom: 0;

    color: #666666;
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 600px) {

    .page {
        padding: 20px 14px;
    }

    .card {
        padding: 40px 23px;
        border-radius: 23px;
    }

    .icon {
        width: 76px;
        height: 76px;
        border-radius: 19px;
        font-size: 15px;
    }

    .badge {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 22px;
    }

    p,
    .intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .button {
        width: 100%;
        padding: 15px 20px;
    }
}