.thank-you-main {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

.thank-you-section {
  width: 100%;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

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

.thank-you-card {
  max-width: 640px;
  width: 100%;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(250, 204, 107, 0.16), transparent 60%),
              var(--color-background-elevated);
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(148, 163, 184, 0.35);
  text-align: left;
}

.thank-you-eyebrow {
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-3);
}

.thank-you-title {
  margin-bottom: var(--space-4);
}

.thank-you-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.thank-you-text {
  margin-bottom: var(--space-4);
}

.thank-you-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

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

@media (max-width: 767px) {
  .thank-you-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .thank-you-card {
    padding: var(--space-6);
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
