/* Thank You Page — dedicated styles (self-contained, does not depend on theme.css) */
.ty-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(160deg, #0a0a0f 0%, #0f0720 50%, #0a0a0f 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.ty-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ty-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.ty-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(52,211,153,.06) 0%, transparent 70%);
  bottom: -60px; right: -60px;
}
.ty-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: 28px;
  padding: 56px 52px;
  max-width: 680px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(12px);
}
.ty-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #34D399);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(52,211,153,.35);
  animation: tyPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes tyPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.ty-h {
  font-size: clamp(28px,5vw,42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ty-sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.ty-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52,211,153,.1);
  border: 1.5px solid rgba(52,211,153,.25);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #34D399;
  margin-bottom: 36px;
}
.ty-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.ty-step {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 14px;
  transition: .2s;
}
.ty-step:hover {
  border-color: rgba(124,58,237,.4);
  background: rgba(124,58,237,.07);
}
.ty-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(124,58,237,.2);
  border: 1.5px solid rgba(124,58,237,.4);
  color: #A78BFA;
  font-size: 14px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.ty-step-h {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.ty-step-p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.55;
}
.ty-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 32px 0;
}
.ty-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.ty-res {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: left;
  text-decoration: none;
  transition: .2s;
  display: block;
}
.ty-res:hover {
  border-color: rgba(124,58,237,.4);
  background: rgba(124,58,237,.07);
  transform: translateY(-2px);
}
.ty-res-ico { font-size: 24px; margin-bottom: 8px; }
.ty-res-h { font-size: 13.5px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.ty-res-p { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5; }

.ty-cta-row {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.ty-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 800;
  padding: 12px 22px; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none;
  font-family: inherit; transition: .18s; letter-spacing: -.2px; white-space: nowrap;
}
.ty-btn-v { background: #7C3AED; color: #fff; box-shadow: 0 4px 14px rgba(124,58,237,.3); }
.ty-btn-v:hover { background: #6D28D9; transform: translateY(-1px); }
.ty-btn-gold { background: #F5B731; color: #111; box-shadow: 0 4px 12px rgba(245,183,49,.3); }
.ty-btn-gold:hover { background: #D4981B; transform: translateY(-1px); }
.ty-btn-wh { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.2); }
.ty-btn-wh:hover { background: rgba(255,255,255,.18); }

.ty-social {
  display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap;
}
.ty-soc-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .15s;
}
.ty-soc-link:hover { color: #A78BFA; }

@media(max-width:600px) {
  .ty-card { padding: 36px 24px; }
  .ty-steps { grid-template-columns: 1fr; }
  .ty-resources { grid-template-columns: 1fr; }
}
