/* SEED onboarding flow */
:root {
  --seed-purple: #144e92;
  --seed-purple-dark: #0b2c57;
  --seed-pink: #db2777;
  --seed-green: #059669;
  --seed-ink: #0f172a;
  --seed-muted: #64748b;
  --seed-line: #e2e8f0;
  --seed-soft: #f8fafc;
  --seed-card: #ffffff;
  --seed-focus: 0 0 0 4px rgba(20, 78, 146, 0.16);
  --seed-shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
}

* { box-sizing: border-box; }

.seed-ob-body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--seed-ink);
  background: #f6f7fb;
  -webkit-font-smoothing: antialiased;
}

.seed-ob-body a { color: inherit; text-decoration: none; }
.seed-ob-body button,
.seed-ob-body input,
.seed-ob-body select,
.seed-ob-body textarea { font: inherit; }

.seed-ob-page {
  min-height: 100vh;
}

.ob-main {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
}

.seed-ob-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 28px 22px;
  color: #fff;
  background: linear-gradient(180deg, #081B39 0%, #0f3d75 58%, #144e92 100%);
}

.seed-ob-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.seed-ob-logo-name { font-size: 1.08rem; }

.seed-ob-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 20px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.seed-ob-type-badge,
.seed-choose-card-badge,
.seed-choose-card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.seed-badge-women { background: #fce7f3; color: #be185d; }
.seed-badge-startup { background: #dcfce7; color: #047857; }

.seed-ob-sidebar-title {
  margin: 18px 0 8px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.15;
}

.seed-ob-sidebar-sub {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
  font-size: 0.95rem;
}

.seed-steps-nav {
  display: grid;
  gap: 10px;
}

.seed-step-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

/* Connecting "journey" line between step circles, echoing a numbered
   program-journey timeline */
.seed-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 100%;
  width: 2px;
  height: 10px;
  background: rgba(255,255,255,0.16);
}

.seed-step-item.completed:not(:last-child)::after {
  background: rgba(134,239,172,0.55);
}

.seed-step-item.active {
  background: #fff;
  color: var(--seed-purple-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.seed-step-circle {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  font-size: 0.82rem;
  font-weight: 900;
}

.seed-step-item.active .seed-step-circle {
  background: var(--seed-purple);
  color: #fff;
}

.seed-step-item.completed {
  cursor: pointer;
}

.seed-step-item.completed:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}

.seed-step-label strong,
.seed-step-label span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seed-step-label strong { font-size: 0.84rem; }
.seed-step-label span { margin-top: 1px; color: rgba(255,255,255,0.68); font-size: 0.72rem; }
.seed-step-item.active .seed-step-label span { color: var(--seed-muted); }

.seed-progress-card {
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

.seed-progress-label,
.seed-progress-pct {
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(255,255,255,0.84);
}

.seed-progress-track,
.seed-ob-mobile-bar {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  margin: 10px 0;
}

.seed-progress-fill,
.seed-ob-mobile-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #144E92, #3E9BD9);
  transition: width 0.25s ease;
}

.seed-draft-tick {
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #8AB4E3;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.seed-draft-tick.show { opacity: 1; transform: translateY(0); }

.seed-ob-mobile-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 10;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--seed-line);
  backdrop-filter: blur(14px);
}

.seed-ob-mobile-step-info { flex: 1; min-width: 0; }
.seed-ob-mobile-step-label {
  display: block;
  margin-bottom: 6px;
  color: var(--seed-muted);
  font-size: 0.76rem;
  font-weight: 800;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.seed-ob-mobile-bar { height: 6px; margin: 0; background: #dce9f7; }

.seed-ob-content {
  min-width: 0;
  padding: 34px;
}

.seed-ob-inner {
  max-width: 920px;
  margin: 0 auto;
}

.seed-panel,
.seed-success-panel {
  display: none;
  background: var(--seed-card);
  border: 1px solid var(--seed-line);
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--seed-shadow);
}

/* ── Draft resume banner ── */
.seed-draft-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #EFF5FC 0%, #DCE9F7 100%);
  border: 1.5px solid #B9D2EF;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
  animation: seedPanelIn 0.35s ease both;
}
.seed-draft-banner-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.seed-draft-banner-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.seed-draft-banner-text strong { font-size: 0.94rem; color: var(--seed-purple-dark); }
.seed-draft-banner-text span { font-size: 0.84rem; color: #334155; line-height: 1.5; }
.seed-draft-banner-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.seed-draft-btn {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.seed-draft-btn:hover { transform: translateY(-1px); }
.seed-draft-btn-primary { background: var(--seed-purple); color: #fff; border: none; }
.seed-draft-btn-ghost { background: transparent; color: #334155; border: 1.5px solid #B9D2EF; }

@media (max-width: 640px) {
  .seed-draft-banner { flex-direction: column; }
  .seed-draft-banner-actions { width: 100%; }
  .seed-draft-btn { flex: 1; text-align: center; }
}

.seed-panel.active,
.seed-success-panel.active { display: block; animation: seedPanelIn 0.38s cubic-bezier(0.22,1,0.36,1) both; }

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

@media (prefers-reduced-motion: reduce) {
  .seed-panel.active,
  .seed-success-panel.active { animation: none; }
}

.seed-panel-eyebrow {
  color: var(--seed-purple);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.seed-panel-title {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.seed-panel-desc {
  margin: 12px 0 28px;
  color: var(--seed-muted);
  line-height: 1.7;
  max-width: 720px;
}

.seed-field-group {
  display: grid;
  gap: 22px;
}

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

.seed-label {
  display: block;
  margin-bottom: 8px;
  color: #1e293b;
  font-weight: 800;
  font-size: 0.92rem;
}

.seed-req { color: #e11d48; }

.seed-input,
.seed-select,
.seed-textarea {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: var(--seed-ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.seed-textarea { min-height: 110px; resize: vertical; }
.seed-input:focus,
.seed-select:focus,
.seed-textarea:focus {
  border-color: var(--seed-purple);
  box-shadow: var(--seed-focus);
}

.seed-field.invalid .seed-input,
.seed-field.invalid .seed-select,
.seed-field.invalid .seed-textarea {
  border-color: #e11d48;
}

.seed-field.invalid .seed-chip-group {
  outline: 1.5px solid #e11d48;
  outline-offset: 4px;
  border-radius: 8px;
}

.seed-field.invalid .seed-option-grid {
  outline: 1.5px solid #e11d48;
  outline-offset: 6px;
  border-radius: 10px;
}

.seed-field-error {
  min-height: 18px;
  margin-top: 5px;
  color: #be123c;
  font-size: 0.78rem;
  font-weight: 700;
}

.seed-field-hint {
  margin-top: 6px;
  color: var(--seed-muted);
  font-size: 0.78rem;
}

.seed-input-prefix-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.seed-input-prefix {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 900;
  border-right: 1px solid #cbd5e1;
}

.seed-input-prefix-wrap .seed-input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.seed-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--seed-purple-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.seed-section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--seed-line);
}

.seed-info-banner {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #eff5fc;
  border: 1px solid #b9d2ef;
}

.seed-info-banner p {
  margin: 0;
  color: #0b2c57;
  line-height: 1.55;
  font-size: 0.9rem;
}

.seed-option-grid {
  display: grid;
  gap: 12px;
}
.seed-option-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.seed-option-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.seed-option-card,
.seed-module-row {
  position: relative;
  display: block;
  border: 1.5px solid var(--seed-line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.seed-option-card:hover,
.seed-module-row:hover {
  border-color: #8ab4e3;
  box-shadow: 0 10px 28px rgba(20,78,146,0.10);
}

.seed-option-card input,
.seed-module-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seed-option-card:has(input:checked),
.seed-module-row:has(input:checked) {
  border-color: var(--seed-purple);
  background: #eff5fc;
}

.seed-option-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
}

.seed-option-card:has(input:checked) .seed-option-check {
  border-color: var(--seed-purple);
  background: radial-gradient(circle, var(--seed-purple) 45%, transparent 47%);
}

.seed-option-icon,
.seed-module-icon,
.seed-choose-card-icon {
  font-size: 1.7rem;
  line-height: 1;
}

.seed-option-title,
.seed-module-name {
  margin-top: 12px;
  color: #1e293b;
  font-weight: 900;
  line-height: 1.25;
}

.seed-option-sub,
.seed-module-desc {
  margin-top: 5px;
  color: var(--seed-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.seed-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seed-chip {
  min-height: 42px;
  border: 1.5px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  padding: 9px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.seed-chip:hover { border-color: var(--seed-purple); transform: translateY(-1px); }

.seed-chip.active {
  border-color: var(--seed-purple);
  background: var(--seed-purple);
  color: #fff;
}

.seed-chip.active:hover { background: var(--seed-purple-dark); border-color: var(--seed-purple-dark); }

.seed-module-list {
  display: grid;
  gap: 10px;
}

.seed-module-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.seed-module-info { min-width: 0; }
.seed-module-name { margin-top: 0; }

.seed-module-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
}

.seed-module-row:has(input:checked) .seed-module-toggle {
  border-color: var(--seed-purple);
  background: var(--seed-purple);
  box-shadow: inset 0 0 0 5px #fff;
}

/* Custom checkbox control — flexbox (not grid) so it always lays out
   correctly regardless of child count: native input is taken out of
   flow via absolute positioning, leaving just the visual box + text
   as the two flex children. (Previously a 2-column grid with 3 DOM
   children caused the label text to wrap into a 24px-wide column on
   the final "agree to terms" step of every onboarding flow.) */
.seed-check-label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.seed-check-label input[type="checkbox"] {
  position: absolute;
  top: 1px;
  left: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.seed-checkbox {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.seed-checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.16s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.seed-check-label:hover .seed-checkbox { border-color: var(--seed-purple); }
.seed-check-label:active .seed-checkbox { transform: scale(0.94); }

.seed-check-label input:checked ~ .seed-checkbox {
  background: var(--seed-purple);
  border-color: var(--seed-purple);
}

.seed-check-label input:checked ~ .seed-checkbox::after { transform: rotate(45deg) scale(1); }

.seed-check-label input:focus-visible ~ .seed-checkbox {
  box-shadow: var(--seed-focus);
  border-color: var(--seed-purple);
}

.seed-field.invalid .seed-check-label .seed-checkbox { border-color: #e11d48; }

.seed-check-text {
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.55;
  padding-top: 1px;
}

.seed-check-text a,
.seed-info-banner a {
  color: var(--seed-purple-dark);
  font-weight: 900;
  text-decoration: underline;
}

.seed-panel-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.seed-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.seed-btn:hover { transform: translateY(-1px); }
.seed-btn:disabled { opacity: 0.65; cursor: wait; transform: none; }

.seed-btn-primary {
  color: #fff;
  background: var(--seed-purple);
  box-shadow: 0 12px 28px rgba(20,78,146,0.25);
}

.seed-btn-primary:hover {
  background: var(--seed-purple-dark);
  box-shadow: 0 16px 36px rgba(20,78,146,0.32);
}

/* Final "Activate My SEED Profile" CTA — a touch more celebratory
   than a mid-flow "Next" button */
.seed-btn-submit {
  background: linear-gradient(120deg, #144e92, #0b2c57);
  font-size: 1rem;
  padding: 14px 26px;
  box-shadow: 0 14px 34px rgba(20,78,146,0.32);
}

.seed-btn-submit:hover:not(:disabled) {
  box-shadow: 0 18px 44px rgba(20,78,146,0.4);
}

.seed-btn-outline {
  color: var(--seed-purple);
  background: #fff;
  border: 1.5px solid var(--seed-purple);
}

.seed-review-sections {
  display: grid;
  gap: 12px;
}

.seed-review-card {
  border: 1px solid var(--seed-line);
  border-left: 3px solid var(--seed-purple);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fafafa;
  transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.seed-review-card:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(20,78,146,0.08);
  transform: translateY(-1px);
}

.seed-review-card strong {
  display: block;
  margin-bottom: 4px;
  color: #1e293b;
  font-size: 0.82rem;
}

.seed-review-card span {
  color: var(--seed-muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.seed-success-panel {
  text-align: center;
}

.seed-success-panel[style*="display:none"] { display: none !important; }
.seed-success-icon { font-size: 3rem; }
.seed-success-title {
  margin: 14px 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.seed-success-sub {
  max-width: 680px;
  margin: 0 auto 18px;
  color: var(--seed-muted);
  line-height: 1.75;
}
.seed-success-ref {
  color: var(--seed-purple-dark);
  font-weight: 900;
}
.seed-success-next {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Choose path page */
.seed-choose-page {
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(20,78,146,0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.seed-orb { display: none; }

.seed-choose-topbar {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.seed-choose-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seed-choose-topbar-link {
  color: var(--seed-muted);
  font-weight: 800;
}

.seed-choose-topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #dce9f7;
  color: var(--seed-purple-dark);
  font-weight: 900;
}

.seed-choose-hero {
  max-width: 820px;
  margin: 70px auto 34px;
  text-align: center;
}

.seed-choose-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid #b9d2ef;
  border-radius: 999px;
  color: var(--seed-purple-dark);
  background: #eff5fc;
  font-size: 0.8rem;
  font-weight: 900;
}

.seed-choose-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--seed-green);
}

.seed-choose-h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.25rem, 7vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.seed-choose-h1 em {
  color: var(--seed-purple);
  font-style: normal;
}

.seed-choose-sub {
  margin: 0 auto;
  max-width: 680px;
  color: var(--seed-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.seed-howit-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  max-width: 780px;
  margin: 30px auto 0;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var(--seed-line);
  border-radius: 999px;
  box-shadow: var(--seed-shadow);
}
.seed-howit-step { display: flex; align-items: center; gap: 8px; }
.seed-howit-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--seed-purple); color: #fff;
  font-size: 0.72rem; font-weight: 900; flex-shrink: 0;
}
.seed-howit-txt { font-size: 0.86rem; font-weight: 700; color: var(--seed-ink); white-space: nowrap; }
.seed-howit-arrow { color: #B9D2EF; font-weight: 700; }
.seed-howit-time {
  width: 100%;
  text-align: center;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--seed-muted);
  padding-top: 10px;
  border-top: 1px dashed var(--seed-line);
}

@media (max-width: 720px) {
  .seed-howit-strip { border-radius: 16px; padding: 16px; }
  .seed-howit-arrow { display: none; }
  .seed-howit-step { width: 100%; }
}

.seed-choose-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.seed-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seed-choose-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--seed-line);
  background: #fff;
  box-shadow: var(--seed-shadow);
}

.seed-choose-card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
}

.seed-tag-free { background: #fce7f3; color: #be185d; }
.seed-tag-featured { background: #dcfce7; color: #047857; }

.seed-choose-card h2 {
  margin: 18px 0 10px;
  font-size: 1.55rem;
}

.seed-choose-card p {
  margin: 0 0 18px;
  color: var(--seed-muted);
  line-height: 1.7;
}

.seed-choose-features {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.seed-choose-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #334155;
  line-height: 1.45;
}

.seed-choose-features span {
  color: var(--seed-green);
  font-weight: 900;
}

.seed-choose-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-weight: 900;
}

.seed-cta-women { background: var(--seed-pink); }
.seed-cta-startup { background: var(--seed-green); }

.seed-choose-footer {
  margin: 22px 0 0;
  text-align: center;
  color: var(--seed-muted);
}

.seed-choose-footer a {
  color: var(--seed-purple-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .ob-main { grid-template-columns: 1fr; }
  .seed-ob-sidebar { display: none; }
  .seed-ob-mobile-header { display: flex; }
  .seed-ob-content { padding: 22px 16px 40px; }
}

@media (max-width: 760px) {
  .seed-field-row,
  .seed-option-grid-2,
  .seed-option-grid-3,
  .seed-choose-grid {
    grid-template-columns: 1fr;
  }
  .seed-panel,
  .seed-success-panel {
    padding: 22px 16px;
  }
  .seed-panel-actions {
    position: sticky;
    bottom: 0;
    z-index: 5;
    margin: 28px -16px -22px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.96);
    border-top: 1px solid var(--seed-line);
    backdrop-filter: blur(12px);
  }
  .seed-panel-actions .seed-btn {
    flex: 1;
    padding-left: 14px;
    padding-right: 14px;
  }
  .seed-module-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .seed-module-toggle { display: none; }
  .seed-choose-page { padding: 18px 14px 32px; }
  .seed-choose-hero { margin: 46px auto 26px; }
  .seed-choose-card { padding: 22px 16px; }
}

@media (max-width: 420px) {
  .seed-choose-topbar { align-items: flex-start; }
  .seed-choose-topbar-right { gap: 8px; }
  .seed-choose-topbar-link { display: none; }
  .seed-choose-eyebrow { width: 100%; justify-content: center; text-align: center; }
  .seed-choose-h1 { font-size: 2.35rem; overflow-wrap: anywhere; }
  .seed-chip { width: 100%; justify-content: center; }
  .seed-success-next .seed-btn { width: 100%; }
}

/* ── Mentor card on choose page ── */
.seed-choose-card-mentor {
  border-color: #8ab4e3;
  background: linear-gradient(160deg, #eff5fc 0%, #eff5fc 100%);
}

.seed-choose-card-mentor:hover {
  border-color: #144e92;
  box-shadow: 0 24px 60px rgba(20, 78, 146, 0.15);
}

.seed-tag-mentor {
  background: #dce9f7;
  color: #0f3d75;
}

.seed-badge-mentor-card {
  background: #dce9f7;
  color: #0f3d75;
}

.seed-cta-mentor {
  background: linear-gradient(90deg, #0f3d75, #144e92);
  color: #fff;
}

.seed-choose-card-mentor .seed-choose-features li span {
  color: #144e92;
}

/* Completed step styling in sidebar */
.seed-step-item.completed .seed-step-circle {
  background: rgba(134, 239, 172, 0.3);
  color: #86efac;
}

.seed-step-item.completed .seed-step-circle::after {
  content: "✓";
}

.seed-step-item.completed .seed-step-circle span {
  display: none;
}