/* ── Pilot page styles ──────────────────────────── */

/* ── Hero ───────────────────────────────────────── */
.pilot-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);
}

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

.pilot-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;
}

.pilot-headline-accent { color: var(--accent); }

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

.pilot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  letter-spacing: 0.03em;
}

.pilot-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.pilot-proof-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pilot-proof-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.pilot-proof-val {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.pilot-proof-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.pilot-proof-sep {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--border);
}

/* ── Hero dual CTA + proof counter ──────────────── */
.pilot-hero-cta-block {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pilot-hero-cta-primary {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.15s;
  letter-spacing: 0.02em;
}

.pilot-hero-cta-primary:hover { opacity: 0.9; }

.pilot-hero-cta-secondary {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color 0.15s, border-color 0.15s;
}

.pilot-hero-cta-secondary:hover {
  color: var(--fg);
  border-color: var(--accent);
}

.pilot-hero-proof {
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.pilot-hero-proof-num {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-right: 4px;
}

.pilot-hero-proof-text { color: var(--muted); }

.pilot-hero-footnote {
  margin-top: 10px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0.01em;
}

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

.pilot-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;
}

/* ── What you get ───────────────────────────────── */
.pilot-what {
  padding: clamp(64px, 8vw, 100px) var(--pad);
  border-bottom: 1px solid var(--border);
}

.pilot-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pilot-phase-arrow {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--border);
  padding: 36px 24px 0;
  line-height: 1;
  align-self: start;
}

.pilot-phase {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--surface);
}

.pilot-phase-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pilot-phase-days {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.pilot-phase-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 10px;
  letter-spacing: 0.06em;
}

.pilot-phase-title {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pilot-phase-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Why now ─────────────────────────────────────── */
.pilot-why {
  padding: clamp(64px, 8vw, 100px) var(--pad);
  border-bottom: 1px solid var(--border);
}

.pilot-stat-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}

.pilot-stat {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pilot-stat-val {
  font-family: var(--mono);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pilot-stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.pilot-why-body {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
}

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

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

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

.pilot-cta-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buyer-chip {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  background: var(--surface);
}

/* Re-use form styles from sellers.css — these mirror them for isolation */
.pilot-form-wrap { }

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

.form-label-opt {
  font-weight: 400;
  opacity: 0.5;
}

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

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

/* ── Footer links ─────────────────────────────────── */
.footer-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--fg); }

.footer-sep {
  color: var(--border);
}

.nav-brand-link,
.footer-brand-link {
  text-decoration: none;
  color: inherit;
}

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

@media (max-width: 860px) {
  .pilot-timeline { grid-template-columns: 1fr; gap: 16px; }
  .pilot-phase-arrow { display: none; }
  .pilot-stat-block { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .pilot-badges { flex-direction: column; align-items: flex-start; }
  .form-submit, .pilot-submit { width: 100%; }
  .pilot-hero-cta-block { flex-direction: column; align-items: stretch; }
  .pilot-hero-cta-primary,
  .pilot-hero-cta-secondary { width: 100%; text-align: center; }
}
