* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: #101828;
  background: #f7f5f2;
}

.bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  background: radial-gradient(circle at 10% 10%, #ffe9cf, transparent 45%),
    radial-gradient(circle at 90% 15%, #e5f3ff, transparent 40%),
    radial-gradient(circle at 20% 80%, #f7d8ff, transparent 35%),
    #f7f5f2;
}

.orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.55;
  filter: blur(0px);
}

.orb-1 {
  width: 320px;
  height: 320px;
  left: -60px;
  top: 120px;
  background: linear-gradient(135deg, #ffb88c, #ff5f6d);
}

.orb-2 {
  width: 260px;
  height: 260px;
  right: 40px;
  top: 80px;
  background: linear-gradient(135deg, #7f7fd5, #86a8e7);
}

.orb-3 {
  width: 360px;
  height: 360px;
  right: 20%;
  bottom: -120px;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.kicker {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: #5d6b98;
}

h1 {
  margin: 8px 0 10px;
  font-size: 36px;
  line-height: 1.1;
}

.sub {
  margin: 0;
  max-width: 520px;
  color: #475467;
}

.stamp {
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d5dd;
  background: #ffffff;
  font-size: 14px;
}

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

.btn {
  background: #1f2a44;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  color: #1f2a44;
  border: 1px solid #d0d5dd;
  text-decoration: none;
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff3f3;
  border: 1px solid #fca5a5;
  color: #7f1d1d;
  font-size: 14px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #1f2a44;
  min-height: 44px;
}

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

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1f2a44, #475467);
  transition: width 0.6s ease;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  font-size: 11px;
  color: #667085;
  text-align: center;
}

.preview {
  display: flex;
  align-items: stretch;
}

.preview-card {
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.title {
  font-weight: 700;
}

.muted {
  font-size: 12px;
  color: #667085;
}

.placeholder {
  width: 100%;
  border: 1px dashed #d0d5dd;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  color: #667085;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

.placeholder-box {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f5f7, #eef1f6);
}

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr;
  }
}
