/* ==========================================================================
   SW_felipo — VSL landing page
   Consumer-watchdog / special-report look.
   Palette: paper ground, ink text, authority navy, alert red, savings green,
   highlighter yellow. Green is the single action color (buy button only).
   ========================================================================== */

:root {
    --paper: #F5F2EC;
    --ink: #1B1A17;
    --ink-soft: #4A4842;
    --navy: #143A5B;
    --red: #C0392B;
    --red-dark: #A5301F;
    --green: #1E7A46;
    --green-dark: #166137;
    --green-soft: #e6f1ea;
    --mark: #FFE27A;
    --line: #DAD5C8;
    --muted: #6E6B62;
    --card: #FBFAF6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #d9d4c7;
    color: var(--ink);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

/* ---- Page shell (single mobile-width column) ---------------------------- */

.page {
    width: 100%;
    max-width: 520px;
    min-height: 100vh;
    margin: 0 auto;
    background: var(--paper);
    display: flex;
    flex-direction: column;
}

/* ---- Top alert bar ------------------------------------------------------ */

.report-bar {
    flex: none;
    background: var(--red);
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 9px 12px;
}

/* ---- Editorial header (above the video) --------------------------------- */

.masthead {
    padding: 18px 18px 14px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1.35;
}

h1 {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 6.6vw, 31px);
    line-height: 1.18;
    letter-spacing: -.015em;
    color: var(--ink);
    text-wrap: balance;
}

h1 mark {
    background: var(--mark);
    color: var(--ink);
    padding: 0 4px;
    border-radius: 2px;
}

.lead {
    margin: 10px 0 0;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.5;
}

/* ---- Video player ------------------------------------------------------- */

.video-shell {
    position: relative;
    z-index: 5;
    width: 100%;
    background: #000;
}

.video-placeholder {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 16 / 9;
    place-items: center;
    overflow: hidden;
    background: #0d0d0f;
    color: #fff;
}

.vturbo-slot {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vturbo-slot vturb-smartplayer {
    width: 100%;
    min-height: 100%;
}

/* ---- Body below the video ----------------------------------------------- */

.content {
    padding: 16px 18px 30px;
    display: flex;
    flex-direction: column;
}

/* ---- Offer block (revealed at the pitch point) -------------------------- */
/* DOM order: video → offer → comments. When shown, it pushes comments down. */

.offer {
    margin: 4px 0 6px;
    padding: 13px 14px 14px;
    border: 2px solid var(--green);
    border-radius: 16px;
    background: var(--card);
    box-shadow: 0 12px 28px rgba(30, 122, 70, .16);
    transform: translateY(8px);
}


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

.offer-eye {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.3;
}

.offer-promo {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.offer-product {
    display: flex;
    justify-content: center;
    margin: 6px 0 4px;
}

.offer-product img {
    width: min(30vw, 104px);
    height: auto;
}

.offer-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 9px;
    margin: 2px 0 10px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.offer-price .old {
    font-size: 20px;
    font-weight: 800;
    color: #9a9488;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
}

.offer-price .now {
    font-size: 30px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.offer-avail {
    display: grid;
    gap: 6px;
    margin: 0 0 10px;
    padding: 10px;
    border-radius: 11px;
    background: var(--green-soft);
    text-align: left;
    list-style: none;
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--ink-soft);
}

.offer-avail strong {
    color: var(--navy);
}

.offer-avail .scarcity {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #cfe3d6;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.offer-buy {
    display: block;
    width: 100%;
    padding: 13px 14px;
    border-radius: 11px;
    background: var(--green);
    box-shadow: inset 0 -4px 0 rgba(20, 80, 45, .35);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .01em;
    text-align: center;
    text-decoration: none;
}

.offer-buy:active {
    transform: scale(.98);
}

.offer-secure {
    display: block;
    margin: 9px 0 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.offer-secure::before {
    content: "➔ ";
}

/* ---- Comments thread ---------------------------------------------------- */

.comments {
    margin-top: 16px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.comments-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
}

.comments-title b {
    color: var(--navy);
}

/* Comment input */

.comment-input {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.comment-input input {
    width: 100%;
    min-height: 40px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    outline: 0;
    color: var(--ink);
}

.comment-input input:focus {
    border-color: var(--navy);
}

.post-button {
    flex: none;
    min-height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 18px;
    background: var(--navy);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    transition: transform .12s ease, opacity .16s ease;
}

.post-button:active {
    transform: scale(.96);
}

.post-button:disabled {
    cursor: default;
    opacity: .55;
}

.comments-list {
    display: grid;
    gap: 16px;
}

.comment-thread {
    display: grid;
    gap: 12px;
}

.comment {
    display: flex;
    gap: 10px;
}

.avatar {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
}

.avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment.reply {
    margin-left: 48px;
}

.comment.reply .avatar {
    width: 32px;
    height: 32px;
}

.comment-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
}

.comment-text {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--ink-soft);
}

.comment-actions {
    display: flex;
    gap: 16px;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.comment-actions b {
    color: var(--ink-soft);
    font-weight: 700;
}

/* ---- Desktop framing ---------------------------------------------------- */

@media (min-width: 760px) {
    body {
        padding: 24px 0;
    }

    .page {
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 18px 50px rgba(15, 23, 42, .18);
    }

    .video-shell {
        position: relative;
    }
}
