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

.thank-you-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(243, 199, 104, 0.18), transparent 55%),
              radial-gradient(circle at bottom, rgba(31, 159, 107, 0.12), transparent 55%),
              rgba(10, 10, 14, 0.95);
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.thank-you-kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  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-muted);
}

.thank-you-note {
  font-size: var(--font-size-sm);
  color: var(--color-gray-200);
}

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

@media (max-width: 720px) {
  .thank-you-panel {
    padding: var(--space-6);
  }

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

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