/* ── Simple home-first UX ── */
.simple-app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

.main-header {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-center {
  text-align: center;
}

.header-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.header-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

.btn-text {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.btn-text:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.main-content {
  flex: 1;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.home-lead {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 32px;
  line-height: 1.5;
}

.action-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-card {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.action-card:hover {
  border-color: var(--dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.action-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fafdf0 0%, #fff 60%);
}

.action-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.action-icon.create { background: #dbeafe; }
.action-icon.extend { background: #e0e7ff; }
.action-icon.cap { background: #fef3c7; }
.action-icon.payout { background: #d1fae5; }

.action-body strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--text);
}

.action-body span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.action-arrow {
  margin-left: auto;
  font-size: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.wizard-shell {
  animation: fadeSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-progress {
  margin-bottom: 20px;
  text-align: center;
}

.wizard-progress .step-pill {
  display: inline-block;
  margin-bottom: 8px;
}

.wizard-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.wizard-card {
  padding: 0;
  overflow: hidden;
}

.wizard-card .wizard-body {
  padding: 28px 32px 24px;
}

.wizard-card.card-flush .wizard-body {
  padding: 0;
}

.wizard-alerts {
  margin: 0 32px 8px;
}

.wizard-summary {
  margin: 0 32px 16px;
  padding: 16px 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
}

.wizard-summary-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #166534;
  margin-bottom: 10px;
}

.wizard-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wizard-summary li {
  font-size: 14px;
  padding: 6px 0;
  color: #14532d;
  border-bottom: 1px solid rgba(22, 101, 52, 0.1);
}

.wizard-summary li:last-child {
  border-bottom: none;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  background: var(--surface-soft);
}

.form-hint-banner {
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-hint-banner b {
  color: var(--text);
}

.auto-name-preview {
  margin-top: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px dashed var(--border-strong);
  border-radius: 8px;
  font-size: 13px;
}

.auto-name-preview span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.auto-name-preview code {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
}

@media (max-width: 640px) {
  .main-header {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  .btn-text {
    justify-self: center;
  }
  .btn-text.hidden {
    display: none;
  }
  .wizard-card .wizard-body,
  .wizard-nav,
  .wizard-alerts,
  .wizard-summary {
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 0;
    margin-right: 0;
  }
}
