/* ── Pipeline page styles ────────────────────────── */

/* ── Hero ───────────────────────────────────────── */
.pl-hero {
  padding: clamp(80px, 12vw, 160px) var(--pad) clamp(64px, 10vw, 120px);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.pl-hero-inner { max-width: 780px; }

.pl-headline {
  font-family: var(--mono);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.pl-accent { color: var(--accent); }

.pl-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}

.pl-hero-proof {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--mono);
}

.pl-hero-proof-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pl-hero-proof-text {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.01em;
}

/* ── Shared section layout ───────────────────────── */
.pl-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pl-section-title {
  font-family: var(--mono);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 48px;
}

/* ── Benefits ────────────────────────────────────── */
.pl-benefits {
  padding: clamp(64px, 8vw, 100px) var(--pad);
  border-bottom: 1px solid var(--border);
}

.pl-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pl-benefit {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.pl-benefit-label {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.5;
}

.pl-benefit-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Social proof ────────────────────────────────── */
.pl-proof {
  padding: clamp(64px, 8vw, 100px) var(--pad);
  border-bottom: 1px solid var(--border);
}

.pl-buyer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

/* ── Social proof: pilot count + testimonials ──── */
.pl-social-proof {
  padding: clamp(64px, 8vw, 100px) var(--pad);
  border-bottom: 1px solid var(--border);
}

.pl-sp-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 56px;
}

.pl-sp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pl-sp-stat-val {
  font-family: var(--mono);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pl-sp-stat-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.pl-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pl-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pl-quote-mark {
  font-family: var(--mono);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.6;
}

.pl-testimonial-body {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.75;
  font-style: italic;
}

.pl-testimonial-attr {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.pl-testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.pl-testimonial-attr strong {
  color: var(--fg);
  font-weight: 600;
}

@media (max-width: 720px) {
  .pl-testimonial-grid { grid-template-columns: 1fr; }
  .pl-sp-stat-row { gap: 32px; }
}

/* ── CTA / Form ──────────────────────────────────── */
.pl-cta {
  padding: clamp(64px, 8vw, 100px) var(--pad);
  border-bottom: 1px solid var(--border);
}

.pl-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pl-cta-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.pl-form-wrap { }

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

.pl-submit {
  align-self: flex-start;
  /* inherits .form-submit from sellers.css */
}

.pl-success,
.pl-error {
  margin-top: 0;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .pl-cta-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  .pl-benefit { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 540px) {
  .form-submit, .pl-submit { width: 100%; }
}

/* ── FAQ ─────────────────────────────────────────── */
.pl-faq {
  padding: clamp(64px, 8vw, 100px) var(--pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pl-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.pl-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
}

.pl-faq-item[open] {
  border-color: var(--accent);
}

.pl-faq-q {
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--fg);
  list-style: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
}

.pl-faq-q::-webkit-details-marker { display: none; }

.pl-faq-q::after {
  content: '→';
  color: var(--muted);
  transition: transform 0.18s ease, color 0.18s ease;
  font-family: var(--mono);
  font-size: 16px;
  flex-shrink: 0;
}

.pl-faq-item[open] .pl-faq-q::after {
  transform: rotate(90deg);
  color: var(--accent);
}

.pl-faq-a {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Hero scroll link to FAQ */
.pl-hero-faq-link {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

.pl-hero-faq-link:hover {
  color: var(--accent);
}

/* Follow-on CTA inside FAQ section */
.pl-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--bg);
  background: var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.pl-faq-cta:hover {
  opacity: 0.88;
}
