/* ===================== HERO ===================== */
.pp-hero {
  position: relative;
  padding: 88px 80px 88px;
  background: linear-gradient(180deg, #F5EEFC 0%, #EDF0FC 50%, #F5EEFC 100%);
  overflow: hidden;
  min-height: 720px;
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pp-hero-lines {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  width: 100%;
}

.pp-hl {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: pp-draw 5.5s cubic-bezier(.22, .7, .2, 1) .2s forwards;
}

.pp-hl-2 { animation-delay: .8s; }
.pp-hl-3 { animation-delay: 1.4s; }

@keyframes pp-draw {
  to { stroke-dashoffset: 0; }
}

/* hero bg eggs */
.pp-hero-egg {
  position: absolute;
  pointer-events: none;
  border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
}

.pp-hero-egg-1 {
  right: -200px;
  top: -120px;
  width: 720px;
  height: 812px;
  background: #D6BAF2;
  opacity: .40;
  transform: rotate(-12deg);
  animation: pp-drift-a 14s ease-in-out infinite alternate;
}

.pp-hero-egg-2 {
  display: none;
}

@keyframes pp-drift-a {
  from { transform: rotate(-12deg) translate(0, 0); }
  to   { transform: rotate(-8deg) translate(-20px, 18px); }
}

/* hero inner: centered stack */
.pp-hero-inner.pp-hero-center {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 12px/1 'Poppins', sans-serif !important;
  letter-spacing: .14em;
  color: #3E5EE2;
  background: #fff;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  border: 1px solid #DCE2FA;
  box-shadow: 0 1px 2px rgba(25, 7, 80, .04);
  animation: pp-rise .7s cubic-bezier(.22, .7, .2, 1) both;
  text-transform: none !important;
}

.pp-hero-eyebrow-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3E5EE2, #7526C5);
  display: inline-block;
}

.pp-hero h1 {
  font: 600 52px/1.06 'Poppins', sans-serif !important;
  color: #190750;
  letter-spacing: -.02em;
  margin: 22px 0 20px;
  animation: pp-rise .85s cubic-bezier(.22, .7, .2, 1) .08s both;
}

.pp-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #3E5EE2 0%, #7526C5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pp-hero h1 .pp-hero-h1-tail {
  font-weight: 500;
  opacity: .85;
}

.pp-hero-sub {
  font: 400 18px/1.55 'Poppins', sans-serif;
  color: #190750;
  opacity: .86;
  max-width: 760px;
  margin: 0 0 28px;
  animation: pp-rise .9s cubic-bezier(.22, .7, .2, 1) .16s both;
  text-wrap: balance;
}

.pp-hero-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  animation: pp-rise .9s cubic-bezier(.22, .7, .2, 1) .22s both;
}

.pp-hero-cta .tw-btn-primary {
  padding: 15px 28px;
  font-size: 15px;
}

.pp-hero-jump {
  font: 600 14px/1 'Poppins', sans-serif;
  color: #190750;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
}

.pp-hero-jump:hover {
  color: #3E5EE2;
}

@keyframes pp-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* hero stat band below CTAs */
.pp-hero-stat-band {
  margin-top: 56px;
  padding: 22px 32px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border: 1px solid #DCE2FA;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(25, 7, 80, .08);
  animation: pp-rise 1s cubic-bezier(.22, .7, .2, 1) .35s both;
  position: relative;
  z-index: 2;
}

.pp-hero-stat-num {
  font: 600 56px/.9 'Poppins', sans-serif;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #3E5EE2 0%, #7526C5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.pp-hero-stat-cap {
  font-size: 14px;
  line-height: 1.45;
  color: #190750;
  text-align: left;
  max-width: 380px;
}

/* Floating cards */
.pp-float {
  position: absolute;
  z-index: 1;
  background: #fff;
  border: 1px solid #EDF0FC;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(25, 7, 80, .08);
  font-family: 'Poppins', sans-serif;
  color: #190750;
  animation: pp-float-y 7s ease-in-out infinite alternate, pp-float-in .8s cubic-bezier(.22, .7, .2, 1) both;
}

@keyframes pp-float-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pp-float-y { from { transform: translateY(0); } to { transform: translateY(-10px); } }

.pp-float-a { left: 6%;  top: 110px; animation-delay: 0s, .5s; }
.pp-float-b { right: 8%; top: 90px;  animation-delay: 0s, .7s; }
.pp-float-c { left: 4%;  bottom: 110px; animation-delay: 0s, .9s; }
.pp-float-d { right: 5%; bottom: 140px; animation-delay: 0s, 1.1s; }

.pp-float-tag {
  font: 600 12px/1 'Poppins', sans-serif !important;
  letter-spacing: .14em;
  color: #3E5EE2;
  margin-bottom: 6px;
  text-transform: none !important;
}

.pp-float-num {
  font: 700 24px/1 'Poppins', sans-serif;
  background: linear-gradient(135deg, #3E5EE2, #7526C5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 4px;
}

.pp-float-cap {
  font-size: 11.5px;
  line-height: 1.3;
  color: #505D70;
}

@media (max-width: 1024px) {
  .pp-float { display: none; }
  .pp-hero { padding: 80px 24px 60px; min-height: auto; }
}

@media (max-width: 768px) {
  .pp-hero h1 { font-size: 48px; }
  .pp-hero-stat-band { display: flex; flex-direction: column; border-radius: 24px; padding: 20px; gap: 14px; text-align: center; }
  .pp-hero-stat-cap { text-align: center; }
}

/* iPad */
@media (max-width: 1024px) {
  .pp-float { display: none; }
  .pp-hero { padding: 72px 40px 60px; min-height: auto; }
  .pp-hero h1 { font-size: 42px !important; }
  .pp-hero-sub { font-size: 16px; }
  .pp-hero-stat-band { padding: 18px 28px; gap: 20px; }
  .pp-hero-stat-num { font-size: 44px; }
}

/* Mobile */
@media (max-width: 767px) {
  .pp-hero { padding: 52px 20px 44px; }
  .pp-hero h1 { font-size: 32px !important; letter-spacing: -.015em; margin: 16px 0 14px; }
  .pp-hero-sub { font-size: 15px; margin-bottom: 22px; }
  .pp-hero-eyebrow { font-size: 11px !important; padding: 7px 14px 7px 7px; }
  .pp-hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .pp-hero-cta .tw-btn-primary { text-align: center; justify-content: center; }
  .pp-hero-jump { justify-content: center; }
  .pp-hero-stat-band { display: flex; flex-direction: column; border-radius: 20px; padding: 18px 20px; gap: 12px; text-align: center; width: 100%; box-sizing: border-box; }
  .pp-hero-stat-num { font-size: 40px; }
  .pp-hero-stat-cap { text-align: center; font-size: 13px; }
}
