.page-cta {
  width: min(1272px, calc(100% - 48px));
  margin: 0 auto 96px;
  padding: clamp(34px, 4.5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  color: #f3f3f3;
  background:
    radial-gradient(circle at 90% 25%, rgba(88, 122, 225, .11), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)),
    #0b0b0c;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .24);
}

.page-cta.page-cta-narrow {
  width: min(1180px, calc(100% - 48px));
}

.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.page-cta-copy { max-width: 690px; }

.page-cta h2 {
  margin: 0;
  color: #f3f3f3;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: clamp(29px, 3.4vw, 46px);
  font-weight: 520;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.page-cta-text {
  max-width: 58ch;
  margin: 16px 0 0;
  color: #999;
  font-size: 15px;
  line-height: 1.65;
}

.page-cta-button {
  min-height: 44px;
  padding: 10px 14px 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 12px;
  color: #050505;
  background: #f3f3f3;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-cta-button svg {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: currentColor;
  background: transparent;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.page-cta-button:hover,
.page-cta-button:focus-visible {
  color: #050505;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  transform: translateY(-1px);
}

.page-cta-button:hover svg,
.page-cta-button:focus-visible svg {
  transform: translate(2px, -2px);
}

.page-cta-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .6);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .page-cta,
  .page-cta.page-cta-narrow {
    width: calc(100% - 32px);
    margin-bottom: 72px;
    grid-template-columns: 1fr;
    gap: 27px;
    border-radius: 16px;
  }

  .page-cta-button { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .page-cta-button,
  .page-cta-button svg { transition: none; }
}
