 .thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(80px + var(--space-10));
  padding-bottom: var(--space-16);
}

.thank-you__container {
  display: flex;
  justify-content: center;
}

.thank-you__card {
  max-width: 720px;
  width: 100%;
  padding: var(--space-10) var(--space-8);
  text-align: left;
}

.thank-you__title {
  font-size: clamp(var(--font-size-3xl), 3.4vw, var(--font-size-5xl));
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

.thank-you__lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.thank-you__body {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-soft);
  margin-bottom: var(--space-6);
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.thank-you__btn-main {
  flex-shrink: 0;
}

.thank-you__btn-secondary {
  flex-shrink: 0;
}

.thank-you__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.thank-you__text-link {
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.thank-you__text-link::after {
  content: "\2197";
  margin-left: 0.4rem;
  font-size: 0.7em;
  opacity: 0.7;
}

.thank-you__text-link:hover {
  color: var(--color-primary-strong);
}

@media (max-width: 768px) {
  .thank-you {
    padding-top: calc(72px + var(--space-8));
    padding-bottom: var(--space-12);
  }

  .thank-you__card {
    padding: var(--space-8) var(--space-4);
  }

  .thank-you__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thank-you__btn-main,
  .thank-you__btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
