* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505;
    font-family: "Comfortaa", sans-serif;
    color: white;
    overflow: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 850px;
    padding: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;

    position: relative;
    z-index: 2;
}

.logo {
    width: 74px;
    height: 74px;
    border-radius: 22px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 28px;
    font-weight: 700;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 30px rgba(255,255,255,0.03);
}

.hero {
    text-align: center;
    max-width: 650px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-size: 15px;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    height: 48px;
    border-radius: 999px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f2f2f2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.primary {
    background: rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 30px rgba(255,255,255,0.03);
}

.secondary {
    background: rgba(255,255,255,0.03);
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.card {
    padding: 24px;
    border-radius: 22px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);

    text-align: center;

    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.05);
}

.card h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.card span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

@media (max-width: 700px) {

    .hero h1 {
        font-size: 36px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 30px 22px;
    }

}