/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.ty-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  background: var(--surface);
  background-image:
    linear-gradient(rgba(22, 33, 46, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 46, .045) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ty-inner {
  max-width: 540px;
  margin: 0 auto;
}

.ty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.ty-icon svg {
  width: 100%;
  height: 100%;
}

.ty-heading {
  font-size: clamp(34px, 5vw, 56px);
  margin-top: 14px;
}

.ty-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted-dark);
  max-width: 42ch;
  margin: 18px auto 0;
}

.ty-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

@media (max-width: 480px) {
  .ty-page { padding: 60px 24px; }

  .ty-links {
    flex-direction: column;
    align-items: stretch;
  }
}
