* { box-sizing: border-box; }

body {
    margin: 0;
    background: #F0F2F5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    color: #050505;
}

.page {
    max-width: 420px;
    margin: 0 auto;
    padding-bottom: 24px;
}

/* CARD */
.card {
    background: #FFFFFF;
    border-radius: 8px;
    margin: 12px;
    padding: 12px;
    
    position: relative; /* REQUIRED */
}

/* COVER + PROFILE */
.cover {
    height: 140px;
    border-radius: 8px 8px 0 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.profile-pic {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    bottom: -100px;
    left: 16px;
}

.profile-info {
    padding: 56px 16px 12px 16px;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
}

.profile-meta {
    font-size: 13px;
    color: #65676B;
}

/* PRODUCT */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    margin-bottom: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-title {
    font-size: 17px;
    font-weight: 700;
}

.product-desc {
    font-size: 14px;
    color: #65676B;
    margin-top: 4px;
    margin-bottom: 75px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    margin-top: 6px;
}

/* BENEFITS */
.benefits div {
    font-size: 14px;
    margin-bottom: 4px;
}

/* PROOF */
.proof-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;   
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* CTA */
.cta {
    margin: 16px 12px;
}

.cta a {
    display: block;
    background: #1877F2;
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn {
    width: 100%;
    background: #1877F2;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.cta-btn.secondary {
    background: #E4E6EB;
    color: #050505;
}


.section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #050505;
}

.price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;

    background: #1877F2;
    color: #FFFFFF;

    width: 72px;
    height: 72px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;
    text-align: center;

    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #1877F2, #155ec2);
}
