/* Thank-you page — mirrors thankyou.html */

.ty-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
}

.ty-kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}

.ty-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.ty-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 640px;
}

.ty-title em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
}

.ty-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 28px;
}

.ty-text {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 48px;
}

.ty-text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.ty-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 480px) {
  .ty-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .ty-actions .hero-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
