:root {
    --bg: #0a0104;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.1);
    --accent: #ec4899;
    --accent-bright: #f472b6;
    --text: #fff1f2;
    --muted: rgba(255, 241, 242, 0.5);
    --cta-bg: #fff;
    --cta-text: #500724;
    --radius-card: 24px;
    --radius-btn: 16px;
    --radius-img: 18px;
}

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

html {
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 16px 36px;
    overflow-x: hidden;
}

/* ── BACKGROUND GLOW ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(236, 72, 153, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(244, 114, 182, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    animation: rise 0.7s cubic-bezier(.22, .68, 0, 1.2) both;
}

/* ── BADGE ── */
.badge {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 6px;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    justify-content: center;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
}

.badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 6px var(--accent-bright);
    animation: blink 1.8s ease-in-out infinite;
}

/* ── CARD ── */
.card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* ── IMAGE WRAPPER ── */
.img-wrap {
    position: relative;
    border-radius: var(--radius-img);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0a0104 0%, #20020d 100%);
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.4s ease;
}

.img-wrap:hover img {
    transform: scale(1.03);
}

/* lock overlay */
.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 1, 4, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.lock-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.lock-badge svg {
    width: 13px;
    height: 13px;
    fill: var(--accent);
}

/* ── BODY TEXT ── */
.content {
    padding: 18px 4px 4px;
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(20px, 6vw, 26px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    text-align: center;
}

h1 span {
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 20px;
    text-align: center;
}

/* ── BENEFITS LIST ── */
.benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 241, 242, 0.8);
}

.benefits li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid rgba(236, 72, 153, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7l3 3 5-5' stroke='%23ec4899' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* ── CTA BUTTON ── */
.btn-wrap {
    position: relative;
}

.btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 20px;
    border-radius: var(--radius-btn);
    background: var(--cta-bg);
    color: var(--cta-text);
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 4px 24px rgba(236, 72, 153, 0.35), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: var(--cta-text);
    flex-shrink: 0;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.5);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

/* ── SOCIAL PROOF ── */
.proof-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding: 0 2px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    background: linear-gradient(135deg, #be185d, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.avatars span:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.4;
}

.proof-text strong {
    color: var(--text);
    font-weight: 600;
}

/* ── URGENCY BAR ── */
.urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 10px;
    padding: 9px 14px;
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--accent-bright);
}

.urgency svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-bright);
}

/* ── FOOTER ── */
.footer {
    font-size: 11.5px;
    color: var(--muted);
    text-align: center;
    margin-top: 20px;
    opacity: 0.55;
    line-height: 1.5;
}

/* ── ANIMATIONS ── */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(236, 72, 153, 0.35);
    }

    50% {
        box-shadow: 0 8px 36px rgba(244, 114, 182, 0.55);
    }
}

.btn {
    animation: pulse-glow 2.8s ease-in-out infinite;
}

/* ── TABLET / DESKTOP ── */
@media (min-width: 480px) {
    body {
        padding: 40px 24px 48px;
        align-items: center;
        min-height: 100dvh;
    }

    .card {
        padding: 18px;
    }

    h1 {
        font-size: 28px;
    }
}
