/* v4 onboarding refinements and mobile safeguards */
.seed-ob-body {
  overflow-x: hidden;
}

.seed-ob-body img,
.seed-ob-body svg {
  max-width: 100%;
}

.seed-ob-body select {
  appearance: auto;
}

.seed-panel,
.seed-choose-card,
.seed-success-panel {
  overflow-wrap: anywhere;
}

.seed-option-card,
.seed-module-row,
.seed-chip,
.seed-btn,
.seed-choose-card {
  -webkit-tap-highlight-color: transparent;
}

.seed-field input[type="number"] {
  appearance: textfield;
}

.seed-field input[type="number"]::-webkit-outer-spin-button,
.seed-field input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.seed-submit-msg {
  margin-top: 14px;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.seed-submit-msg.error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.seed-submit-msg.success {
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
}

@media (max-width: 980px) {
  .seed-ob-body {
    background: #f8fafc;
  }
  .seed-ob-mobile-header .seed-ob-logo {
    flex-shrink: 0;
  }
}

@media (max-width: 520px) {
  .seed-ob-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .seed-panel,
  .seed-success-panel {
    border-left: 0;
    border-right: 0;
    border-radius: 8px;
  }
  .seed-panel-title {
    font-size: 1.45rem;
  }
  .seed-panel-desc {
    font-size: 0.94rem;
  }
  .seed-label {
    font-size: 0.88rem;
  }
  .seed-input,
  .seed-select,
  .seed-textarea {
    font-size: 16px;
  }
}

/* ══════════════════════════════════════════════════════════
   v4.1 Onboarding enhancements — trust signals + path-finder quiz
   (inspired by TiE Women's clear "no fee / program journey" cues)
   ══════════════════════════════════════════════════════════ */

/* ── Generic trust bar (women/startup flows; mentor flow already
      has its own .mentor-trust-bar with the same visual language) ── */
.seed-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #065f46;
  box-shadow: 0 1px 3px rgba(6,95,70,0.06);
}
.seed-trust-bar span:nth-child(even) { color: #94a3b8; font-weight: 400; }

@media (max-width: 980px) {
  .seed-trust-bar { font-size: 0.76rem; gap: 6px 12px; }
}
@media (max-width: 520px) {
  .seed-trust-bar span:nth-child(even) { display: none; }
}

/* ── Anti-fraud / "stay safe" banner shown at review steps + hub ── */
.seed-safety-banner {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  box-shadow: 0 1px 3px rgba(146,64,14,0.06);
}
.seed-safety-banner span.seed-safety-ic { font-size: 1.15rem; line-height: 1; flex-shrink: 0; }
.seed-safety-banner p { margin: 0; color: #92400e; line-height: 1.55; font-size: 0.9rem; }
.seed-safety-banner p strong { color: #78350f; }
.seed-safety-banner a { font-weight: 800; color: #92400e; text-decoration: underline; }

.seed-choose-safety {
  max-width: 820px;
  margin: 32px auto 0;
}

/* ── Sidebar pillar-reminder chips (women/startup) ── */
.seed-sidebar-pillars {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.seed-sidebar-pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 980px) {
  .seed-sidebar-pillars { display: none; }
}

/* ── Founding-cohort micro note on the hub ── */
.seed-choose-founding-note {
  margin: 18px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--seed-purple-dark);
}

/* ── "Not sure which path?" quiz ── */
.seed-quiz-toggle-wrap {
  max-width: 780px;
  margin: 26px auto 0;
}
.seed-quiz-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  border: 1.5px dashed #B9D2EF;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  color: var(--seed-purple-dark);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.seed-quiz-toggle:hover { background: #eff5fc; border-color: var(--seed-purple); }
.seed-quiz-toggle-cta { color: var(--seed-purple); font-weight: 900; white-space: nowrap; }

.seed-quiz-card {
  position: relative;
  max-width: 640px;
  margin: 22px auto 0;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--seed-line);
  border-radius: 8px;
  box-shadow: var(--seed-shadow);
  animation: seedPanelIn 0.3s ease both;
}
.seed-quiz-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--seed-line);
  background: #f8fafc;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}
.seed-quiz-eyebrow {
  color: var(--seed-purple);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.seed-quiz-step { display: none; }
.seed-quiz-step.active { display: block; }
.seed-quiz-card h3 { margin: 0 0 18px; font-size: 1.3rem; line-height: 1.25; }
.seed-quiz-options { display: grid; gap: 10px; }
.seed-quiz-option {
  text-align: left;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1e293b;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.seed-quiz-option:hover { border-color: var(--seed-purple); background: #f8faff; transform: translateY(-1px); }
.seed-quiz-option:focus-visible { outline: 3px solid var(--seed-purple); outline-offset: 2px; }

.seed-quiz-result { text-align: center; }
.seed-quiz-result-icon { font-size: 2.4rem; margin-bottom: 6px; }
.seed-quiz-result p { color: var(--seed-muted); line-height: 1.65; margin: 0 0 20px; }
.seed-quiz-result .seed-btn { display: inline-flex; margin: 0 0 12px; }
.seed-quiz-retake {
  display: block;
  margin: 4px auto 0;
  background: none;
  border: none;
  color: var(--seed-muted);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 640px) {
  .seed-quiz-toggle { flex-direction: column; align-items: flex-start; border-radius: 16px; text-align: left; gap: 4px; }
  .seed-quiz-card { padding: 24px 18px; margin-left: 12px; margin-right: 12px; }
}
