/* ==========================================================================
   cta.css — closing call-to-action panel
   ========================================================================== */

.cta-section {
  margin: 0 48px 80px;
  border: 1px solid var(--border2);
  background: var(--surface);
  padding: 80px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'LUNAR';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  font-weight: 800;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.cta-text h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cta-text p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 15px;
}

.cta-actions { flex-shrink: 0; }
