    :root {
      --purple: #5F259F;
      --purple-dark: #35105f;
      --purple-2: #7b35d6;
      --purple-soft: #f3ecff;
      --white: #ffffff;
      --ink: #171022;
      --muted: #6f647d;
      --line: rgba(95, 37, 159, .14);
      --shadow: 0 22px 70px rgba(35, 13, 64, .18);
      --radius: 28px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #fff;
      color: var(--ink);
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    .container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

    .nav {
      position: sticky; top: 0; z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255,255,255,.82);
      border-bottom: 1px solid rgba(95,37,159,.10);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.05em; font-size: 30px; }
    .brand img { width: 44px; height: 44px; border-radius: 50%; display: block; }
    .brand span { line-height: 1; display: inline-block; transform: translateY(-2px); }
    .nav-links { display: flex; align-items: center; gap: 26px; color: #4d425c; font-size: 14px; font-weight: 700; }
    .nav-links a:hover { color: var(--purple); }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 9px;
      padding: 14px 20px; border-radius: 999px;
      font-weight: 900; border: 0; cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { color: #fff; background: linear-gradient(135deg, var(--purple), var(--purple-2)); box-shadow: 0 16px 34px rgba(95,37,159,.28); }
    .btn-white { background: #fff; color: var(--purple); box-shadow: 0 16px 34px rgba(25,8,48,.14); }
    .btn-ghost { background: rgba(255,255,255,.13); color: #fff; border: 1px solid rgba(255,255,255,.24); }

    .hero { position: relative; isolation: isolate; padding: 70px 0 46px; overflow: hidden; }
    .hero::before {
      content: ""; position: absolute; inset: -220px -180px auto auto;
      width: 560px; height: 560px; border-radius: 50%;
      background: radial-gradient(circle, rgba(95,37,159,.30), transparent 65%); z-index: -1;
    }
    .hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--purple-soft); color: var(--purple);
      padding: 9px 14px; border-radius: 999px;
      font-weight: 900; font-size: 13px; margin-bottom: 22px;
      border: 1px solid var(--line);
    }
    .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 7px rgba(95,37,159,.12); }
    h1 { font-size: clamp(46px, 7vw, 86px); line-height: .89; letter-spacing: -.075em; margin: 0 0 24px; }
    .grad { background: linear-gradient(135deg, var(--purple), #9b65ff); color: var(--purple); }
    .lead { font-size: clamp(18px, 2vw, 22px); color: #4f435d; line-height: 1.55; max-width: 660px; margin: 0 0 18px; }
    .hero-cta { width: fit-content; max-width: 100%; }
    .lead-emph { margin: 0 0 28px; text-align: center; }
    /* Orange DiDi Food capsule with white text (#fc7f41 sampled from logo) */
    .didi-badge { display: inline-flex; align-items: center; background: #fc7f41; color: #fff; font-weight: 900; font-size: clamp(15px, 1.7vw, 19px); padding: 11px 19px; border-radius: 999px; line-height: 1.1; letter-spacing: -.01em; box-shadow: 0 10px 26px rgba(252,127,65,.30); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 30px; }
    .trust { display: flex; flex-wrap: wrap; gap: 12px; }
    .pill { padding: 10px 13px; border: 1px solid var(--line); background: #fff; border-radius: 999px; font-size: 13px; font-weight: 800; color: #4a3e59; box-shadow: 0 10px 30px rgba(95,37,159,.06); }

    .hero-card { position: relative; border-radius: 38px; overflow: hidden; min-height: 520px; box-shadow: var(--shadow); background: var(--purple); }
    .hero-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,3,41,.02), rgba(20,3,41,.38)); }
    .floating { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .float-box { background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.6); backdrop-filter: blur(12px); border-radius: 22px; padding: 16px; }
    .float-box small { display:block; color: #786e84; font-weight:800; margin-bottom: 5px; }
    .float-box strong { font-size: 24px; color: var(--purple); }

    section { padding: 76px 0; }
    .section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
    .section-head h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: .98; letter-spacing: -.06em; }
    .section-head p { margin: 0; max-width: 460px; color: var(--muted); line-height: 1.65; font-weight: 600; }

    .stats-highlight {
      display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center;
      background: linear-gradient(135deg, var(--purple), var(--purple-2));
      color: #fff; border-radius: 22px; padding: 18px 24px; margin-bottom: 16px;
      font-weight: 800; font-size: clamp(15px, 1.7vw, 19px); letter-spacing: -.01em;
      box-shadow: 0 18px 44px rgba(95,37,159,.22);
    }
    .stats-highlight svg { width: 26px; height: 26px; flex-shrink: 0; stroke: #fff; }
    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .stat { border: 1px solid var(--line); border-radius: 24px; padding: 22px; background: #fff; box-shadow: 0 16px 38px rgba(95,37,159,.07); }
    .stat .num { font-size: 36px; font-weight: 950; letter-spacing: -.06em; color: var(--purple); }
    .stat .label { margin-top: 6px; color: #655a70; font-weight: 800; font-size: 14px; line-height: 1.35; }

    .earn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .earn-card { position: relative; overflow: hidden; border-radius: 30px; padding: 30px; background: linear-gradient(145deg, #fff, #f8f3ff); border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(95,37,159,.10); }
    .earn-card.featured { background: linear-gradient(145deg, var(--purple), #7f33df); color: #fff; }
    .tag { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(95,37,159,.10); color: var(--purple); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
    .featured .tag { background: rgba(255,255,255,.18); color: #fff; }
    .earn-card h3 { margin: 18px 0 8px; font-size: 28px; letter-spacing: -.045em; }
    .earn-card p { margin: 0; color: #675b73; line-height: 1.6; font-weight: 600; }
    .featured p { color: rgba(255,255,255,.82); }
    .money { margin-top: 26px; font-size: clamp(42px, 6vw, 70px); font-weight: 950; letter-spacing: -.07em; }
    .month { font-weight: 900; color: var(--purple); margin-top: 4px; }
    .featured .month { color: #fff; opacity: .9; }

    .breakdown { margin-top: 20px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: stretch; }
    .panel { border: 1px solid var(--line); border-radius: 30px; padding: 28px; background: #fff; box-shadow: 0 20px 55px rgba(95,37,159,.08); }
    .panel.dark { background: #170b29; color: #fff; border: 0; }
    .row { display: flex; justify-content: space-between; gap: 16px; padding: 17px 0; border-bottom: 1px solid rgba(95,37,159,.12); font-weight: 800; }
    .row:last-child { border-bottom: 0; }
    .row span:first-child { color: #6f647d; font-weight: 700; }
    .panel.dark .row { border-color: rgba(255,255,255,.12); }
    .panel.dark .row span:first-child { color: rgba(255,255,255,.68); }
    .total { font-size: 30px; color: var(--purple); }
    .panel.dark .total { color: #fff; }
    .calculator label { display: block; font-weight: 900; margin-bottom: 12px; }
    input[type="range"] { width: 100%; accent-color: var(--purple); }
    /* Rate toggle (launch vs base) */
    .rate-toggle { display: flex; gap: 6px; background: rgba(255,255,255,.08); padding: 5px; border-radius: 14px; margin-bottom: 24px; }
    .rate-btn { flex: 1; border: 0; cursor: pointer; padding: 12px 8px; border-radius: 10px; font-family: inherit; font-weight: 800; font-size: 13px; line-height: 1.2; color: rgba(255,255,255,.72); background: transparent; transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
    .rate-btn:hover { color: #fff; }
    .rate-btn.active { background: #fff; color: var(--purple); box-shadow: 0 6px 16px rgba(0,0,0,.28); }
    /* Applied pay per order */
    .calc-rate { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.14); }
    .calc-rate span { color: rgba(255,255,255,.72); font-weight: 700; font-size: 14px; }
    .calc-rate strong { font-size: 22px; letter-spacing: -.03em; }
    .calc-output { margin-top: 16px; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.09); }
    .calc-output small { color: rgba(255,255,255,.7); font-weight: 800; }
    .calc-output strong { display: block; font-size: 44px; letter-spacing: -.06em; margin-top: 6px; }

    .requirements { background: linear-gradient(180deg, #fff, #faf7ff); }
    .req-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
    .req {
      position: relative; min-height: 200px; border-radius: 26px; padding: 26px 22px;
      border: 1px solid var(--line); background: #fff; overflow: hidden;
      box-shadow: 0 16px 35px rgba(95,37,159,.06);
      transition: transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s ease, border-color .4s ease, background .4s ease;
    }
    /* "selected" card while scrolling on mobile */
    .req.active { border-color: var(--purple); box-shadow: 0 26px 56px rgba(95,37,159,.22); transform: scale(1.03); background: linear-gradient(180deg, #fff, #fbf8ff); }
    .req.active::before { transform: scaleX(1); }
    .req.active .req-icon { transform: translateY(-3px) scale(1.1); background: linear-gradient(145deg, var(--purple), var(--purple-2)); color: #fff; }
    /* top gradient strip that appears on hover */
    .req::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--purple), var(--purple-2));
      transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
    }
    .req:hover::before { transform: scaleX(1); }
    .req-icon {
      width: 54px; height: 54px; border-radius: 16px; margin-bottom: 18px;
      display: grid; place-items: center;
      background: var(--purple-soft); color: var(--purple);
      transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .35s ease, color .35s ease;
    }
    .req-icon svg { width: 28px; height: 28px; stroke: currentColor; }
    .req:hover .req-icon { transform: translateY(-3px) scale(1.08); background: linear-gradient(145deg, var(--purple), var(--purple-2)); color: #fff; }
    /* check badge in the corner */
    .check {
      position: absolute; top: 18px; right: 18px;
      width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%;
      background: #22c55e; color: #fff; font-weight: 950; font-size: 14px;
      box-shadow: 0 6px 16px rgba(34,197,94,.4);
    }
    .req strong { display: block; font-size: 18px; letter-spacing: -.03em; margin-bottom: 8px; }
    .req p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; font-weight: 600; }

    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .step { position: relative; padding: 30px 26px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 38px rgba(95,37,159,.07); display: flex; flex-direction: column; align-items: center; text-align: center; }
    .step-icon {
      width: 64px; height: 64px; border-radius: 20px; margin-bottom: 18px;
      display: grid; place-items: center;
      background: linear-gradient(145deg, var(--purple), var(--purple-2));
      box-shadow: 0 14px 30px rgba(95,37,159,.32);
      transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    }
    .step-icon svg { width: 32px; height: 32px; stroke: #fff; }
    .step:hover .step-icon { transform: translateY(-4px) rotate(-6deg) scale(1.06); }
    .step-num { font-size: 13px; font-weight: 950; color: var(--purple); letter-spacing: .04em; margin-bottom: 8px; }
    .step h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: -.04em; }
    .step p { margin: 0; color: var(--muted); line-height: 1.6; font-weight: 600; }

    .faq { background: #170b29; color: #fff; }
    .faq .section-head p { color: rgba(255,255,255,.70); }
    .faq-list { display: grid; gap: 12px; }
    details { border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.06); overflow: hidden; }
    summary { cursor: pointer; padding: 20px 22px; font-weight: 900; list-style: none; display: flex; justify-content: space-between; gap: 18px; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; font-size: 26px; line-height: 1; color: #cdb8ff; }
    details[open] summary::after { content: "–"; }
    details p { padding: 0 22px 22px; margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; font-weight: 600; }
    details p a { color: #cdb8ff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; transition: color .2s ease; }
    details p a:hover { color: #fff; }
    .faq-code { display: inline-block; background: rgba(205,184,255,.16); border: 1px solid rgba(205,184,255,.32); color: #e9deff; padding: 2px 9px; border-radius: 8px; font-weight: 800; letter-spacing: .03em; }

    /* Featured FAQ with image space (DiDi debt coverage) */
    .faq-feature { border-color: rgba(205,184,255,.35); background: linear-gradient(135deg, rgba(123,53,214,.16), rgba(255,255,255,.05)); }
    .faq-feature .faq-feature-body { display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: 26px; padding: 4px 22px 24px; align-items: start; }
    .faq-feature.faq-feature--center .faq-feature-body { align-items: center; }
    .faq-feature .faq-feature-media { position: relative; aspect-ratio: 4 / 3; border-radius: 16px; border: 1px dashed rgba(205,184,255,.45); background: linear-gradient(135deg, rgba(123,53,214,.30), rgba(95,37,159,.14)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .faq-feature .faq-feature-media span { font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
    .faq-feature .faq-feature-media.has-image { border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04); }
    .faq-feature .faq-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .faq-feature .faq-feature-text p { padding: 0; margin: 0 0 12px; color: rgba(255,255,255,.78); line-height: 1.65; font-weight: 600; }
    .faq-feature .faq-feature-text p:last-child { margin-bottom: 0; }
    .faq-feature .faq-feature-label { color: #fff; font-weight: 800; margin-top: 4px; }
    .faq-feature .faq-feature-list { margin: 0 0 14px; padding: 0; list-style: none; display: grid; gap: 9px; }
    .faq-feature .faq-feature-list li { position: relative; padding-left: 28px; color: rgba(255,255,255,.78); font-weight: 600; line-height: 1.5; }
    .faq-feature .faq-feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #cdb8ff; font-weight: 900; }
    .faq-feature .faq-feature-text .fineprint { color: rgba(255,255,255,.45); margin-top: 14px; }
    @media (max-width: 720px) {
      .faq-feature .faq-feature-body { grid-template-columns: 1fr; gap: 18px; }
      /* On phones, move the image below the text inside each featured FAQ */
      .faq-feature .faq-feature-media { order: 2; }
    }

    .cta { padding: 0 0 82px; }
    .cta-box { position: relative; overflow: hidden; border-radius: 38px; background: linear-gradient(135deg, var(--purple), #2a0f4b); color: #fff; padding: 48px; box-shadow: var(--shadow); }
    .cta-box::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -90px; top: -90px; background: rgba(255,255,255,.12); }
    .cta-box h2 { margin: 0 0 12px; font-size: clamp(34px, 4vw, 58px); line-height: .98; letter-spacing: -.06em; max-width: 760px; }
    .cta-box p { margin: 0 0 28px; color: rgba(255,255,255,.82); font-weight: 700; font-size: 18px; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; z-index: 1; }

    footer { border-top: 1px solid var(--line); padding: 30px 0; color: #71677c; font-size: 14px; font-weight: 700; }
    .foot { display: flex; justify-content: center; text-align: center; gap: 20px; flex-wrap: wrap; }

    @media (max-width: 920px) {
      .nav-links { display: none; }
      .hero-grid, .earn-grid, .breakdown { grid-template-columns: 1fr; }
      .hero-card { min-height: 430px; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .req-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: 1fr; }
      .section-head { display: block; }
      .section-head p { margin-top: 14px; }
    }
    @media (max-width: 560px) {
      .container { width: min(100% - 28px, 1160px); }
      .hero { padding-top: 42px; }
      .hero-card { min-height: 360px; border-radius: 28px; }
      .floating { grid-template-columns: 1fr; }
      .req-grid { grid-template-columns: 1fr; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .cta-box { padding: 32px 24px; border-radius: 30px; }
      .btn { width: 100%; }
      .brand { font-size: 25px; }
      /* CTA: buttons that wrap nicely and don't overflow */
      .cta-actions { flex-direction: column; align-items: stretch; }
      .cta-actions .btn { white-space: normal; text-align: center; line-height: 1.35; padding: 15px 18px; }
      .hero-actions .btn { white-space: normal; }
    }

    /* ============================================================
       ANIMATIONS & MICRO-INTERACTIONS
       ============================================================ */

    /* --- Scroll progress bar --- */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 4px; width: 0%;
      z-index: 100; transform-origin: 0 0;
      background: linear-gradient(90deg, var(--purple), #9b65ff, var(--purple-2));
      box-shadow: 0 0 14px rgba(123,53,214,.6);
      transition: width .08s linear;
    }

    /* --- Reveal on scroll --- */
    /* The hidden state only applies if JS loaded (.js class on <html>).
       Without JS, content shows normally instead of staying invisible. */
    .js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); will-change: opacity, transform; }
    .reveal.in-view { opacity: 1; transform: none; }
    .reveal.from-left { transform: translateX(-40px); }
    .reveal.from-right { transform: translateX(40px); }
    .reveal.zoom { transform: scale(.92); }
    /* Stagger: each child enters slightly later */
    .js .stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,.84,.44,1); }
    .stagger.in-view > * { opacity: 1; transform: none; }
    .stagger.in-view > *:nth-child(1) { transition-delay: .05s; }
    .stagger.in-view > *:nth-child(2) { transition-delay: .14s; }
    .stagger.in-view > *:nth-child(3) { transition-delay: .23s; }
    .stagger.in-view > *:nth-child(4) { transition-delay: .32s; }
    .stagger.in-view > *:nth-child(5) { transition-delay: .41s; }
    .stagger.in-view > *:nth-child(6) { transition-delay: .50s; }

    /* --- Hero entrance (on load) --- */
    @keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
    /* opacity:1 + fill-mode "both": if the animation doesn't run (in-app/webviews),
       the content stays visible anyway. It never ends up blank. */
    .hero .eyebrow,
    .hero h1,
    .hero .lead,
    .hero .lead-emph,
    .hero .hero-actions,
    .hero .trust { opacity: 1; animation: heroIn .85s cubic-bezier(.16,.84,.44,1) both; }
    .hero .eyebrow { animation-delay: .10s; }
    .hero h1 { animation-delay: .22s; }
    .hero .lead { animation-delay: .36s; }
    .hero .lead-emph { animation-delay: .44s; }
    .hero .hero-actions { animation-delay: .50s; }
    .hero .trust { animation-delay: .62s; }
    @keyframes cardIn { from { opacity: 0; transform: translateY(40px) scale(.96); } to { opacity: 1; transform: none; } }
    .hero-card { opacity: 1; animation: cardIn 1s cubic-bezier(.16,.84,.44,1) .35s both; }

    /* --- Animated background blobs in the hero --- */
    .blob { position: absolute; border-radius: 50%; filter: blur(50px); z-index: -1; opacity: .55; pointer-events: none; }
    .blob.b1 { width: 420px; height: 420px; left: -140px; top: -80px; background: radial-gradient(circle, rgba(123,53,214,.45), transparent 70%); animation: floatBlob 14s ease-in-out infinite; }
    .blob.b2 { width: 360px; height: 360px; right: -100px; bottom: -120px; background: radial-gradient(circle, rgba(155,101,255,.40), transparent 70%); animation: floatBlob 18s ease-in-out infinite reverse; }
    @keyframes floatBlob {
      0%,100% { transform: translate(0,0) scale(1); }
      33% { transform: translate(40px,-30px) scale(1.08); }
      66% { transform: translate(-30px,25px) scale(.95); }
    }

    /* --- Animated gradient text --- */
    .grad {
      background: linear-gradient(120deg, var(--purple), #9b65ff, #c79bff, #7b35d6);
      background-size: 280% 280%;
      color: var(--purple);   /* fallback: solid color if the browser doesn't support text background-clip */
      animation: gradShift 6s ease infinite;
      display: inline-block; padding-bottom: .14em; padding-right: .08em; line-height: 1;
    }
    /* Only make the text transparent when the gradient clip IS supported,
       so "entregando" is never invisible on webviews/older browsers. */
    @supports ((-webkit-background-clip: text) or (background-clip: text)) {
      .grad { -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
    }
    @keyframes gradShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

    /* --- Hero floating cards: animation --- */
    .float-box { animation: bob 5s ease-in-out infinite; box-shadow: 0 18px 40px rgba(35,13,64,.22); }
    .float-box:nth-child(2) { animation-delay: 1.2s; }
    @keyframes bob { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-9px) } }

    /* --- Shine sweeping across buttons --- */
    .btn-primary, .btn-white { position: relative; overflow: hidden; }
    .btn-primary::after, .btn-white::after {
      content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
      transform: skewX(-20deg);
    }
    .btn-primary:hover::after, .btn-white:hover::after { animation: shine .9s ease; }
    @keyframes shine { to { left: 125%; } }

    /* --- Hover lift on cards --- */
    .stat, .earn-card, .req, .step, .panel { transition: transform .35s cubic-bezier(.16,.84,.44,1), box-shadow .35s ease; }
    .stat:hover, .req:hover, .step:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(95,37,159,.20); }
    .earn-card:hover { transform: translateY(-8px) scale(1.012); box-shadow: 0 34px 70px rgba(95,37,159,.26); }

    /* --- Featured card with pulsing glow + ribbon --- */
    .earn-card.featured { box-shadow: 0 26px 64px rgba(95,37,159,.34); animation: glowPulse 3.4s ease-in-out infinite; }
    @keyframes glowPulse {
      0%,100% { box-shadow: 0 26px 64px rgba(95,37,159,.34); }
      50% { box-shadow: 0 26px 80px rgba(123,53,214,.55); }
    }
    .earn-card.featured::before {
      content: "★ Ganancias top"; position: absolute; top: 26px; right: -56px;
      width: 210px; text-align: center;
      background: #fff; color: var(--purple); font-weight: 950; font-size: 12px;
      padding: 8px 0; transform: rotate(45deg); letter-spacing: .03em;
      box-shadow: 0 8px 20px rgba(0,0,0,.18); z-index: 3;
    }

    /* --- Benefits ticker / marquee --- */
    .ticker { background: var(--purple); color: #fff; overflow: hidden; padding: 14px 0; white-space: nowrap; position: relative; }
    .ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
    .ticker::before { left: 0; background: linear-gradient(90deg, var(--purple), transparent); }
    .ticker::after { right: 0; background: linear-gradient(270deg, var(--purple), transparent); }
    .ticker-track { display: inline-flex; gap: 0; padding-left: 40px; animation: scrollX 26s linear infinite; }
    .ticker:hover .ticker-track { animation-play-state: paused; }
    .ticker-track span { font-weight: 900; font-size: 15px; letter-spacing: -.01em; display: inline-flex; align-items: center; opacity: .95; }
    .ticker-track span::after { content: "•"; color: rgba(255,255,255,.5); margin: 0 28px; }
    @keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* --- Floating WhatsApp button --- */
    .wa-float {
      position: fixed; right: 22px; bottom: 22px; z-index: 90;
      width: 62px; height: 62px; border-radius: 50%;
      background: #25D366; display: grid; place-items: center;
      box-shadow: 0 14px 34px rgba(37,211,102,.45);
      animation: waPulse 2.4s ease-in-out infinite;
      transition: transform .25s ease;
    }
    .wa-float:hover { transform: scale(1.1); }
    .wa-float svg { width: 32px; height: 32px; }
    @keyframes waPulse {
      0% { box-shadow: 0 14px 34px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
      70% { box-shadow: 0 14px 34px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
      100% { box-shadow: 0 14px 34px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
    }

    /* --- Fixed CTA bar on mobile --- */
    .mobile-cta {
      display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 89;
      background: linear-gradient(135deg, var(--purple), var(--purple-2));
      color: #fff; border-radius: 18px; padding: 14px 18px;
      align-items: center; justify-content: space-between; gap: 12px;
      box-shadow: 0 18px 44px rgba(35,13,64,.35);
      transform: translateY(140%); transition: transform .4s cubic-bezier(.16,.84,.44,1);
    }
    .mobile-cta.show { transform: none; }
    .mobile-cta strong { font-size: 15px; }
    .mobile-cta small { display: block; opacity: .85; font-size: 12px; font-weight: 700; }
    .mobile-cta a { background: #fff; color: var(--purple); padding: 11px 16px; border-radius: 12px; font-weight: 950; font-size: 14px; white-space: nowrap; }
    @media (max-width: 620px) {
      .mobile-cta { display: flex; }
      .wa-float { bottom: 92px; }
    }

    /* --- Pop on the calculator total --- */
    .calc-output strong { transition: transform .18s ease; }
    .calc-output strong.pop { animation: pop .35s ease; }
    @keyframes pop { 0%{ transform: scale(1) } 40%{ transform: scale(1.12) } 100%{ transform: scale(1) } }

    /* --- Requirements check bounces on enter --- */
    .req.in-view .check { animation: checkPop .5s cubic-bezier(.34,1.56,.64,1) both; }
    @keyframes checkPop { 0%{ transform: scale(0) rotate(-40deg) } 100%{ transform: scale(1) rotate(0) } }

    /* --- Fine print: bonus terms and conditions --- */
    .fineprint { font-size: 11px; line-height: 1.45; color: #9a90a6; font-weight: 600; letter-spacing: 0; margin-top: 14px; opacity: .85; }
    .panel.dark .fineprint { color: rgba(255,255,255,.45); }
    .fineprint strong { font-weight: 800; color: inherit; }

    /* --- Respect users who prefer reduced motion --- */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
    }
