/* ═══════════════════════════════════════════════════════════════════════
   TimeterestPay — Animated section scenes
   18 unique animated illustrations keyed by section concept.
   Brand: navy #192F7A · red #F0445E
   ═══════════════════════════════════════════════════════════════════════ */
.tp-scene {
  --tp-navy: #192F7A;
  --tp-red: #F0445E;
  --tp-ink: #141a2e;
  --tp-mut: #64708c;
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 6 / 4.6;
  margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(155deg, #f2f4ff 0%, #eef1ff 45%, #fdf0f3 100%);
  border: 1px solid rgba(25, 47, 122, .10);
  box-shadow: 0 34px 80px rgba(25, 47, 122, .14);
  overflow: hidden;
  isolation: isolate;
}

/* soft moving background blobs */
.tp-scn-bg::before,
.tp-scn-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
}
.tp-scn-bg::before {
  width: 300px; height: 300px;
  left: -80px; top: -100px;
  background: rgba(74, 104, 230, .22);
  animation: tpScnBlobA 9s ease-in-out infinite alternate;
}
.tp-scn-bg::after {
  width: 320px; height: 320px;
  right: -90px; bottom: -120px;
  background: rgba(240, 68, 94, .18);
  animation: tpScnBlobB 11s ease-in-out infinite alternate;
}
@keyframes tpScnBlobA {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, 40px) scale(1.15); }
}
@keyframes tpScnBlobB {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-45px, -35px) scale(1.12); }
}

/* ── shared pills / tags ────────────────────────────────────────────── */
.tp-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--tp-navy), #2a43a8);
  box-shadow: 0 14px 30px rgba(25, 47, 122, .28);
  white-space: nowrap;
  z-index: 5;
}
.tp-pill i { font-size: 15px; color: #ffb3c0; }
.tp-pill--sent   { left: 8%;  bottom: 10%; animation: tpFloatY 3.4s ease-in-out infinite; }
.tp-pill--recv   { right: 7%; bottom: 10%; background: linear-gradient(135deg, var(--tp-red), #d62a54); box-shadow: 0 14px 30px rgba(240, 68, 94, .30); }
.tp-pill--rate   { left: 50%; top: 9%;  transform: translateX(-50%); background: #fff; color: var(--tp-navy); border: 1.5px solid rgba(25,47,122,.14); box-shadow: 0 12px 26px rgba(25,47,122,.12); animation: tpFloatY 3.8s ease-in-out infinite; }
.tp-pill--rate i { color: var(--tp-red); }
.tp-pill--ask    { right: 7%; bottom: 10%; background: linear-gradient(135deg, var(--tp-navy), #2a43a8); }
.tp-pill--remit  { left: 50%; bottom: 9%; transform: translateX(-50%); animation: tpFloatY 3.6s ease-in-out infinite; }
.tp-pill--add    { right: 6%; bottom: 12%; background: linear-gradient(135deg, #12a97c, #0e8f69); box-shadow: 0 14px 30px rgba(18, 169, 124, .30); }
.tp-pill--wd     { left: 7%;  bottom: 11%; }
.tp-pill--paid   { left: 50%; bottom: 9%; transform: translateX(-50%); background: linear-gradient(135deg, #12a97c, #0e8f69); box-shadow: 0 14px 30px rgba(18, 169, 124, .30); animation: tpPopIn .6s cubic-bezier(.2,1.4,.4,1) both; }
.tp-pill--agent  { left: 50%; bottom: 9%; transform: translateX(-50%); background: linear-gradient(135deg, var(--tp-red), #d62a54); box-shadow: 0 14px 30px rgba(240, 68, 94, .30); }
.tp-pill--secure { right: 6%; bottom: 9%; background: linear-gradient(135deg, #12a97c, #0e8f69); }
.tp-pill--gift   { left: 50%; bottom: 9%; transform: translateX(-50%); background: linear-gradient(135deg, var(--tp-red), #d62a54); animation: tpFloatY 3.4s ease-in-out infinite; }
.tp-pill--bill   { left: 50%; bottom: 9%; transform: translateX(-50%); animation: tpFloatY 3.6s ease-in-out infinite; }
.tp-pill--topup  { right: 6%; bottom: 9%; }
.tp-pill--p2p    { left: 50%; bottom: 9%; transform: translateX(-50%); background: linear-gradient(135deg, var(--tp-red), #d62a54); }
.tp-pill--chat   { left: 50%; bottom: 9%; transform: translateX(-50%); }
.tp-pill--gw     { right: 6%; bottom: 9%; background: linear-gradient(135deg, #12a97c, #0e8f69); }
.tp-pill--api    { left: 50%; bottom: 9%; transform: translateX(-50%); animation: tpFloatY 3.6s ease-in-out infinite; }

/* ── phones ─────────────────────────────────────────────────────────── */
.tp-phone {
  position: absolute;
  width: 120px;
  height: 200px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f4f6ff);
  border: 1.5px solid rgba(25, 47, 122, .14);
  box-shadow: 0 22px 44px rgba(25, 47, 122, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  z-index: 3;
}
.tp-phone--l { left: 12%; top: 22%; animation: tpFloatY 4s ease-in-out infinite; }
.tp-phone--r { right: 10%; top: 26%; animation: tpFloatY 4s ease-in-out 1.2s infinite; }
.tp-ph-top {
  width: 34px; height: 5px;
  border-radius: 5px;
  background: rgba(25, 47, 122, .25);
  margin-bottom: 14px;
}
.tp-ph-name { font-size: 12px; font-weight: 800; color: var(--tp-navy); }
.tp-ph-bal  { font-size: 11px; font-weight: 700; color: var(--tp-ink); margin-top: 6px; }
.tp-ph-ok   { font-size: 22px; color: #12a97c; margin-top: 14px; animation: tpPopIn .5s cubic-bezier(.2,1.6,.4,1) both; }
.tp-ph-pop  { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: rgba(240, 68, 94, .5); animation: tpPing 2s ease-out infinite; }
.tp-ph-pop--1 { right: -6px; top: 34px; }

/* request-money variant */
.tp-phone--req  { left: 12%; top: 24%; }
.tp-phone--reqr { right: 10%; top: 28%; }
.tp-req-box {
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(240, 68, 94, .10);
  border: 1px dashed rgba(240, 68, 94, .5);
  font-size: 11px; font-weight: 800; color: var(--tp-red);
}
.tp-req-btn {
  margin-top: 14px;
  padding: 7px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tp-navy), #2a43a8);
  color: #fff; font-size: 11px; font-weight: 800;
  animation: tpPulseBtn 1.8s ease-in-out infinite;
}

/* ── flying coin along path ─────────────────────────────────────────── */
.tp-path {
  position: absolute;
  left: 10%; top: 18%;
  width: 80%;
  height: 64%;
  z-index: 2;
  pointer-events: none;
}
.tp-path-dash {
  stroke-dasharray: 8 8;
  animation: tpDashMove 1.1s linear infinite;
}
@keyframes tpDashMove {
  to { stroke-dashoffset: -32; }
}
.tp-coin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  color: var(--tp-red);
  background: #fff;
  border: 2px solid rgba(240, 68, 94, .35);
  box-shadow: 0 10px 22px rgba(240, 68, 94, .20);
  z-index: 4;
  animation: tpFlyCoin 2.6s ease-in-out infinite;
}
.tp-coin--1 { left: 34%; top: 30%; }
.tp-coin--2 { right: 28%; top: 22%; animation-delay: .9s; }
.tp-coin--3 { right: 24%; top: 38%; animation: tpFloatY 3s ease-in-out infinite; }
.tp-coin--4 { left: 20%; top: 34%; animation: tpFloatY 3s ease-in-out 1s infinite; }
.tp-coin--5 { left: 36%; top: 26%; }
.tp-coin--6 { right: 30%; top: 20%; animation-delay: .4s; }
.tp-coin--7 { right: 16%; top: 42%; animation-delay: 1s; }
.tp-coin--8 { right: 24%; top: 64%; animation-delay: 1.6s; }
.tp-coin--9 { right: 16%; top: 30%; animation: tpFloatY 3s ease-in-out infinite; }
@keyframes tpFlyCoin {
  0%   { transform: translate(0, 0) scale(.9); opacity: 0; }
  15%  { opacity: 1; }
  50%  { transform: translate(60px, -38px) scale(1.05); }
  85%  { opacity: 1; }
  100% { transform: translate(120px, -76px) scale(.9); opacity: 0; }
}

/* ── QR phone (receive) ─────────────────────────────────────────────── */
.tp-qr-phone {
  position: absolute;
  left: 14%; top: 16%;
  width: 150px; height: 240px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f4f6ff);
  border: 1.5px solid rgba(25, 47, 122, .14);
  box-shadow: 0 22px 44px rgba(25, 47, 122, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  z-index: 3;
  animation: tpFloatY 4.2s ease-in-out infinite;
}
.tp-qr-box {
  position: relative;
  width: 96px; height: 96px;
  margin-top: 10px;
  border-radius: 14px;
  border: 1.5px solid rgba(25, 47, 122, .18);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tp-qr-box i { font-size: 54px; color: var(--tp-navy); }
.tp-scan-line {
  position: absolute;
  left: 6px; right: 6px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--tp-red), transparent);
  animation: tpScan 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes tpScan {
  0%, 100% { top: 8px; }
  50% { top: 88px; }
}
.tp-qr-label {
  margin-top: 12px;
  font-size: 10px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--tp-mut);
}

/* incoming notification */
.tp-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(25, 47, 122, .10);
  box-shadow: 0 16px 36px rgba(25, 47, 122, .16);
  z-index: 5;
}
.tp-notif--in { right: 10%; top: 24%; animation: tpSlideIn 3.6s ease-in-out infinite; }
.tp-notif-ic {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 17px;
  color: #fff;
  background: linear-gradient(135deg, #12a97c, #0e8f69);
}
.tp-notif span { display: flex; flex-direction: column; line-height: 1.3; text-align: left; }
.tp-notif strong { font-size: 12.5px; color: var(--tp-ink); }
.tp-notif small { font-size: 11px; color: var(--tp-mut); }
@keyframes tpSlideIn {
  0%, 18% { transform: translateX(60px); opacity: 0; }
  30%, 78% { transform: translateX(0); opacity: 1; }
  92%, 100% { transform: translateX(60px); opacity: 0; }
}

/* ── exchange ───────────────────────────────────────────────────────── */
.tp-cur {
  position: absolute;
  width: 190px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .12);
  box-shadow: 0 18px 40px rgba(25, 47, 122, .14);
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.tp-cur small { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--tp-mut); }
.tp-cur strong { font-size: 22px; font-weight: 800; color: var(--tp-navy); }
.tp-cur--from { left: 10%; top: 30%; animation: tpFloatY 4s ease-in-out infinite; }
.tp-cur--to   { right: 10%; top: 46%; animation: tpFloatY 4s ease-in-out 1.4s infinite; }
.tp-swap {
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tp-red), #d62a54);
  color: #fff;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(240, 68, 94, .35);
  z-index: 5;
  animation: tpSpin 5s linear infinite;
}
@keyframes tpSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.tp-float-tag {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-size: 22px; font-weight: 800;
  color: var(--tp-navy);
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .14);
  box-shadow: 0 12px 26px rgba(25, 47, 122, .14);
  width: 48px; height: 48px;
  z-index: 4;
}
.tp-float-tag--usd { left: 8%; top: 12%; animation: tpFloatY 3.4s ease-in-out infinite; }
.tp-float-tag--ngn { right: 8%; top: 16%; color: var(--tp-red); animation: tpFloatY 3.4s ease-in-out 1s infinite; }

/* ── payment link ───────────────────────────────────────────────────── */
.tp-prod-card {
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 200px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .12);
  box-shadow: 0 20px 44px rgba(25, 47, 122, .16);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  z-index: 3;
  animation: tpFloatY 4s ease-in-out infinite;
}
.tp-prod-img { font-size: 44px; }
.tp-prod-name { font-size: 14px; font-weight: 800; color: var(--tp-ink); }
.tp-prod-price { font-size: 18px; font-weight: 800; color: var(--tp-red); }
.tp-prod-btn {
  width: 100%;
  padding: 9px;
  border-radius: 999px;
  text-align: center;
  font-size: 12px; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--tp-navy), #2a43a8);
}
.tp-link-pill {
  position: absolute;
  left: 50%; bottom: 22%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .14);
  font-size: 12.5px; font-weight: 700;
  color: var(--tp-navy);
  box-shadow: 0 12px 26px rgba(25, 47, 122, .12);
  z-index: 4;
  white-space: nowrap;
}
.tp-link-pill i { color: var(--tp-red); font-size: 14px; }
.tp-share {
  position: absolute;
  right: 12%; top: 14%;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(240, 68, 94, .25);
  color: var(--tp-red);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(240, 68, 94, .18);
  z-index: 5;
  animation: tpPulseBtn 1.8s ease-in-out infinite;
}
.tp-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(240, 68, 94, .35);
  animation: tpPing 2.2s ease-out infinite;
  z-index: 4;
}
.tp-ring--1 { right: 15%; top: 17%; width: 44px; height: 44px; }
.tp-ring--2 { right: 15%; top: 17%; width: 44px; height: 44px; animation-delay: 1.1s; }
@keyframes tpPing {
  0% { transform: scale(.7); opacity: .9; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── remittance ─────────────────────────────────────────────────────── */
.tp-globe {
  position: absolute;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3d5bd0, var(--tp-navy) 70%);
  color: #fff;
  font-size: 86px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 54px rgba(25, 47, 122, .30), inset 0 0 44px rgba(0,0,0,.18);
  z-index: 2;
  animation: tpFloatY 5s ease-in-out infinite;
}
.tp-plane {
  position: absolute;
  left: 40%; top: 16%;
  font-size: 30px;
  color: var(--tp-red);
  z-index: 5;
  animation: tpPlaneFly 4.6s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(240, 68, 94, .35));
}
@keyframes tpPlaneFly {
  0%   { transform: translate(-90px, 90px) rotate(-30deg); opacity: 0; }
  25%  { opacity: 1; }
  50%  { transform: translate(10px, 0) rotate(0deg); }
  75%  { opacity: 1; }
  100% { transform: translate(120px, -70px) rotate(24deg); opacity: 0; }
}
.tp-arc { position: absolute; left: 8%; top: 20%; width: 84%; height: 60%; z-index: 1; pointer-events: none; }
.tp-flag {
  position: absolute;
  width: 40px; height: 26px;
  border-radius: 6px;
  font-size: 10px; font-weight: 800;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(25, 47, 122, .18);
  z-index: 3;
}
.tp-flag--ng { left: 12%; top: 24%; background: linear-gradient(90deg, #008751 33%, #fff 33% 66%, #008751 66%); color: transparent; animation: tpFloatY 3.6s ease-in-out infinite; }
.tp-flag--uk { right: 12%; top: 28%; background: linear-gradient(90deg, #012169 33%, #fff 33% 66%, #C8102E 66%); color: transparent; animation: tpFloatY 3.6s ease-in-out 1.2s infinite; }
.tp-note {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(240, 68, 94, .35);
  color: var(--tp-red);
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px rgba(240, 68, 94, .18);
  z-index: 4;
}
.tp-note--1 { left: 30%; top: 14%; animation: tpFloatY 3s ease-in-out infinite; }
.tp-note--2 { right: 30%; top: 60%; animation: tpFloatY 3s ease-in-out 1s infinite; }

/* ── add money ──────────────────────────────────────────────────────── */
.tp-wallet {
  position: absolute;
  left: 50%; top: 44%;
  transform: translate(-50%, -50%);
  width: 170px; height: 130px;
  border-radius: 26px;
  background: linear-gradient(150deg, var(--tp-navy), #2a43a8);
  color: #fff;
  font-size: 58px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 50px rgba(25, 47, 122, .32);
  z-index: 2;
  animation: tpFloatY 4.4s ease-in-out infinite;
}
.tp-card-fly {
  position: absolute;
  left: 12%; top: 30%;
  font-size: 40px;
  z-index: 5;
  animation: tpCardFly 3.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(25,47,122,.25));
}
@keyframes tpCardFly {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(150px, 90px) rotate(14deg); opacity: 0; }
}
.tp-bank-ic {
  position: absolute;
  right: 12%; top: 16%;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .14);
  color: var(--tp-navy);
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(25, 47, 122, .14);
  z-index: 4;
  animation: tpFloatY 3.4s ease-in-out infinite;
}

/* ── withdraw ───────────────────────────────────────────────────────── */
.tp-bank {
  position: absolute;
  right: 14%; top: 22%;
  width: 130px; height: 110px;
  border-radius: 18px;
  background: linear-gradient(160deg, #fff, #eef1ff);
  border: 1.5px solid rgba(25, 47, 122, .14);
  box-shadow: 0 20px 40px rgba(25, 47, 122, .16);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  color: var(--tp-navy);
  z-index: 3;
  animation: tpFloatY 4s ease-in-out infinite;
}
.tp-cash {
  position: absolute;
  width: 64px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3dd68c, #12a97c);
  box-shadow: 0 10px 20px rgba(18, 169, 124, .25);
  z-index: 4;
}
.tp-cash::after {
  content: "₦";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px;
}
.tp-cash--1 { right: 34%; top: 34%; transform: rotate(-12deg); animation: tpCashDrop 2.8s ease-in-out infinite; }
.tp-cash--2 { right: 44%; top: 52%; transform: rotate(6deg);  animation: tpCashDrop 2.8s ease-in-out .5s infinite; }
.tp-cash--3 { right: 30%; top: 60%; transform: rotate(0deg);  animation: tpCashDrop 2.8s ease-in-out 1s infinite; }
.tp-cash--4 { left: 30%; top: 40%; transform: rotate(-10deg); animation: tpCashDrop 2.8s ease-in-out infinite; }
.tp-cash--5 { left: 44%; top: 58%; transform: rotate(8deg);  animation: tpCashDrop 2.8s ease-in-out .6s infinite; }
@keyframes tpCashDrop {
  0%   { transform: translateY(-30px) rotate(-8deg); opacity: 0; }
  25%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translateY(50px) rotate(8deg); opacity: 0; }
}
.tp-atm-card {
  position: absolute;
  left: 16%; top: 20%;
  font-size: 44px;
  z-index: 4;
  animation: tpFloatY 3.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(25,47,122,.2));
}

/* ── make payment ───────────────────────────────────────────────────── */
.tp-store-card {
  position: absolute;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  width: 230px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .12);
  box-shadow: 0 22px 46px rgba(25, 47, 122, .16);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 3;
  animation: tpFloatY 4.2s ease-in-out infinite;
}
.tp-store-top { font-size: 14px; font-weight: 800; color: var(--tp-navy); }
.tp-store-item { font-size: 13px; color: var(--tp-mut); display: flex; align-items: center; gap: 8px; }
.tp-store-item i { color: var(--tp-red); font-size: 16px; }
.tp-store-qr {
  align-self: center;
  width: 88px; height: 88px;
  border-radius: 14px;
  border: 1.5px solid rgba(25, 47, 122, .18);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--tp-navy);
  overflow: hidden;
  position: relative;
}
.tp-scan-beam {
  position: absolute;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  width: 88px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--tp-red), transparent);
  z-index: 5;
  animation: tpScanBig 2.2s ease-in-out infinite;
}
@keyframes tpScanBig {
  0%, 100% { top: 30%; }
  50% { top: 54%; }
}

/* ── money out ──────────────────────────────────────────────────────── */
.tp-wallet--out { left: 26%; top: 40%; width: 150px; height: 115px; font-size: 50px; }
.tp-agent {
  position: absolute;
  right: 16%; top: 28%;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(150deg, #3d5bd0, var(--tp-navy));
  color: #fff;
  font-size: 40px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(25, 47, 122, .30);
  z-index: 3;
  animation: tpFloatY 3.8s ease-in-out infinite;
}
.tp-agent::after {
  content: "Agent";
  position: absolute;
  bottom: -26px;
  font-size: 11px; font-weight: 800;
  color: var(--tp-navy);
  background: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(25, 47, 122, .12);
  box-shadow: 0 8px 16px rgba(25, 47, 122, .12);
}

/* ── virtual card ───────────────────────────────────────────────────── */
.tp-vcard {
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 260px; height: 160px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1d2f80, #101a45 70%);
  box-shadow: 0 26px 54px rgba(25, 47, 122, .34);
  padding: 18px;
  display: flex; flex-direction: column;
  color: #fff;
  z-index: 3;
  animation: tpCardTilt 5s ease-in-out infinite;
}
@keyframes tpCardTilt {
  0%, 100% { transform: translate(-50%, -50%) rotate(-8deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-4deg) translateY(-10px); }
}
.tp-vc-chip {
  width: 34px; height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f4c76a, #d9a53f);
  margin-bottom: 16px;
}
.tp-vc-num { font-size: 17px; font-weight: 700; letter-spacing: .06em; }
.tp-vc-name { margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.85); }
.tp-vc-logo { position: absolute; right: 18px; bottom: 16px; font-size: 15px; font-weight: 800; font-style: italic; letter-spacing: .04em; }
.tp-lock {
  position: absolute;
  right: 14%; top: 14%;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(240, 68, 94, .25);
  color: var(--tp-red);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(240, 68, 94, .18);
  z-index: 5;
  animation: tpPulseBtn 1.8s ease-in-out infinite;
}
.tp-shop-tag {
  position: absolute;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .14);
  font-size: 11px; font-weight: 800;
  color: var(--tp-navy);
  box-shadow: 0 10px 22px rgba(25, 47, 122, .12);
  z-index: 4;
}
.tp-shop-tag--1 { left: 8%; top: 14%; animation: tpFloatY 3.2s ease-in-out infinite; }
.tp-shop-tag--2 { left: 14%; top: 60%; animation: tpFloatY 3.2s ease-in-out .8s infinite; }
.tp-shop-tag--3 { right: 8%; top: 62%; animation: tpFloatY 3.2s ease-in-out 1.4s infinite; }

/* ── gift card ──────────────────────────────────────────────────────── */
.tp-gift {
  position: absolute;
  left: 30%; top: 34%;
  width: 120px; height: 130px;
  z-index: 3;
  animation: tpFloatY 4s ease-in-out infinite;
}
.tp-gift-box {
  position: absolute;
  left: 10px; bottom: 10px;
  width: 100px; height: 80px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--tp-red), #d62a54);
  box-shadow: 0 18px 36px rgba(240, 68, 94, .30);
}
.tp-gift-lid {
  position: absolute;
  left: 0; top: 26px;
  width: 120px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(150deg, #f45a72, #e8325a);
  box-shadow: 0 10px 22px rgba(240, 68, 94, .25);
  animation: tpLidOpen 3.6s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes tpLidOpen {
  0%, 12% { transform: rotate(0); }
  30%, 70% { transform: rotate(-24deg) translateY(-8px); }
  88%, 100% { transform: rotate(0); }
}
.tp-gift-ribbon {
  position: absolute;
  left: 50%; top: 26px;
  width: 16px; height: 90px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 4px;
  z-index: 2;
}
.tp-gift-card {
  position: absolute;
  right: 10%; top: 26%;
  width: 140px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .12);
  box-shadow: 0 18px 38px rgba(25, 47, 122, .16);
  display: flex; flex-direction: column; gap: 4px;
  z-index: 4;
  animation: tpFloatY 3.8s ease-in-out 1s infinite;
}
.tp-gift-card span { font-size: 10px; font-weight: 800; letter-spacing: .1em; color: var(--tp-mut); }
.tp-gift-card strong { font-size: 20px; font-weight: 800; color: var(--tp-red); }
.tp-spark {
  position: absolute;
  font-size: 22px;
  color: #f4c76a;
  z-index: 5;
  animation: tpSparkle 2.2s ease-in-out infinite;
}
.tp-spark--1 { right: 38%; top: 16%; }
.tp-spark--2 { right: 24%; top: 40%; animation-delay: .7s; }
.tp-spark--3 { left: 14%; top: 60%; animation-delay: 1.3s; }
@keyframes tpSparkle {
  0%, 100% { transform: scale(.6) rotate(0deg); opacity: .4; }
  50% { transform: scale(1.3) rotate(30deg); opacity: 1; }
}

/* ── bill pay ───────────────────────────────────────────────────────── */
.tp-bill-tile {
  position: absolute;
  width: 100px; height: 92px;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .12);
  box-shadow: 0 16px 32px rgba(25, 47, 122, .14);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  color: var(--tp-navy);
  font-size: 28px;
  z-index: 3;
}
.tp-bill-tile small { font-size: 10.5px; font-weight: 800; color: var(--tp-mut); }
.tp-bill-tile--tv    { left: 12%; top: 22%; animation: tpFloatY 3.6s ease-in-out infinite; }
.tp-bill-tile--elec  { left: 30%; top: 48%; animation: tpFloatY 3.6s ease-in-out .8s infinite; }
.tp-bill-tile--water { right: 30%; top: 22%; animation: tpFloatY 3.6s ease-in-out 1.4s infinite; }
.tp-bill-tile--wifi  { right: 12%; top: 48%; animation: tpFloatY 3.6s ease-in-out 2s infinite; }
.tp-check {
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #12a97c, #0e8f69);
  color: #fff;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(18, 169, 124, .30);
  z-index: 5;
  animation: tpPopIn .5s cubic-bezier(.2,1.6,.4,1) both;
}
.tp-check--1 { left: 30%; top: 34%; }
.tp-check--2 { right: 24%; top: 38%; animation-delay: .8s; }
@keyframes tpPopIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ── mobile topup ───────────────────────────────────────────────────── */
.tp-topup-phone {
  position: absolute;
  left: 16%; top: 18%;
  width: 130px; height: 220px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f4f6ff);
  border: 1.5px solid rgba(25, 47, 122, .14);
  box-shadow: 0 22px 44px rgba(25, 47, 122, .18);
  display: flex; flex-direction: column; align-items: center;
  padding-top: 14px;
  z-index: 3;
  animation: tpFloatY 4s ease-in-out infinite;
}
.tp-signal { font-size: 30px; color: var(--tp-navy); margin-top: 18px; }
.tp-signal-bar {
  width: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, #3dd68c, #12a97c);
  margin-top: 8px;
}
.tp-signal-bar--1 { height: 16px; animation: tpBarUp 2.4s ease-in-out infinite; }
.tp-signal-bar--2 { height: 28px; animation: tpBarUp 2.4s ease-in-out .4s infinite; }
.tp-signal-bar--3 { height: 42px; animation: tpBarUp 2.4s ease-in-out .8s infinite; }
@keyframes tpBarUp {
  0%, 100% { transform: scaleY(.7); transform-origin: bottom; }
  50% { transform: scaleY(1); }
}
.tp-topup-amt {
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(240, 68, 94, .10);
  border: 1px dashed rgba(240, 68, 94, .5);
  color: var(--tp-red);
  font-size: 12px; font-weight: 800;
}
.tp-net {
  position: absolute;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px; font-weight: 800;
  color: #fff;
  box-shadow: 0 12px 26px rgba(25, 47, 122, .18);
  z-index: 4;
}
.tp-net--mtn   { right: 14%; top: 22%; background: linear-gradient(135deg, #ffc20e, #f5a800); color: #3a2c00; animation: tpFloatY 3.4s ease-in-out infinite; }
.tp-net--airtel{ right: 22%; top: 44%; background: linear-gradient(135deg, #e40000, #b00000); animation: tpFloatY 3.4s ease-in-out .9s infinite; }
.tp-net--glo   { right: 12%; top: 62%; background: linear-gradient(135deg, #12a97c, #0e8f69); animation: tpFloatY 3.4s ease-in-out 1.6s infinite; }

/* ── p2p trading ────────────────────────────────────────────────────── */
.tp-user {
  position: absolute;
  width: 74px; height: 74px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px rgba(25, 47, 122, .26);
  z-index: 3;
}
.tp-user--a { left: 16%; top: 24%; background: linear-gradient(150deg, #3d5bd0, var(--tp-navy)); animation: tpFloatY 3.8s ease-in-out infinite; }
.tp-user--b { right: 16%; top: 30%; background: linear-gradient(150deg, #f45a72, #d62a54); animation: tpFloatY 3.8s ease-in-out 1.2s infinite; }
.tp-trade-coin {
  position: absolute;
  left: 50%; top: 34%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(240, 68, 94, .4);
  color: var(--tp-red);
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(240, 68, 94, .22);
  z-index: 5;
  animation: tpCoinSwap 3s ease-in-out infinite;
}
@keyframes tpCoinSwap {
  0%, 100% { transform: translate(-50%, -50%) translateX(0); }
  50% { transform: translate(-50%, -50%) translateX(-46px); }
}
.tp-offer {
  position: absolute;
  padding: 10px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid rgba(25, 47, 122, .12);
  box-shadow: 0 12px 26px rgba(25, 47, 122, .12);
  font-size: 12.5px; font-weight: 800;
  color: var(--tp-navy);
  z-index: 4;
}
.tp-offer--1 { left: 14%; top: 58%; animation: tpFloatY 3.6s ease-in-out infinite; }
.tp-offer--2 { right: 14%; top: 62%; color: var(--tp-red); animation: tpFloatY 3.6s ease-in-out 1.2s infinite; }

/* ── p2p chat ───────────────────────────────────────────────────────── */
.tp-chat-bubble {
  position: absolute;
  max-width: 210px;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  z-index: 3;
  box-shadow: 0 14px 30px rgba(25, 47, 122, .14);
  animation: tpBubblePop 4s ease-in-out infinite;
}
.tp-chat-bubble--a { left: 12%; top: 22%; background: #fff; border: 1.5px solid rgba(25, 47, 122, .12); color: var(--tp-ink); border-bottom-left-radius: 4px; }
.tp-chat-bubble--b { right: 12%; top: 40%; background: linear-gradient(135deg, var(--tp-navy), #2a43a8); color: #fff; border-bottom-right-radius: 4px; animation-delay: 1.2s; }
.tp-chat-bubble--typing { left: 30%; top: 58%; display: flex; gap: 5px; align-items: center; width: 62px; justify-content: center; animation-delay: 2.2s; }
.tp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--tp-mut);
  animation: tpDot 1.2s ease-in-out infinite;
}
.tp-dot:nth-child(2) { animation-delay: .2s; }
.tp-dot:nth-child(3) { animation-delay: .4s; }
@keyframes tpDot {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-5px); opacity: 1; }
}
@keyframes tpBubblePop {
  0%, 12% { transform: scale(.7); opacity: 0; }
  28%, 72% { transform: scale(1); opacity: 1; }
  90%, 100% { transform: scale(.8); opacity: 0; }
}

/* ── gateway ────────────────────────────────────────────────────────── */
.tp-gear {
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(150deg, #3d5bd0, var(--tp-navy));
  color: #fff;
  font-size: 56px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 22px 48px rgba(25, 47, 122, .30);
  z-index: 2;
  animation: tpSpin 8s linear infinite;
}
.tp-toggle {
  position: absolute;
  width: 58px; height: 30px;
  border-radius: 999px;
  padding: 3px;
  z-index: 4;
  box-shadow: 0 8px 18px rgba(25, 47, 122, .16);
}
.tp-toggle span {
  display: block;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.tp-toggle--on { background: linear-gradient(135deg, #12a97c, #0e8f69); animation: tpFloatY 3.4s ease-in-out infinite; }
.tp-toggle--on span { margin-left: auto; }
.tp-toggle--off { background: rgba(25, 47, 122, .18); animation: tpFloatY 3.4s ease-in-out 1s infinite; }
.tp-toggle--off span { margin-right: auto; }
.tp-toggle:nth-of-type(2) { left: 14%; top: 22%; }
.tp-toggle:nth-of-type(3) { right: 12%; top: 26%; }
.tp-toggle:nth-of-type(4) { left: 18%; top: 60%; }
.tp-node {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid rgba(240, 68, 94, .25);
  color: var(--tp-red);
  font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px rgba(240, 68, 94, .16);
  z-index: 4;
}
.tp-node--1 { right: 16%; top: 58%; animation: tpFloatY 3.2s ease-in-out infinite; }
.tp-node--2 { right: 26%; top: 14%; animation: tpFloatY 3.2s ease-in-out 1s infinite; }

/* ── api key ────────────────────────────────────────────────────────── */
.tp-key {
  position: absolute;
  left: 12%; top: 30%;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f4c76a, #d9a53f);
  color: #fff;
  font-size: 40px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(217, 165, 63, .40);
  z-index: 3;
  animation: tpFloatY 3.6s ease-in-out infinite;
}
.tp-key::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -34px;
  width: 14px; height: 40px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(150deg, #f4c76a, #c99a35);
}
.tp-code-win {
  position: absolute;
  right: 10%; top: 24%;
  width: 240px;
  padding: 16px;
  border-radius: 16px;
  background: #101a45;
  box-shadow: 0 22px 46px rgba(10, 16, 46, .40);
  display: flex; flex-direction: column; gap: 7px;
  z-index: 4;
  animation: tpFloatY 4s ease-in-out infinite;
}
.tp-code-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.tp-code-dot:first-child { background: var(--tp-red); }
.tp-code-dot:nth-child(2) { background: #f4c76a; }
.tp-code-line {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11.5px;
  color: #8fa0d8;
  line-height: 1.5;
}
.tp-code-line--key { color: #3dd68c; }
.tp-cursor {
  width: 7px; height: 13px;
  background: #3dd68c;
  animation: tpBlink 1s steps(2) infinite;
}
@keyframes tpBlink { 50% { opacity: 0; } }

/* ── generic ────────────────────────────────────────────────────────── */
.tp-scene--generic .tp-qr-phone { left: 16%; }
.tp-scene--generic .tp-wallet { left: 62%; top: 40%; width: 140px; height: 108px; font-size: 46px; }

/* ── responsive ─────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .tp-phone { width: 96px; height: 164px; }
  .tp-qr-phone { width: 118px; height: 192px; }
  .tp-qr-box { width: 72px; height: 72px; }
  .tp-qr-box i { font-size: 40px; }
  .tp-cur { width: 150px; }
  .tp-prod-card { width: 170px; }
  .tp-vcard { width: 220px; height: 136px; }
  .tp-store-card { width: 200px; }
  .tp-code-win { width: 190px; }
  .tp-bill-tile { width: 82px; height: 76px; }
  .tp-chat-bubble { max-width: 160px; font-size: 12px; }
  .tp-pill { font-size: 11.5px; padding: 8px 12px; }
}

/* ── Animated process step cards (section demo area) ────────────────── */
.tp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  max-width: 1060px;
  margin: 44px auto 0;
  padding: 0 16px;
}
.tp-step-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(25, 47, 122, .10);
  border-radius: 20px;
  padding: 26px 22px 24px;
  box-shadow: 0 18px 40px rgba(25, 47, 122, .10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  animation: tpStepIn .7s cubic-bezier(.2,1.4,.4,1) both;
  animation-delay: var(--d, 0ms);
}
.tp-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 68, 94, .35);
  box-shadow: 0 26px 54px rgba(25, 47, 122, .16);
}
.tp-step-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(25, 47, 122, .28);
  letter-spacing: .04em;
}
.tp-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--tp-navy, #192F7A), #2a43a8);
  box-shadow: 0 12px 26px rgba(25, 47, 122, .24);
}
.tp-step-card:nth-child(even) .tp-step-icon {
  background: linear-gradient(135deg, #F0445E, #d62a54);
  box-shadow: 0 12px 26px rgba(240, 68, 94, .24);
}
.tp-step-card strong {
  font-size: 15.5px;
  font-weight: 800;
  color: #141a2e;
  line-height: 1.35;
}
.tp-step-card small {
  font-size: 13px;
  line-height: 1.6;
  color: #64708c;
}
@keyframes tpStepIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 560px) {
  .tp-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 380px) {
  .tp-steps { grid-template-columns: 1fr; }
}
