.fxph {
  font-family: 'Poppins', sans-serif;
  background: #000;
  margin-top: -108px;
  padding: calc(108px + 4rem) 6vw 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

/* Glow */
.fxph::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 50vw;
  background: radial-gradient(circle, rgba(245,196,0,.12) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0; pointer-events: none;
}

/* Grain */
.fxph::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4; pointer-events: none; z-index: 0;
}

.fxph__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}

.fxph__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,214,0,.7);
  border: 1px solid rgba(255,214,0,.15);
  border-radius: 50px;
  padding: .5rem 1.25rem;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  background: rgba(255,214,0,.04);
  animation: fxphUp .8s cubic-bezier(.16,1,.3,1) both;
}
.fxph__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #FFD600; border-radius: 50%;
  animation: fxphPulse 2s infinite;
}
@keyframes fxphPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.7); }
}
@keyframes fxphUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

.fxph__title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.045em; color: #fff;
  margin-bottom: .4em;
  animation: fxphUp .9s .1s cubic-bezier(.16,1,.3,1) both;
}
.fxph__title em {
  font-style: normal; color: #FFD600;
  display: block; line-height: 1;
}

.fxph__sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.45);
  max-width: 46ch; line-height: 1.75; letter-spacing: .01em;
  animation: fxphUp .9s .2s cubic-bezier(.16,1,.3,1) both;
}

@media (max-width: 768px) {
  .fxph {
    padding: calc(72px + 2rem) 1.25rem 2.5rem;
    margin-top: -72px;
    align-items: flex-start;
    text-align: left;
  }
}
