/* ══════════════════════════════════════════════════
   sell.css — Loverdose 2026
   Stile coerente con thank-you-acquisto.html
   ══════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;  /* blocca scroll orizzontale anche su Safari iOS */
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #080010;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 50% at 50% 0%,   rgba(0,245,160,0.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 85% 80%,  rgba(167,139,250,0.1) 0%, transparent 45%),
        radial-gradient(ellipse 50% 40% at 10% 65%,  rgba(255,51,69,0.07)  0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 900;
}

/* ── LAYOUT ── */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
    0%   { transform: scale(0) rotate(-10deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── HERO ── */
.hero {
    text-align: center;
    padding: 52px 24px 20px;
}
.hero-emoji {
    font-size: 72px;
    display: block;
    margin-bottom: 14px;
    animation: pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
/* nome inline nelle sezioni */
.h1-name {
    display: block;
    font-size: 1em;
    font-weight: 900;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0;
    background: linear-gradient(
        270deg,
        #ffffff,
        #a78bfa,
        #00f5a0,
        #00d9f5,
        #a78bfa,
        #ffffff
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}
.name-inline {
    color: #00f5a0;
}
.reality-name {
    font-size: 0.6em;
    letter-spacing: 0.5px;
    opacity: 0.85;
    text-transform: none;
    font-weight: 700;
}

.badge-inside {
    display: inline-block;
    background: linear-gradient(135deg, #00f5a0, #00d9f5);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
    animation: fadeUp 0.5s 0.2s ease-out both;
}
.hero h1 {
    font-size: clamp(32px, 9vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(
        270deg,
        #ffffff,
        #a78bfa,
        #00f5a0,
        #00d9f5,
        #a78bfa,
        #ffffff
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        fadeUp 0.6s 0.3s ease-out both,
        gradientShift 6s ease infinite 0.9s;
}
.hero-sub {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    animation: fadeUp 0.6s 0.4s ease-out both;
    /* testo con highlight sulle parole chiave */
    color: rgba(255,255,255,0.5);
}
.hero-sub-hl {
    font-style: normal;
    font-weight: 800;
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.hero-sub-hl--green {
    color: #00f5a0;
    -webkit-text-fill-color: #00f5a0;
}
.hero-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.5px;
    animation: fadeUp 0.6s 0.45s ease-out both;
}

/* ── HOME IMAGE ── */
@keyframes imgReveal {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}

.home-img-wrap {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 18px 0 0;
    overflow: hidden;
}

.home-img-inner {
    position: relative;
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    /* sfuma solo il bordo inferiore, in cima quasi nulla */
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 50%,
        rgba(0,0,0,0.5) 80%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        black 0%,
        black 50%,
        rgba(0,0,0,0.5) 80%,
        transparent 100%
    );
}

.home-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0;
    transition: opacity 0.1s;
}

.home-img.revealed {
    animation: imgReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


.home-img-caption {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    z-index: 2;
}

/* ── SECTION LABEL ── */
.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 18px;
    text-align: center;
}

/* ── PRICE BLOCK ── */
.price-section {
    padding: 20px 20px 60px;
    text-align: center;
    animation: fadeUp 0.6s 0.5s ease-out both;
}
.price-section .section-label {
    text-align: center;
    margin-bottom: 20px;
}
.price-tagline {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 900;
    line-height: 1.2;
    color: rgba(255,255,255,0.88);
    text-align: center !important;
    width: 100%;
    display: block;
    margin: 0 auto 22px;
}
.price-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 24px 36px;
    background: rgba(0,245,160,0.07);
    border: 1px solid rgba(0,245,160,0.22);
    border-radius: 24px;
    margin-bottom: 16px;
}
.price-old {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    letter-spacing: 0.2px;
}
.price-big {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #00f5a0, #00d9f5, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.38);
}
.price-breakdown {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 6px 0;
    margin-bottom: 20px;
    text-align: left;
    overflow: hidden;
}
.pb-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0;
}
.pb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}
.pb-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}
.pb-val {
    font-size: 16px;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
}
.pb-strike {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    font-weight: 400;
    margin-left: 6px;
    text-decoration: line-through;
}
.pb-today {
    padding: 18px 20px;
    background: rgba(0,245,160,0.07);
}
.pb-today-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00f5a0;
}
.pb-today-amt {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5a0, #00d9f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.pb-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    padding: 0 20px 14px;
    line-height: 1.5;
}
.pb-sub strong { color: rgba(255,177,66,0.8); }
.pb-rest-amt { color: rgba(255,255,255,0.45); font-size: 18px; }

/* urgency duo */
.urgency-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.ud-item {
    border-radius: 18px;
    padding: 20px 18px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.ud-spots {
    background: rgba(255,51,69,0.08);
    border: 1px solid rgba(255,51,69,0.22);
}
.ud-time {
    background: rgba(255,177,66,0.08);
    border: 1px solid rgba(255,177,66,0.22);
}
.ud-top {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 6px;
}
.ud-num {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}
.ud-spots .ud-num { color: #FF3345; }
.ud-time .ud-num  { color: #ffb142; }
.ud-unit { font-size: 18px; font-weight: 700; }
/* progress bar posti */
.ud-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
}
.ud-fill {
    height: 100%;
    width: 22%;
    background: linear-gradient(90deg, #FF3345, #ff6b6b);
    border-radius: 99px;
}
.ud-sub {
    font-size: 11px;
    color: rgba(255,177,66,0.6);
    margin-top: 2px;
}

.sold-tag {
    padding: 10px 18px;
    background: rgba(255,51,69,0.08);
    border: 1px solid rgba(255,51,69,0.18);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255,130,130,0.85);
    text-align: center;
    margin-bottom: 14px;
}
.sold-tag strong { color: #fff; }

/* ── HONEST BOX ── */
.honest-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-left: 3px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
}
.honest-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}
.honest-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}
.honest-body p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
}
.honest-body strong {
    color: rgba(255,255,255,0.8);
}


.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.avatars { display: flex; align-items: center; }
.avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #080010;
    margin-left: -8px;
    overflow: hidden;
    flex-shrink: 0;
}
.avatar:first-child { margin-left: 0; }
.avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.avatar-more {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #080010;
    margin-left: -8px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800;
    color: rgba(255,255,255,0.7);
    flex-shrink: 0;
}
.sp-text { font-size: 13px; color: rgba(255,255,255,0.45); }
.sp-text strong { color: rgba(255,255,255,0.75); }

/* ── SECTION WRAPPER ── */
.section {
    padding: 44px 20px;
}
.section + .section {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── STEPS (same as thank-you) ── */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step:last-child { border-bottom: none; }
.step-icon {
    width: 44px; height: 44px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.step-icon.green  { background: rgba(0,245,160,0.12); }
.step-icon.cyan   { background: rgba(0,217,245,0.12); }
.step-icon.purple { background: rgba(167,139,250,0.12); }
.step-icon.orange { background: rgba(255,177,66,0.12); }
.step-icon.pink   { background: rgba(255,51,69,0.12); }
.step-icon.white  { background: rgba(255,255,255,0.08); }

.step-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.step-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}
.step-text p strong { color: rgba(255,255,255,0.75); }

/* ── PERK dot list ── */
.perk-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}
.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}
.perk-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #00f5a0;
    flex-shrink: 0;
}

/* ── GRADIENT CARD (same as comehome-card) ── */
.grad-card {
    background: linear-gradient(135deg, rgba(255,51,69,0.1) 0%, rgba(167,139,250,0.07) 50%, rgba(0,245,160,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}
.grad-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(255,51,69,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.grad-card.cyan-glow::before {
    background: radial-gradient(circle, rgba(0,245,160,0.14) 0%, transparent 70%);
}
.grad-card.purple-glow::before {
    background: radial-gradient(circle, rgba(167,139,250,0.18) 0%, transparent 70%);
}
.grad-card.gnu-glow::before {
    background: radial-gradient(circle, rgba(255,180,0,0.15) 0%, transparent 70%);
}

/* card tag */
.card-tag {
    display: inline-block;
    background: rgba(0,245,160,0.15);
    color: #00f5a0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 14px;
}
.card-tag.pink { background: rgba(255,51,69,0.18); color: #ff8080; }
.card-tag.purple { background: rgba(167,139,250,0.18); color: #c4b5fd; }
.card-tag.orange { background: rgba(255,177,66,0.18); color: #ffb142; }
.card-tag.white { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }

.grad-card h3 {
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}
.grad-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
}
.grad-card p strong { color: rgba(255,255,255,0.8); }

/* ── STAT ROW inside card ── */
.stat-row {
    display: flex;
    gap: 28px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-num {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ── AMOUNT PILL (pagamento style) ── */
.amount-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0,245,160,0.1);
    border: 1px solid rgba(0,245,160,0.28);
    border-radius: 99px;
    font-size: 16px;
    font-weight: 800;
    color: #00f5a0;
    margin-bottom: 8px;
}

/* ── PAYMENT ROWS ── */
.pay-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}
.pay-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}
.pay-row.active {
    background: rgba(0,245,160,0.07);
    border-color: rgba(0,245,160,0.22);
}
.pay-left { display: flex; align-items: center; gap: 14px; }
.pay-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.4);
}
.pay-row.active .pay-num { background: #00f5a0; color: #000; }
.pay-when { font-size: 14px; font-weight: 700; color: #fff; }
.pay-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.pay-amt { font-size: 20px; font-weight: 900; color: rgba(255,255,255,0.35); }
.pay-row.active .pay-amt { color: #00f5a0; }

/* klarna note */
.klarna-note {
    padding: 14px 18px;
    background: rgba(255,177,66,0.06);
    border: 1px solid rgba(255,177,66,0.15);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-align: center;
}
.klarna-note strong { color: #ffb142; }

/* ── VALUE HEADLINE ── */
.value-title {
    font-size: clamp(26px, 7vw, 38px);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    margin-top: 28px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 45%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.value-oath {
    font-size: clamp(16px, 4.5vw, 22px);
    font-weight: 900;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    text-align: center;
    color: rgba(255,255,255,0.75);
    margin-top: -8px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.value-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── RECAP CHECKLIST ── */
.recap-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.recap-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
}
.recap-check { color: #00f5a0; font-weight: 900; font-size: 16px; flex-shrink: 0; }
.recap-text { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.4; }
.recap-text span { color: rgba(255,255,255,0.35); font-size: 13px; }

.not-included {
    margin-top: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
}
.not-included summary {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}
.not-included summary::-webkit-details-marker { display: none; }
.not-included summary::after { content: '+'; font-size: 18px; }
.not-included[open] summary::after { content: '−'; }
.not-content { padding: 0 20px 16px; }
.not-row {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.not-row:first-child { border-top: none; }

/* ── REALITY CHECK ── */
.reality-section {
    padding: 52px 16px;
    position: relative;
    overflow: hidden;
}
.reality-section::before {
    content: '';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 360px; height: 260px;
    background: radial-gradient(ellipse, rgba(255,51,69,0.1) 0%, rgba(167,139,250,0.07) 40%, transparent 70%);
    pointer-events: none;
}
.reality-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}
.reality-personal {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    white-space: pre-line;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 55%, #00f5a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reality-title {
    font-size: clamp(26px, 7vw, 36px);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
}

.reality-vs {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    margin-bottom: 28px;
}
.rv-card {
    border-radius: 20px;
    padding: 22px 20px;
}
.rv-no {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.rv-yes {
    background: linear-gradient(135deg, rgba(0,245,160,0.09), rgba(0,217,245,0.05));
    border: 1px solid rgba(0,245,160,0.22);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,245,160,0.08);
}
.rv-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.rv-no .rv-tag { color: rgba(255,255,255,0.25); }
.rv-yes .rv-tag { color: #00f5a0; }

.rv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.rv-list li {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 0;
}
.rv-no .rv-list li  { color: rgba(255,255,255,0.35); }
.rv-yes .rv-list li { color: rgba(255,255,255,0.82); font-weight: 600; }

.rv-vs-badge {
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.2);
    padding: 10px 0;
    position: relative;
}
.rv-vs-badge::before,
.rv-vs-badge::after {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.05);
}
.rv-vs-badge::before { width: 40%; }
.rv-vs-badge::after  { left: 60%; }

.reality-bottom { text-align: center; }
.reality-pill {
    display: inline-block;
    background: linear-gradient(135deg, #00f5a0, #00d9f5, #a78bfa);
    color: #000;
    font-size: 16px;
    font-weight: 900;
    padding: 14px 28px;
    border-radius: 99px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.reality-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,245,160,0.3);
}
.reality-footnote {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
    font-style: italic;
}

/* ── FAQ ── */
/* ── FAQ ACCORDION ── */
.faq-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item.open {
    border-color: rgba(255,255,255,0.15);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}
.faq-q .faq-chevron {
    flex-shrink: 0;
    font-size: 20px;
    color: rgba(255,255,255,0.35);
    transition: transform 0.3s ease, color 0.2s;
    line-height: 1;
}
.faq-item.open .faq-q .faq-chevron {
    transform: rotate(45deg);
    color: #00f5a0;
}
.faq-a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 22px 20px;
}
.faq-a strong { color: rgba(255,255,255,0.8); }
.faq-a .faq-transport {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}
.faq-transport-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.faq-transport-item .ft-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.faq-transport-item p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
}

/* ── CTA FINAL ── */
.cta-section {
    padding: 48px 20px 52px;
    text-align: center;
}
.cta-label {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}
.cta-big-price {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #00f5a0, #00d9f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.cta-price-note {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
    margin-bottom: 28px;
}
.cta-waiting {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(32px, 9vw, 52px);
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(
        270deg,
        #ffffff,
        #a78bfa,
        #00f5a0,
        #00d9f5,
        #a78bfa,
        #ffffff
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    letter-spacing: -1px;
}
.cta-btn {
    display: block;
    background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 50%, #a78bfa 100%);
    color: #000;
    font-size: 18px;
    font-weight: 900;
    padding: 22px 32px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 12px 44px rgba(0,245,160,0.28);
    letter-spacing: 0.5px;
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 56px rgba(0,245,160,0.38);
}
.cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
}

/* ── COMEHOME CARD (esatta copia di thank-you) ── */
.comehome-card {
    background: linear-gradient(135deg, rgba(255,51,69,0.12) 0%, rgba(167,139,250,0.08) 50%, rgba(0,245,160,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}
.comehome-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255,51,69,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.comehome-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.comehome-header img { height: 34px; width: auto; }
.comehome-tag {
    display: inline-block;
    background: rgba(255,51,69,0.18);
    color: #ff8080;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 99px;
}
.comehome-headline {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}
.comehome-body {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: 20px;
}
.comehome-body strong { color: rgba(255,255,255,0.8); }

/* store badges (esatte da thank-you) */
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}
.store-badge:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}
.store-badge svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── DATE BOX ── */
.date-box-wrap {
    padding: 0 16px 0;
}
.date-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0028 0%, #0a001e 100%);
    border: 1px solid rgba(167,139,250,0.3);
    box-shadow:
        0 0 0 1px rgba(0,245,160,0.08),
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.07);
    padding: 36px 28px;
    text-align: center;
}
.date-box-glow {
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 320px; height: 200px;
    background: radial-gradient(ellipse, rgba(167,139,250,0.25) 0%, rgba(0,245,160,0.1) 40%, transparent 70%);
    pointer-events: none;
}
.date-box-inner { position: relative; z-index: 1; }
.date-box-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
}
.date-box-dates {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(28px, 8vw, 40px);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 55%, #00f5a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}
.date-dash {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.4;
}
.date-box-place {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.3px;
}

/* ── REASSURANCE PILLS ── */
.reassure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.r-item {
    background: rgba(0,245,160,0.05);
    border: 1px solid rgba(0,245,160,0.15);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
}
.r-item.full { grid-column: 1 / -1; }
.r-icon { font-size: 24px; margin-bottom: 8px; }
.r-item h4 { font-size: 12px; font-weight: 800; color: #00f5a0; margin-bottom: 4px; }
.r-item p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ── SOLO CALLOUT ── */
.solo-callout {
    padding: 56px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.solo-callout::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 200px;
    background: radial-gradient(ellipse, rgba(255,51,69,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.solo-big {
    font-size: clamp(24px, 6.5vw, 34px);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
}
.solo-name-txt {
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.solo-big em {
    font-style: normal;
    background: linear-gradient(135deg, #FF3345, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solo-sub { font-size: 13px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 2px; }
.solo-rule {
    font-size: clamp(17px, 4.5vw, 22px);
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin-top: 16px;
    font-style: italic;
}

/* ── FOOTER ── */
.footer {
    padding: 20px;
    text-align: center;
}
.footer p { font-size: 12px; color: rgba(255,255,255,0.22); line-height: 1.8; }
.footer a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* ── STICKY CTA ── */
.sticky {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(8,0,16,0.93);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 16px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 14px;
}
.sticky-price { text-align: left; }
.sticky-num {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #00f5a0, #00d9f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sticky-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.sticky-btn {
    flex: 1;
    display: block;
    background: linear-gradient(135deg, #00f5a0 0%, #00d9f5 50%, #a78bfa 100%);
    color: #000;
    font-size: 15px;
    font-weight: 900;
    padding: 14px 20px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
}
.sticky-btn:hover { opacity: 0.9; }

/* ── IG STORIES ── */
.ig-container {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.ig-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.ig-item:nth-child(1) .ig-ring { animation: glitch 5s ease-in-out infinite 0s; }
.ig-item:nth-child(2) .ig-ring { animation: glitch 5s ease-in-out infinite 1.7s; }
.ig-item:nth-child(3) .ig-ring { animation: glitch 5s ease-in-out infinite 3.2s; }
.ig-item:nth-child(1) .ig-img { animation: glitchColor 5s ease-in-out infinite 0s; }
.ig-item:nth-child(2) .ig-img { animation: glitchColor 5s ease-in-out infinite 1.7s; }
.ig-item:nth-child(3) .ig-img { animation: glitchColor 5s ease-in-out infinite 3.2s; }
@keyframes igSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes glitch {
    0%        { transform: translate(0,0) skewX(0deg); }
    2%        { transform: translate(-3px, 1px) skewX(2deg); }
    4%        { transform: translate(3px,-1px) skewX(-1deg); }
    6%        { transform: translate(-2px, 2px) skewX(1.5deg); }
    8%        { transform: translate(2px,-2px) skewX(-2deg); }
    10%       { transform: translate(0,0) skewX(0deg); }
    /* lunga pausa prima del prossimo glitch */
    92%       { transform: translate(0,0) skewX(0deg); }
    93%       { transform: translate(4px,-1px) skewX(-3deg); }
    94%       { transform: translate(-4px, 1px) skewX(2deg); }
    95%       { transform: translate(2px, 2px) skewX(-1deg); }
    96%       { transform: translate(-2px,-2px) skewX(1deg); }
    97%       { transform: translate(0,0) skewX(0deg); }
    100%      { transform: translate(0,0) skewX(0deg); }
}
@keyframes glitchColor {
    0%   { filter: none; }
    2%   { filter: hue-rotate(90deg) saturate(2) brightness(1.3); }
    4%   { filter: hue-rotate(-30deg) saturate(3) brightness(0.9); }
    6%   { filter: none; }
    93%  { filter: none; }
    94%  { filter: hue-rotate(120deg) saturate(2.5) brightness(1.4); }
    95%  { filter: hue-rotate(-60deg) saturate(2) brightness(0.8); }
    96%  { filter: none; }
    100% { filter: none; }
}

.ig-ring {
    width: 100px; height: 100px;
    border-radius: 50%; padding: 3px;
    background: conic-gradient(
        from 0deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888,
        #cc2366,
        #dc2743,
        #e6683c,
        #f09433
    );
}
.ig-ring-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 3px solid #080010;
    overflow: hidden; background: #222;
}
.ig-img { width: 100%; height: 100%; object-fit: cover; }
.ig-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); }

@media (max-width: 600px) {
    .ig-container {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    .ig-container::-webkit-scrollbar { display: none; }
    .ig-item { flex: 0 0 30%; min-width: 82px; }
    .ig-ring { width: 82px; height: 82px; }
}

/* ── STORY VIEWER ── */
.story-viewer {
    position: fixed;
    inset: 0; width: 100vw; height: 100vh; height: 100dvh;
    background: #000; z-index: 99999;
    display: none; opacity: 0; transition: opacity 0.3s; overflow: hidden;
}
.story-viewer.active { display: block; opacity: 1; }
body.story-open { overflow: hidden; position: fixed; width: 100%; height: 100%; }
.sv-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; z-index: 100;
}
.sv-progress { position: absolute; top: 1rem; left: 1rem; right: 1rem; display: flex; gap: .3rem; z-index: 10; }
.sv-header {
    position: absolute; top: 2rem; left: 1rem; right: 1rem;
    display: flex; align-items: center; gap: .7rem; z-index: 10; padding: .5rem;
}
.sv-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; }
.sv-info { display: flex; flex-direction: column; gap: .1rem; }
.sv-user { font-weight: 700; font-size: .9rem; color: #fff; display: flex; align-items: center; gap: .3rem; }
.sv-verified { width: 14px; height: 14px; }
.sv-time { font-size: .75rem; color: rgba(255,255,255,.7); }
.sv-bar { flex: 1; height: 3px; background: rgba(255,255,255,.3); border-radius: 2px; overflow: hidden; }
.sv-fill { height: 100%; background: #fff; width: 0%; transition: width .1s linear; }
@keyframes fillAnim { to { width: 100%; } }
.sv-video-wrap { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.sv-video { width: 100%; height: 100%; object-fit: cover; }
.sv-tap { position: absolute; top: 0; bottom: 0; width: 50%; z-index: 5; cursor: pointer; display: none; }
.sv-tap-l { left: 0; } .sv-tap-r { right: 0; }
.sv-tap.active { display: block; }
.sv-label {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    font-weight: 700; font-size: 1.1rem; color: #fff; text-align: center; z-index: 10;
    padding: .6rem 1.2rem; background: rgba(0,0,0,.45); border-radius: 25px;
}
