/* ═══════════════════════════════════════════════════════════
 * SELL-PAGE — seller acquisition landing page (path-finder design)
 * Path: css/pages/sell-page.css
 * ═══════════════════════════════════════════════════════════ */

/* Variables not in tokens-baseline.css */
:root {
  --orange-subtle: #FFF1E1;
  --green-subtle: #EAF8EE;
  --green-deeper: #0A5A28;
  --green-mist: #F2F9F4;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --text-tertiary: #6B7280;
  --border-tertiary: #E8E8E4;
  --bg-subtle: #FAFBFD;
}

/* ─── BASE ─── */

.sell-page * { box-sizing: border-box; }

.sell-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 64px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-secondary);
  background: white;
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════════
 * SHARED BUTTONS
 * ═══════════════════════════════════════════════════════════ */

.sell-page-primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(20, 154, 73, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.sell-page-primary-button:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 16px rgba(20, 154, 73, 0.35);
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.sell-page-secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: white;
  color: var(--orange-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid var(--orange);
  border-radius: 10px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.sell-page-secondary-button:hover {
  background: var(--orange-subtle);
  color: var(--orange-dark);
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════════════
 * BLOCK + BLOCK HEAD
 * ═══════════════════════════════════════════════════════════ */

.sell-page-block-tight { padding-top: 0; }

.sell-page-block-head {
  text-align: center;
  margin-bottom: 36px;
}

.sell-page-step-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-subtle);
  border: 1px solid var(--orange-light);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.sell-page-block-title {
  font-size: clamp(1.5rem, 3.4vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.sell-page-block-subtitle {
  font-size: 1rem;
  color: var(--text-tertiary);
  max-width: 580px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════
 * HERO
 * ═══════════════════════════════════════════════════════════ */

.sell-page-hero {
  text-align: center;
  padding: 40px 20px 8px;
  background: radial-gradient(circle at 50% 0%, rgba(20, 154, 73, 0.08), transparent 60%);
  border-radius: 20px;
}

.sell-page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.sell-page-hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-deeper);
  background: var(--green-subtle);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.sell-page-hero-headline {
  font-size: clamp(1.95rem, 5vw, 3.125rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin: 0 auto 16px;
  max-width: 760px;
}
.sell-page-hero-accent { color: var(--green); }

.sell-page-hero-lead {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 12px;
}

.sell-page-hero-tagline {
  font-size: 0.9375rem;
  color: var(--green-deeper);
  font-weight: 600;
  margin: 0 0 26px;
}

.sell-page-hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sell-page-hero-note {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin: 16px 0 0;
}
.sell-page-hero-note strong { color: var(--green-deeper); }


/* ═══════════════════════════════════════════════════════════
 * STEP 1 · OPEN-STALL FLOW
 * ═══════════════════════════════════════════════════════════ */

.sell-page-flow-board {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border-tertiary);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 34px rgba(20, 154, 73, 0.10);
}

.sell-page-flow-step {
  background: var(--bg-subtle);
  border: 1px solid var(--border-tertiary);
  border-radius: 16px;
  padding: 22px 20px;
}

.sell-page-flow-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sell-page-flow-step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: 50%;
}
.sell-page-flow-step-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.sell-page-flow-step-note {
  font-size: 0.84375rem;
  font-weight: 600;
  color: var(--text-tertiary);
  margin: 0 0 14px;
}
.sell-page-flow-step-hint {
  font-size: 0.78125rem;
  color: var(--text-tertiary);
  margin: 14px 0 0;
  text-align: center;
}

.sell-page-flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--orange);
  margin: 8px 0;
}

/* Step 1 · category chips */
.sell-page-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sell-page-cat-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84375rem;
  font-weight: 700;
  color: var(--green-deeper);
  background: white;
  border: 1px solid #D3E8D8;
  padding: 12px 10px;
  border-radius: 10px;
}
.sell-page-cat-chip svg { color: var(--green); flex-shrink: 0; }

/* Step 2 · contract options */
.sell-page-contract-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sell-page-contract {
  background: white;
  border: 1px solid var(--border-tertiary);
  border-top: 3px solid var(--green);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}
.sell-page-contract-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-subtle);
  color: var(--green-dark);
  border-radius: 11px;
  margin-bottom: 10px;
}
.sell-page-contract-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 5px;
}
.sell-page-contract-text {
  font-size: 0.78125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Step 3 · activate */
.sell-page-flow-step-final {
  text-align: center;
  background: var(--green-mist);
  border-color: var(--green-light);
}
.sell-page-flow-step-final .sell-page-flow-step-head { justify-content: center; }
.sell-page-flow-step-final .sell-page-primary-button { margin-top: 4px; }


/* ═══════════════════════════════════════════════════════════
 * STEP 2 · JOURNEY
 * ═══════════════════════════════════════════════════════════ */

.sell-page-journey {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  counter-reset: jstep;
}
.sell-page-journey-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px;
  counter-increment: jstep;
}
.sell-page-journey-step:last-child { padding-bottom: 0; }
.sell-page-journey-step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: -4px;
  width: 2px;
  background: var(--border-tertiary);
}
.sell-page-journey-step:last-child::before { display: none; }

.sell-page-journey-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(20, 154, 73, 0.22);
  position: relative;
}
.sell-page-journey-dot::after {
  content: counter(jstep);
  position: absolute;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 0.6875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}
.sell-page-journey-step:last-child .sell-page-journey-dot {
  background: var(--orange);
  box-shadow: 0 6px 16px rgba(245, 131, 32, 0.25);
}

.sell-page-journey-body { padding-top: 3px; }
.sell-page-journey-title {
  font-size: 1.03125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 3px;
}
.sell-page-journey-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════
 * STEP 3 · MARKETPLACE STATS
 * ═══════════════════════════════════════════════════════════ */

.sell-page-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.sell-page-stat {
  flex: 0 1 calc(25% - 14px);
  min-width: 160px;
  background: white;
  border: 1px solid var(--border-tertiary);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  padding: 22px 14px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sell-page-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(20, 154, 73, 0.10);
}
.sell-page-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--orange-subtle);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 11px;
}
.sell-page-stat-number {
  font-size: clamp(1.3125rem, 2.6vw, 1.6875rem);
  font-weight: 800;
  color: var(--orange-dark);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
}
.sell-page-stat-label {
  font-size: 0.78125rem;
  color: var(--text-tertiary);
  line-height: 1.3;
}
.sell-page-stats-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin: 18px 0 0;
}


/* ═══════════════════════════════════════════════════════════
 * STEP 4 · DISCOVERY FLOW
 * ═══════════════════════════════════════════════════════════ */

.sell-page-discover { max-width: 900px; margin: 0 auto; }
.sell-page-discover-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
}
.sell-page-discover-node {
  flex: 1;
  background: white;
  border: 1px solid var(--border-tertiary);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
}
.sell-page-discover-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-subtle);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 9px;
}
.sell-page-discover-node-you .sell-page-discover-icon { background: var(--orange-subtle); color: var(--orange-dark); }
.sell-page-discover-node-end .sell-page-discover-icon { background: var(--green); color: white; }
.sell-page-discover-title {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}
.sell-page-discover-node small {
  display: block;
  font-size: 0.71875rem;
  color: var(--text-tertiary);
  margin-top: 3px;
}
.sell-page-discover-arrow {
  display: flex;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  font-size: 1.125rem;
  padding: 0 6px;
  flex-shrink: 0;
}
.sell-page-discover-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 22px auto 0;
  max-width: 560px;
}
.sell-page-discover-note strong { color: var(--green-deeper); }


/* ═══════════════════════════════════════════════════════════
 * STEP 5 · BENEFITS
 * ═══════════════════════════════════════════════════════════ */

.sell-page-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.sell-page-benefit-card {
  background: white;
  border: 1px solid var(--border-tertiary);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sell-page-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(20, 154, 73, 0.10);
  border-color: var(--green);
}
.sell-page-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--green-subtle);
  color: var(--green-dark);
  margin-bottom: 14px;
}
.sell-page-benefit-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 5px;
  letter-spacing: -0.01em;
}
.sell-page-benefit-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════
 * STEP 6 · SELLER STORIES
 * ═══════════════════════════════════════════════════════════ */

.sell-page-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sell-page-story {
  background: white;
  border: 1px solid var(--border-tertiary);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sell-page-story-media {
  aspect-ratio: 4 / 3;
  background: var(--green-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border-tertiary);
}
.sell-page-story-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--orange-dark);
  background: var(--orange-subtle);
  padding: 4px 10px;
  border-radius: 999px;
}
.sell-page-story-placeholder {
  text-align: center;
  color: var(--text-tertiary);
  padding: 16px;
}
.sell-page-story-placeholder svg { margin-bottom: 8px; opacity: 0.5; }
.sell-page-story-placeholder span { display: block; font-size: 0.75rem; font-weight: 600; }
.sell-page-story-play {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(245, 131, 32, 0.35);
}
.sell-page-story-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sell-page-story-quote {
  font-size: 0.90625rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.sell-page-story-who {
  display: flex;
  align-items: center;
  gap: 11px;
}
.sell-page-story-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-subtle);
  color: var(--green-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sell-page-story-name {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}
.sell-page-story-meta {
  font-size: 0.78125rem;
  color: var(--text-tertiary);
}
.sell-page-story-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sell-page-story-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-subtle);
  padding: 7px 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.14s ease;
}
.sell-page-story-action:hover { background: var(--orange-light); text-decoration: none; }
.sell-page-stories-disclaimer {
  text-align: center;
  font-size: 0.78125rem;
  color: var(--text-tertiary);
  margin: 20px 0 0;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
 * TRUST STRIP
 * ═══════════════════════════════════════════════════════════ */

.sell-page-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.sell-page-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: white;
  border: 1px solid var(--border-tertiary);
  padding: 10px 16px;
  border-radius: 10px;
}
.sell-page-trust-item svg { color: var(--green); }


/* ═══════════════════════════════════════════════════════════
 * FAQ
 * ═══════════════════════════════════════════════════════════ */

.sell-page-faq {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.sell-page-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sell-page-faq-item {
  background: white;
  border: 1px solid var(--border-tertiary);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.sell-page-faq-item[open] {
  border-color: var(--green);
  background: var(--green-subtle);
}

.sell-page-faq-question {
  cursor: pointer;
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sell-page-faq-question::-webkit-details-marker { display: none; }
.sell-page-faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-tertiary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.sell-page-faq-item[open] .sell-page-faq-question::after {
  content: "−";
  color: var(--green-dark);
}

.sell-page-faq-answer {
  padding: 0 20px 16px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.sell-page-faq-answer a {
  color: var(--green-dark);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════
 * FINAL CTA
 * ═══════════════════════════════════════════════════════════ */

.sell-page-final-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 22px;
  padding: 54px 28px;
  text-align: center;
  color: white;
}

.sell-page-final-cta-inner {
  max-width: 520px;
  margin: 0 auto;
}

.sell-page-final-cta-title {
  font-size: clamp(1.625rem, 3.6vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: white;
  letter-spacing: -0.02em;
}

.sell-page-final-cta-subtitle {
  font-size: 1rem;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
}

.sell-page-final-cta .sell-page-primary-button {
  background: white;
  color: var(--green-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.sell-page-final-cta .sell-page-primary-button:hover {
  background: var(--green-mist);
  color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.sell-page-final-cta-meta {
  margin: 18px 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
}
.sell-page-final-cta-meta a {
  color: white;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════════════
 * RESPONSIVE
 * ═══════════════════════════════════════════════════════════ */

@media (max-width: 760px) {
  .sell-page { gap: 48px; }
  .sell-page-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .sell-page-contract-grid { grid-template-columns: 1fr; }
  .sell-page-stats { gap: 8px; flex-wrap: nowrap; }
  .sell-page-stat { flex: 1 1 0; min-width: 0; padding: 16px 8px; }
  .sell-page-benefit-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sell-page-discover-flow { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; }
  .sell-page-discover-node { min-width: 0; flex: 1 1 0; padding: 10px 4px; }
  .sell-page-discover-icon { width: 30px; height: 30px; }
  .sell-page-discover-title { font-size: 0.625rem; }
  .sell-page-discover-node small { font-size: 0.5625rem; }
  .sell-page-discover-arrow { transform: none; padding: 0; min-width: 12px; }
  .sell-page-stories { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sell-page-benefit-grid { grid-template-columns: 1fr; }
}
