/* Thank You — full-page confirmation after form submit */

.thankYouSection {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy, #000a1f) 0%, #020814 100%);
  text-align: center;
}

.thankYouSection__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.06) 50%,
    transparent 100%
  );
  animation: thankYouShimmer 8s ease-in-out infinite;
}

.thankYouSection__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
}

.thankYouSection__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  color: var(--blue3, #60a5fa);
  animation: thankYouFadeUp 0.8s ease both;
}

.thankYouSection__icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.thankYouSection__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue3, #60a5fa);
  margin: 0 0 1rem;
  animation: thankYouFadeUp 0.8s 0.1s ease both;
}

.thankYouSection__title {
  font-family: var(--fontHeading, "Playfair Display", Georgia, serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--white, #fff);
  line-height: 1.15;
  margin: 0 0 1rem;
  animation: thankYouFadeUp 0.8s 0.18s ease both;
}

.thankYouSection__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--light, #cdd8eb);
  margin: 0 auto 2.25rem;
  max-width: 440px;
  animation: thankYouFadeUp 0.8s 0.26s ease both;
}

.thankYouSection__btn {
  animation: thankYouFadeUp 0.8s 0.34s ease both;
}

.thankYouSection__btnArrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.thankYouSection__btnArrow svg {
  width: 12px;
  height: 12px;
  display: block;
}

@keyframes thankYouFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes thankYouShimmer {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .thankYouSection {
    padding: 4rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thankYouSection__glow,
  .thankYouSection__icon,
  .thankYouSection__label,
  .thankYouSection__title,
  .thankYouSection__body,
  .thankYouSection__btn {
    animation: none;
  }
}
