/* ══ HERO OFFER BANNER ══ */
.hero-offer {
  margin-bottom: 32px;
  text-align: left;
}
.hero-offer__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a3e635;
  background: rgba(163,230,53,0.12);
  border: 1px solid rgba(163,230,53,0.28);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.hero-offer__text {
  font-family: var(--font-display, 'Inter', sans-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.hero-offer__text em {
  font-style: normal;
  background: linear-gradient(90deg, #6c47ff 0%, #8b5cf6 50%, #6c47ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: offerShimmer 3s linear infinite;
}
@keyframes offerShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ══ MONEY RAIN LAYER ══ */
.money-rain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.money-chip {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.90);
  font-family: var(--font-display, 'Inter', sans-serif);
  font-size: 1.4rem;
  font-weight: 900;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}

/* Individual chip positions and animations */
.money-chip--1 {
  top: 8%;
  left: 1%;
  animation: moneyTL 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 0s;
}
.money-chip--2 {
  top: 8%;
  right: 1%;
  animation: moneyTR 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 1.5s;
}
.money-chip--3 {
  top: 50%;
  left: 0%;
  animation: moneyBL 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 3s;
}
.money-chip--4 {
  bottom: 10%;
  right: 1%;
  animation: moneyBR 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 4.5s;
}
.money-chip--5 {
  top: 30%;
  left: 0%;
  animation: moneyTL 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 6s;
  font-size: 1.15rem;
}
.money-chip--6 {
  top: 65%;
  right: 1%;
  animation: moneyTR 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 0.8s;
  font-size: 1.15rem;
}
.money-chip--7 {
  bottom: 25%;
  left: 0%;
  animation: moneyBL 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 2.2s;
  font-size: 1.15rem;
}
.money-chip--8 {
  top: 44%;
  right: 1%;
  animation: moneyBR 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: 5.2s;
  font-size: 1.7rem;
}

@keyframes moneyTL {
  0%   { opacity: 0; transform: translate(-160px, -130px) scale(0.35) rotate(-18deg); }
  18%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  72%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(-18px, -24px) scale(0.88); }
}
@keyframes moneyTR {
  0%   { opacity: 0; transform: translate(160px, -130px) scale(0.35) rotate(18deg); }
  18%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  72%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(18px, -24px) scale(0.88); }
}
@keyframes moneyBL {
  0%   { opacity: 0; transform: translate(-160px, 130px) scale(0.35) rotate(-18deg); }
  18%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  72%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(-18px, 24px) scale(0.88); }
}
@keyframes moneyBR {
  0%   { opacity: 0; transform: translate(160px, 130px) scale(0.35) rotate(18deg); }
  18%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  72%  { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(18px, 24px) scale(0.88); }
}

@media (max-width: 768px) {
  .money-chip { font-size: 1rem; padding: 8px 16px; }
  .money-chip--8 { font-size: 1rem; }
  .hero-offer__text { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .money-chip--5,
  .money-chip--7 { display: none; }
}
