/* ==========================================================================
   AI Gateway — page hero (its own route: ai-gateway.html, reached from the
   Platform mega-menu). Page-level focal hero: big bold headline + supporting
   copy + solid/outline buttons on a soft warm panel. Reuses site tokens: blue
   accent gradient, Cabin type, the solid/outline button idiom. On-load rise +
   stagger reveal matches the site's motion (translateY + opacity, ~0.6s ease).
   ========================================================================== */

.pg-gw-hero {
  background-color: #f4f7fd;
  padding: 112px 0 120px;
}

.pg-gw-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.pg-gw-hero__kicker {
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0036fa, #4e87fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pg-gw-hero__title {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #12140f;
  max-width: 640px;
  margin-top: 22px;
}

.pg-gw-hero__subtitle {
  font-family: "Cabin", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #5a5a5a;
  max-width: 640px;
  margin-top: 26px;
}

.pg-gw-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.pg-gw-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.pg-gw-hero__btn--solid {
  background-image: linear-gradient(90deg, #0036fa 0%, #4e87fc 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 54, 250, 0.26);
}

.pg-gw-hero__btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 54, 250, 0.38);
  filter: brightness(1.04);
}

.pg-gw-hero__btn--outline {
  background-color: transparent;
  color: #12140f;
  border: 1px solid #cfcdc3;
}

.pg-gw-hero__btn--outline:hover {
  border-color: #0036fa;
  color: #0036fa;
  transform: translateY(-2px);
}

/* --- on-load rise + stagger (site motion language) --- */
@keyframes gw-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.pg-gw-hero__kicker,
.pg-gw-hero__title,
.pg-gw-hero__subtitle,
.pg-gw-hero__actions {
  opacity: 0;
  animation: gw-rise 0.7s ease forwards;
}

.pg-gw-hero__kicker { animation-delay: 0.05s; }
.pg-gw-hero__title { animation-delay: 0.15s; }
.pg-gw-hero__subtitle { animation-delay: 0.28s; }
.pg-gw-hero__actions { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .pg-gw-hero__kicker,
  .pg-gw-hero__title,
  .pg-gw-hero__subtitle,
  .pg-gw-hero__actions {
    opacity: 1;
    animation: none;
  }
}

/* --- responsive --- */
@media (max-width: 1040px) {
  .pg-gw-hero {
    padding: 88px 0 96px;
  }
  .pg-gw-hero__inner {
    padding: 0 24px;
  }
  .pg-gw-hero__title {
    font-size: 46px;
  }
}

@media (max-width: 600px) {
  .pg-gw-hero__title {
    font-size: 38px;
  }
  .pg-gw-hero__subtitle {
    font-size: 16px;
    line-height: 27px;
  }
  .pg-gw-hero__actions {
    flex-wrap: wrap;
  }
  .pg-gw-hero__btn {
    flex: 1 1 auto;
  }
}
