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

.thank-you-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(201, 161, 94, 0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(11, 107, 83, 0.18), transparent 55%),
              var(--color-surface);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.thank-you-eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  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);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.thank-you-text {
  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-4);
  margin-bottom: var(--space-6);
}

.thank-you-subnote-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.thank-you-subnote-text a {
  color: var(--color-primary);
}

.thank-you-subnote-text a:hover {
  color: #e2c07b;
}

@media (max-width: 768px) {
  .thank-you-main {
    align-items: flex-start;
  }

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

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

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