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

body{
    background:
    radial-gradient(circle at top,
    rgba(50,215,75,.15),
    transparent 40%),
    #090b0f;

    color:white;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.card{
    width:100%;
    max-width:500px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:28px;

    padding:40px;
}

.logo-circle{
    width:54px;
    height:54px;
    border-radius:50%;
    border:6px dotted #32d74b;
    margin:0 auto 24px;
}

h1{
    text-align:center;
    font-size:52px;
    margin-bottom:32px;
}

.green{
    color:#32d74b;
}

.pricing{
    text-align:center;
    margin-bottom:36px;
}

.trial{
    font-size:36px;
    font-weight:700;
    color:#32d74b;
    margin-bottom:10px;
}

.price{
    font-size:22px;
    opacity:.85;
}

.question{
    text-align:center;
    color:#aaa;
    margin-bottom:24px;
}

.option{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px;

    text-decoration:none;
    color:white;

    border-radius:18px;

    background:#141821;

    border:1px solid #232834;

    margin-bottom:14px;

    transition:.2s;
}

.option:hover{
    transform:translateY(-2px);
    border-color:#32d74b;
}

.title{
    font-size:20px;
    font-weight:600;
}

.desc{
    color:#888;
    margin-top:4px;
    font-size:14px;
}