/* Thank You page (no header/footer) */
.thankyou-section{
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px) 0;
  background:
    radial-gradient(900px 260px at 50% -10%, rgba(93,211,255,.10), transparent 60%),
    radial-gradient(900px 260px at 50% 110%, rgba(138,255,193,.08), transparent 60%);
}

.thankyou-container{
  width: min(740px, 100% - 32px);
  margin-inline: auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding: clamp(16px, 3vw, 28px);
}

.thankyou-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 10px 0;
  text-shadow: 0 2px 14px rgba(93,211,255,.15);
}

.thankyou-message{
  color: var(--muted);
  margin: 0 0 14px 0;
}

/* Reuse global .cta-button; just add spacing here */
.thankyou-container .cta-button{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
}
/* FIX: style the Return button like our CTA */
.thankyou-container .cta-button,
.thankyou-container .cta-button:visited{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(93,211,255,.16), rgba(93,211,255,.08));
  color: #eaf6ff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .2px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.20);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  margin-top: 8px;
}

.thankyou-container .cta-button:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(93,211,255,.22), rgba(93,211,255,.10));
  box-shadow: 0 8px 24px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.24);
}

.thankyou-container .cta-button:active{
  transform: translateY(0);
}

.thankyou-container .cta-button:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Mobile: full-width CTA for easier tap */
@media (max-width: 520px){
  .thankyou-container .cta-button{ width: 100%; }
}
