/* ============================================================
   Steps — titles, fields, choices, uploads, callouts
   ============================================================ */
h1 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.hint {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 32px;
}

/* Interstitial "info" step media */
.info-media {
  display: flex;
  justify-content: center;
  margin: 8px 0 24px;
}
.info-media img {
  width: 180px;
  max-width: 60%;
  height: auto;
  display: block;
}

/* Fields */
.field {
  width: 100%;
  font-size: 18px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  background: var(--field-bg);
  color: var(--fg);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .15s ease;
}
.field:focus { border-color: var(--brand); }
.field::placeholder { color: var(--muted); }

/* Choices */
.choices { display: flex; flex-direction: column; gap: 12px; }
.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 18px 20px;
  border: 1.5px solid var(--line);
  background: var(--field-bg);
  color: var(--fg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s ease;
}
.choice:hover { border-color: var(--brand); }
.choice.selected {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.choice-emoji { font-size: 22px; line-height: 1; flex-shrink: 0; }
.choice-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.choice-label { font-size: 18px; }
.choice-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.choice-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}
.choice-radio svg { width: 22px; height: 22px; }
.choice.selected .choice-radio { border-color: transparent; color: var(--accent); }

/* Insight callout */
.insight {
  display: flex;
  gap: 10px;
  margin-top: var(--space-4);
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--field-bg);
  border-radius: var(--radius);
}
.insight-emoji { font-size: 20px; flex-shrink: 0; line-height: 1.3; }
.insight-body { display: flex; flex-direction: column; gap: 3px; }
.insight-body strong { font-size: 14px; }
.insight-body span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Upload */
.upload {
  display: block;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  transition: border-color .15s ease;
  position: relative;
  overflow: hidden;
}
.upload:hover { border-color: var(--brand); }
.upload-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.upload-cam {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--line);
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
/* Circular example photo (left column of the checklist) */
.upload-example {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.upload-example-ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  padding: 4px;
  background: var(--bg);
  box-shadow: 0 0 0 2px var(--brand), 0 6px 18px rgb(0 0 0 / .12);
}
.upload-example-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.upload-title { font-size: 16px; font-weight: 600; color: var(--fg); }
.upload-sub { font-size: 14px; color: var(--muted); }
.upload-formats { font-size: 12px; color: var(--muted); }

/* Photo checklist */
.checklist {
  margin-top: var(--space-4);
  padding: 16px 18px;
  border: 1.5px solid var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* When an example photo is present: example left, checklist right */
.checklist.has-example {
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.checklist.has-example .checklist-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.check-row { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.check-row .ci { display: inline-flex; flex-shrink: 0; }
.check-row .ci.ok { color: #22c55e; }
.check-row .ci.no { color: var(--accent); }
.upload-preview {
  display: none;
  max-width: 100%;
  max-height: 220px;
  border-radius: 10px;
}
.upload.has-image .upload-inner { display: none; }
.upload.has-image .upload-preview { display: inline-block; }

/* Tip callout */
.tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: var(--space-4);
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--field-bg);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.tip-icon { flex-shrink: 0; }

/* Error */
.error {
  display: block;
  color: var(--brand);
  font-size: 15px;
  min-height: 20px;
  margin-top: 10px;
}
