body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ══ MAIN ══ */
main {
  flex: 1;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2xl) var(--pad-x);
  position: relative;
  overflow: hidden;
}
main::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(42, 122, 120, 0.3);
  pointer-events: none;
}
main::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(42, 122, 120, 0.2);
  pointer-events: none;
}
.thank-you-inner {
  max-width: 640px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
}
.checkmark svg {
  width: 28px;
  height: 28px;
  stroke: var(--amber);
  stroke-width: 2.5;
  fill: none;
}
.thank-you-inner .section-eyebrow {
  justify-content: center;
}
.ty-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ty-headline em {
  font-style: italic;
  color: var(--teal-light);
}
.ty-body {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 40px;
}
.ty-divider {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 40px;
  opacity: 0.6;
}
.ty-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
/* ══ ANIMATIONS ══ */
.thank-you-inner > * {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}
.thank-you-inner > *:nth-child(1) {
  animation-delay: 0.1s;
}
.thank-you-inner > *:nth-child(2) {
  animation-delay: 0.2s;
}
.thank-you-inner > *:nth-child(3) {
  animation-delay: 0.32s;
}
.thank-you-inner > *:nth-child(4) {
  animation-delay: 0.44s;
}
.thank-you-inner > *:nth-child(5) {
  animation-delay: 0.54s;
}
.thank-you-inner > *:nth-child(6) {
  animation-delay: 0.62s;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 480px) {
  .ty-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-white,
  .btn-ghost {
    text-align: center;
  }
}
