/* ============================================================
   RecibIA — Signature: Receipt-edge divider
   Echoes the torn/scalloped tail on the RecibIA icon mark.
   Used wherever one section's background hands off to the next.
   ============================================================ */

.receipt-edge {
  --scallop: 22px;
  position: relative;
  height: var(--scallop);
  width: 100%;
  display: block;
}

.receipt-edge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* paper -> dark handoff (used above the final CTA / footer) */
.receipt-edge--to-dark path { fill: var(--ri-navy-950); }

/* dark -> paper handoff (used below the hero) */
.receipt-edge--to-paper path { fill: var(--ri-paper); }

/* paper -> surface handoff (used around cards, subtle) */
.receipt-edge--to-surface path { fill: var(--ri-surface); }
