/* =========================================================================
   11-addsend — "Add / Send / Exchange" cycling taglines.
   Split out of 03-unify so the block can live later in the page. The sticky
   list technique makes each row pin and swap as you scroll. Scoped under
   ._add-send-exchange (rules ported verbatim from the old unify taglines).
   ========================================================================= */

._add-send-exchange {
  position: relative;
}

/* --- Taglines (sticky cycling list) --------------------------------------- */
._add-send-exchange .taglines li {
  height: 100vh;
  margin-top: calc(-80vh + 1.1em);
  padding-top: 50vh;
  position: sticky;
  top: 0;
  transform: translateY(calc((var(--index) - var(--items) * .5) * 1.1em));
}
._add-send-exchange .taglines li:first-child {
  margin-top: 0;
}
._add-send-exchange .taglines li:last-child {
  height: 20vh;
  margin-top: 0;
  padding-top: 0;
  transform: none;
}
._add-send-exchange .taglines h3 {
  color: var(--orange); /* black in this palette */
}
