/* Website Builder — builder UI styles */

.builder-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px;
}

.builder-header {
  margin-bottom: 32px;
}

.builder-header .step-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400e;
  margin-bottom: 8px;
}

.builder-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}

.builder-header p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Headshot Section */
.headshot-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.headshot-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.headshot-drop-zone {
  width: 200px;
  height: 200px;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}

.headshot-drop-zone:hover,
.headshot-drop-zone.drag-over {
  border-color: #f59e0b;
  background: #fffbeb;
}

.headshot-drop-zone.has-image {
  border-style: solid;
  border-color: #cbd5e1;
}

.headshot-drop-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headshot-drop-zone .upload-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 20px 8px 8px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.15s;
}

.headshot-drop-zone:hover .upload-hint {
  opacity: 1;
}

.headshot-drop-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-icon {
  width: 40px;
  height: 40px;
  color: #94a3b8;
}

.upload-label {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  line-height: 1.5;
}

.headshot-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.btn-generate-headshot {
  width: 100%;
  padding: 10px 16px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-generate-headshot:hover { background: #1e293b; }
.btn-generate-headshot:disabled { background: #94a3b8; cursor: not-allowed; }

.btn-download-headshot {
  width: 100%;
  padding: 10px 16px;
  background: #fff;
  color: #0f172a;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: none;
}

.btn-download-headshot.visible { display: block; }

.headshot-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.headshot-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

.headshot-info p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.headshot-tips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.headshot-tips li {
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.headshot-tips li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.status-badge.processing {
  background: #fef9c3;
  color: #854d0e;
}

.status-badge.complete {
  background: #dcfce7;
  color: #166534;
}

.status-badge.failed {
  background: #fee2e2;
  color: #991b1b;
}

/* AI Generation Section */
.generate-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.generate-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.generate-section > p {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 20px;
}

.btn-generate-site {
  padding: 14px 28px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.btn-generate-site:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.btn-generate-site:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Preview + Edit Section */
.edit-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

.preview-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.preview-header span {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.preview-frame {
  width: 100%;
  height: 500px;
  border: none;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
}

/* Customization Panel */
.customize-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.customize-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}

.customize-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.theme-swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.theme-swatch {
  padding: 8px 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.15s;
  background: #fff;
}

.theme-swatch:hover { border-color: #f59e0b; }
.theme-swatch.active { border-color: #f59e0b; background: #fffbeb; }

.font-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.font-option {
  padding: 8px 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.15s;
  background: #fff;
}

.font-option:hover { border-color: #f59e0b; }
.font-option.active { border-color: #f59e0b; background: #fffbeb; }

/* Edit fields in customize panel */
.edit-field {
  margin-bottom: 12px;
}

.edit-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.edit-field input,
.edit-field textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.edit-field input:focus,
.edit-field textarea:focus {
  outline: none;
  border-color: #f59e0b;
}

.edit-field textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-regenerate {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #0f172a;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
}

.btn-regenerate:hover { border-color: #f59e0b; }

/* Publish Section */
.publish-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.publish-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}

.publish-section p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

.btn-publish {
  padding: 12px 28px;
  background: #f59e0b;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s;
}

.btn-publish:hover { transform: translateY(-1px); }
.btn-publish:disabled { background: #475569; color: #94a3b8; cursor: not-allowed; }

.publish-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.publish-link span {
  font-size: 13px;
  color: #e2e8f0;
}

.publish-link a {
  color: #f59e0b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* Spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 20px;
  background: #0f172a;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  animation: slideUp 0.3s ease;
}

.toast.success { background: #166534; }
.toast.error { background: #991b1b; }

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Hidden / states */
.hidden { display: none !important; }

/* Responsive */
@media (max-width: 768px) {
  .headshot-section { grid-template-columns: 1fr; }
  .edit-section { grid-template-columns: 1fr; }
  .publish-section { flex-direction: column; }
}

/* Paywall Banner */
.paywall-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1.5px solid #f59e0b;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.paywall-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.paywall-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.paywall-badge {
  font-size: 28px;
  flex-shrink: 0;
}

.paywall-left h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.paywall-left p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.btn-upgrade {
  padding: 12px 24px;
  background: #f59e0b;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s, opacity 0.15s;
}

.btn-upgrade:hover { transform: translateY(-1px); }
.btn-upgrade:disabled { background: #475569; color: #94a3b8; cursor: not-allowed; }

/* Share Section */
.share-section {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

.share-header {
  margin-bottom: 16px;
}

.share-header span {
  font-size: 15px;
  font-weight: 700;
  color: #f59e0b;
}

.share-header p {
  font-size: 13px;
  color: #94a3b8;
  margin: 4px 0 0;
}

.share-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

.share-card-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.share-card-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.share-card-desc {
  font-size: 12px;
  color: #64748b;
  margin-top: 1px;
}

.btn-share {
  margin-left: auto;
  padding: 6px 14px;
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}

.btn-share:hover { background: rgba(245,158,11,0.25); }

@media (max-width: 768px) {
  .paywall-content { flex-direction: column; align-items: flex-start; }
  .btn-upgrade { width: 100%; text-align: center; }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover { background: #e2e8f0; }

.modal-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.modal-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.modal-subhead {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 20px;
  line-height: 1.6;
}

.modal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-features li {
  font-size: 14px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-modal-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
  transition: transform 0.1s, opacity 0.15s;
  margin-bottom: 10px;
}

.btn-modal-primary:hover { transform: translateY(-1px); }
.btn-modal-primary:disabled { background: #cbd5e1; color: #94a3b8; cursor: not-allowed; transform: none; }

.btn-modal-secondary {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: #64748b;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 12px;
}

.modal-note {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

/* Inactive site banner */
.inactive-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fffbeb;
  border: 1.5px solid #f59e0b;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.inactive-banner-icon { font-size: 22px; flex-shrink: 0; }

.inactive-banner-text {
  flex: 1;
  font-size: 14px;
  color: #92400e;
  line-height: 1.5;
}

.inactive-banner-text strong { font-weight: 700; }

.inactive-banner-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s, box-shadow 0.1s;
}

.inactive-banner-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Before/After Headshot Comparison */
.before-after {
  width: 100%;
  margin-top: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.before-after-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ba-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.ba-label-after { color: #16a34a; }

.ba-divider {
  font-size: 16px;
  color: #cbd5e1;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.ba-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

.ba-img:last-child { border-color: #16a34a; }

.ba-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.btn-ba-retry {
  padding: 6px 14px;
  background: #fff;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s;
}

.btn-ba-retry:hover { border-color: #f59e0b; color: #0f172a; }

/* Grace countdown banner */
.grace-countdown {
  background: #fffbeb;
  border: 1.5px solid #f59e0b;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #92400e;
}

.grace-icon { font-size: 22px; flex-shrink: 0; }
.grace-text { flex: 1; line-height: 1.5; }
.grace-text strong { font-weight: 700; }
.grace-days { font-weight: 800; font-size: 15px; color: #92400e; white-space: nowrap; }

/* Publish celebration screen */
.celebration-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 24px;
  color: #fff;
}

.celebration-banner h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}

.celebration-banner .celebration-emoji { font-size: 48px; margin-bottom: 8px; }

.celebration-url {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 18px;
  margin: 16px 0;
}

.celebration-url a {
  color: #f59e0b;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.celebration-url a:hover { text-decoration: underline; }

.celebration-copy {
  background: none;
  border: 1px solid rgba(245,158,11,0.4);
  color: #f59e0b;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.celebration-copy:hover { background: rgba(245,158,11,0.15); }

.celebration-share {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  text-decoration: none;
  text-align: left;
}

.share-btn:hover { background: rgba(255,255,255,0.12); }

.share-btn-icon { font-size: 18px; flex-shrink: 0; }
.share-btn-label { font-size: 14px; }
.share-btn-desc { font-size: 11px; color: #64748b; margin-top: 1px; }

/* Onboarding start page specific */
.builder-start-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(245,158,11,0.4);
  transition: transform 0.1s;
  border: none;
  font-family: inherit;
}

.builder-start-btn:hover { transform: translateY(-1px); }

/* Flow Indicator */
.builder-flow-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.builder-flow-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.builder-flow-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.builder-flow-step.done .builder-flow-step-number {
  background: #16a34a;
  color: #fff;
}

.builder-flow-step.active .builder-flow-step-number {
  background: #f59e0b;
  color: #0f172a;
}

.builder-flow-step.pending .builder-flow-step-number {
  background: #e2e8f0;
  color: #94a3b8;
}

.builder-flow-step-label {
  font-size: 12px;
  font-weight: 600;
  margin-left: 6px;
  transition: color 0.2s;
}

.builder-flow-step.done .builder-flow-step-label { color: #16a34a; }
.builder-flow-step.active .builder-flow-step-label { color: #0f172a; }
.builder-flow-step.pending .builder-flow-step-label { color: #94a3b8; }

.builder-flow-connector {
  width: 48px;
  height: 2px;
  background: #e2e8f0;
  margin: 0 8px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.builder-flow-connector.done { background: #16a34a; }
.builder-flow-connector.active { background: #f59e0b; }

/* Build Entry CTA */
.build-entry-cta {
  margin-bottom: 24px;
}

.entry-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 12px;
}

.entry-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.entry-cta-icon { font-size: 40px; flex-shrink: 0; }

.entry-cta-left h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.entry-cta-left p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.55;
}

.entry-cta-sub {
  text-align: center;
  padding: 0 8px;
}

.entry-cta-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: #1e293b;
  color: #94a3b8;
  border: 1px solid #334155;
}

.flow-pill-highlight {
  background: #f59e0b;
  color: #0f172a;
  border-color: #f59e0b;
}

.flow-arrow { color: #475569; font-size: 14px; }

@media (max-width: 640px) {
  .entry-cta-card { flex-direction: column; align-items: flex-start; }
  .entry-cta-card .btn-upgrade { width: 100%; text-align: center; }
}