    /* ======================================================
       DECODE — Result (Carol)
       Comments: English only
       Text shown to user: pt-BR
       ====================================================== */

    /* ---------- Reset & palette ---------- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --bg: #290000;
        --text: #eaeaea;
        --muted: #ccc;
        --accent: #ff4d4d;
        --accent-2: #ff1a1a;
        --surface: rgba(255, 255, 255, 0.062);
        --ring: #ff000040;
        --shadow: 0 0 15px rgba(0, 0, 0, 0.25);
        --radius: 14px;
        --space-1: 8px;
        --space-2: 12px;
        --space-3: 16px;
        --space-4: 20px;
        --space-5: 28px;
        --space-6: 40px;
    }

    /* ---------- Transparent scrollbars (safe for FB/IG) ---------- */
    html {
        scrollbar-gutter: stable both-edges;
    }

    b {
        color: var(--accent);
    }

    .headline {
        font-size: 28px;
        text-align: center;
        line-height: 1.2;
    }

    html,
    body,
    .decode-screen,
    * {
        scrollbar-width: thin;
        scrollbar-color: transparent transparent;
    }

    .decode-screen,
    * {
        -webkit-overflow-scrolling: touch;
    }

    *::-webkit-scrollbar {
        width: 12px;
        height: 12px;
        background: transparent;
    }

    *::-webkit-scrollbar-track {
        background: transparent;
    }

    *::-webkit-scrollbar-thumb {
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    *::-webkit-scrollbar-thumb:hover,
    *::-webkit-scrollbar-thumb:active {
        background-color: transparent;
    }

    @supports(-webkit-touch-callout:none) {
        *::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.001);
        }
    }

    /* ---------- Base ---------- */
    body {
        font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.55;
        padding: 24px 12px;
        overscroll-behavior: contain;
        text-align: left;
        /* enforce left alignment */
    }

    @media(min-width:1024px) {
        body {
            background:
                radial-gradient(60% 40% at 50% -10%, rgba(255, 0, 0, 0.15), transparent 70%),
                var(--bg);
        }
    }

    .container {
        max-width: clamp(320px, 92vw, 560px);
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.35));
    }

    .logo {
        max-width: 140px;
        margin-bottom: 24px;
        margin-inline: auto;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.1));
    }

    .title {
        text-align: center;
        font-weight: 800;
        color: #fff;
        line-height: 1.15;
        font-size: clamp(22px, 4.5vw, 30px);
        margin-top: 10px;
    }

    .subtitle {
        text-align: center;
        font-size: 15px;
        color: var(--muted);
        margin-top: 6px;
    }

    /* ---------- Panels ---------- */
    .panel {
        background: var(--surface);
        border: 1px solid var(--ring);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 16px;
    }

    .panel h2 {
        font-size: 18px;
        color: var(--accent);
        font-weight: 800;
        margin-bottom: 10px;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: .3px;
    }

    .panel h3 {
        font-size: 16px;
        color: #fff;
        font-weight: 700;
        margin: 8px 0 6px;
        line-height: 1.25;
    }

    .panel p {
        font-size: 15px;
        color: #e7e7e7;
        margin: 4px 0;
    }

    .panel ul {
        list-style: none;
        padding-left: 0;
        margin: 6px 0 4px;
    }

    .panel li {
        position: relative;
        padding-left: 14px;
        margin: 4px 0;
        font-size: 15px;
        color: #e7e7e7;
    }

    .panel li::before {
        content: "—";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--accent);
    }

    /* ---------- Status bar (sticky top) ---------- */
    .statusbar {
        position: sticky;
        top: 0;
        z-index: 50;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--ring);
        backdrop-filter: blur(6px);
    }

    .hidden {
        display: none !important;
    }

    .spinner {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, .25);
        border-top-color: #fff;
        animation: spin .75s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin: 6px 0 4px;
    }

    .tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid var(--ring);
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .2px;
    }

    .tag b {
        color: var(--accent);
    }

    /* ---------- Buttons ---------- */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: none;
        border-radius: 12px;
        padding: 12px 14px;
        font-weight: 800;
        letter-spacing: .2px;
        cursor: pointer;
        user-select: none;
        transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
    }

    .btn-muted {
        background: rgba(255, 255, 255, 0.06);
        color: var(--muted);
        border: 1px solid var(--ring);
    }

    /* ---------- Skeletons ---------- */
    .skeleton {
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        height: 14px;
        margin: 8px 0;
    }

    .skeleton::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent);
        transform: translateX(-100%);
        animation: shimmer 1.2s infinite;
    }

    @keyframes shimmer {
        100% {
            transform: translateX(100%);
        }
    }

    /* ---------- 30-day grid ---------- */
    #plan-30 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 6px;
    }

    @media(min-width:620px) {
        #plan-30 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .day {
        border: 1px solid var(--ring);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        padding: 12px;
    }

    .day h5 {
        font-size: 13px;
        color: var(--muted);
        font-weight: 800;
        margin-bottom: 6px;
        letter-spacing: .3px;
        text-transform: uppercase;
    }

    .footnote {
        font-size: 12px;
        color: var(--muted);
        text-align: center;
        margin: 10px 0 20px;
    }

    .decode-mockup {
        max-width: 100%;
    }

    .text-animation {
        margin-top: 10px;
        display: inline-block;
        animation: bounce 0.5s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(-9px);
        }
    }