/* =========================
   Dermalion Labs — Thank You page
   ========================= */

/* Canvas */
.thankyou-section{
  /* full-height center, no horizontal scroll */
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 6vw, 96px) 0;
  overflow: hidden;

  /* brandy background: soft gradient + subtle glows (pure CSS, no extra DOM) */
  background:
    radial-gradient(60% 60% at 12% 10%, rgba(179,86,118,.08) 0%, transparent 60%),
    radial-gradient(60% 60% at 88% 90%, rgba(44,109,94,.08) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

/* Card */
.thankyou-container{
  width: min(860px, 92%);
  background: #fff;
  border: 1px solid var(--dl-line);
  border-radius: 16px;
  box-shadow: var(--dl-shadow);
  padding: clamp(18px, 3vw, 28px);
  text-align: center;
}

/* Typography */
.thankyou-title{
  font-family: "PrataDL", serif;
  margin: 0 0 .5rem;
}
.thankyou-message{
  margin: 0 auto 14px;
  max-width: 60ch;
  color: var(--dl-ink-2);
  line-height: 1.55;
  /* prevent ugly overflow on long words */
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Button: uses global .cta-button look; nudge spacing here */
.cta-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  text-decoration: none;
}

/* Responsive nits */
@media (max-width: 520px){
  .thankyou-container{ width: min(720px, 94%); }
  .thankyou-message{ line-height: 1.6; }
}
