#product-intro {
  width: 100%;
  padding: 120px 24px;
  background: linear-gradient(135deg, #FFF5EE 0%, #EEF3FE 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}

.pi-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pi-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: #FF6A1F;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.pi-h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;

  /* Flowing color gradient — Yeyak brand palette */
  background: linear-gradient(
    90deg,
    #FF6A1F 0%,
    #FF3D7F 25%,
    #6B5BFF 50%,
    #0050FF 75%,
    #FF6A1F 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: pi-h2-flow 10s linear infinite;
}

@keyframes pi-h2-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .pi-h2 {
    animation: none;
    background-position: 0% 50%;
    color: #0A0A14;
    -webkit-text-fill-color: #0A0A14;
  }
}

.pi-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #5A5A6A;
  margin: 0 auto;
  max-width: 560px;
  font-weight: 400;
}

@media (max-width: 900px) {
  #product-intro {
    padding: 80px 24px;
  }
  .pi-h2 {
    font-size: 38px;
  }
  .pi-sub {
    font-size: 15px;
  }
}
