/* ---------- Founding sellers page ----------
 * Extracted from Sigrix_new/Sigrix Founding Sellers.html so the public
 * /founding-sellers route ships only the styles it actually needs (without
 * pulling in the broader sx-marketplace bundle). Pairs with the shared
 * sx-home.css for hero/section primitives.
 */

.founding-sellers-page .founding-sellers-main {
  padding-bottom: 96px;
}

/* ---------- Hero / progress ---------- */
.sx-fs-hero {
  padding-bottom: 48px;
}

.sx-meet-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 32px;
}
.sx-meet-head h1 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-top: 12px;
}
.sx-meet-head h1 .accent { color: var(--sx-brand); }
.sx-meet-head .lede {
  color: var(--sx-text-2);
  font-size: 18px;
  line-height: 1.55;
  margin-top: 20px;
  max-width: 60ch;
}

.sx-meet-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 4px;
}
.sx-meet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  height: 28px;
  padding: 0 12px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--sx-brand);
  color: var(--sx-brand-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 0 0 1px rgba(61, 77, 255, 0.45);
}
.sx-meet-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}
.sx-meet-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--sx-text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.sx-meet-progress .count {
  font-family: var(--sx-font-mono);
  font-size: 13px;
  color: var(--sx-brand);
  letter-spacing: 0;
  text-transform: none;
}
.sx-meet-progress-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--sx-line);
  overflow: hidden;
}
.sx-meet-progress-bar > div {
  height: 100%;
  border-radius: 2px;
  background: var(--sx-brand);
  transition: width 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sx-meet-progress-meta {
  font-size: 12px;
  color: var(--sx-text-3);
  font-family: var(--sx-font-mono);
}

/* ---------- Wall ---------- */
.sx-fs-wall { margin-top: 8px; }

.sx-meet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sx-seller-card {
  position: relative;
  background: var(--sx-surface);
  border-radius: var(--sx-r-lg);
  padding: 24px;
  box-shadow: 0 0 0 1px var(--sx-line) inset;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.sx-seller-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--sx-brand);
  border-top-left-radius: var(--sx-r-lg);
  border-top-right-radius: var(--sx-r-lg);
}
.sx-seller-card:hover {
  box-shadow: 0 0 0 1px var(--sx-line-2) inset, 0 18px 38px -22px rgba(0, 0, 0, 0.55);
  transform: translateY(-2px);
}
[data-theme="light"] .sx-seller-card:hover {
  box-shadow: 0 0 0 1px var(--sx-line-2) inset, 0 18px 38px -22px rgba(14, 19, 32, 0.18);
}

.sx-seller-head { display: flex; gap: 14px; align-items: center; }
.sx-seller-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61, 77, 255, 0.18), rgba(61, 77, 255, 0.06));
  box-shadow: 0 0 0 1px rgba(61, 77, 255, 0.30) inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sx-brand);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--sx-font-display);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  overflow: hidden;
}
.sx-seller-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sx-seller-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sx-seller-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sx-text);
}
a.sx-seller-name--link {
  display: inline-block;
  text-decoration: none;
  transition: color 0.15s ease;
}
a.sx-seller-name--link:hover,
a.sx-seller-name--link:focus-visible { color: var(--sx-brand); }
.sx-seller-role { font-size: 13px; color: var(--sx-text-2); line-height: 1.35; }
.sx-seller-links { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.sx-seller-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-family: var(--sx-font-mono);
  color: var(--sx-text-3);
  text-decoration: none;
  transition: color 0.15s ease;
}
.sx-seller-link:hover { color: var(--sx-brand); }
.sx-seller-link svg { width: 11px; height: 11px; flex-shrink: 0; }

.sx-seller-divider { height: 1px; background: var(--sx-line); margin: 18px 0 16px; }
.sx-seller-bio { font-size: 13.5px; color: var(--sx-text-2); line-height: 1.55; flex: 1; }
.sx-seller-quote {
  margin-top: 18px;
  padding: 14px 14px 14px 16px;
  background: rgba(61, 77, 255, 0.06);
  border-left: 3px solid var(--sx-brand);
  border-radius: 0 var(--sx-r-md) var(--sx-r-md) 0;
  font-size: 13px;
  font-style: italic;
  color: var(--sx-text);
  line-height: 1.55;
  position: relative;
}
[data-theme="light"] .sx-seller-quote { background: rgba(61, 77, 255, 0.05); }
.sx-seller-quote::before {
  content: "\201C";
  position: absolute;
  top: 2px;
  left: 8px;
  font-family: var(--sx-font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--sx-brand);
  opacity: 0.25;
  pointer-events: none;
}
.sx-seller-quote-text { display: block; padding-left: 12px; }

/* Empty / CTA card (next spot) — anchor element, so reset default styling */
.sx-seller-card--empty {
  background: transparent;
  border-radius: var(--sx-r-lg);
  box-shadow: 0 0 0 1.5px var(--sx-line) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  position: relative;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
}
.sx-seller-card--empty::before { content: none; }
.sx-seller-card--empty:hover {
  transform: none;
  box-shadow: 0 0 0 1.5px var(--sx-line-2) inset;
}
.sx-seller-card--empty .stack { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.sx-seller-card--empty .num {
  font-family: var(--sx-font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--sx-line-2);
  letter-spacing: -0.04em;
  line-height: 1;
}
.sx-seller-card--empty .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sx-text-3);
  font-weight: 600;
}
.sx-seller-card--empty .sx-btn { margin-top: 4px; }

/* Compact slot strip — remaining unmapped seats after the prominent row */
.sx-slot-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.sx-slot {
  position: relative;
  aspect-ratio: 1.4 / 1;
  border-radius: var(--sx-r-md);
  box-shadow: 0 0 0 1px var(--sx-line) inset;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sx-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--sx-text-3);
  letter-spacing: -0.02em;
  transition: color 0.15s, box-shadow 0.15s, background 0.15s;
}
.sx-slot:hover {
  color: var(--sx-text);
  box-shadow: 0 0 0 1px var(--sx-line-2) inset;
  background: var(--sx-surface);
}
.sx-slot .pin {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sx-text-3);
  font-family: var(--sx-font-body);
  font-weight: 600;
}

/* ---------- Perks ---------- */
.sx-fs-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sx-fs-perk {
  padding: 22px;
  border-radius: var(--sx-r-lg);
  background: var(--sx-surface);
  box-shadow: 0 0 0 1px var(--sx-line) inset;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sx-fs-perk .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 77, 255, 0.10);
  color: var(--sx-brand);
  box-shadow: 0 0 0 1px rgba(61, 77, 255, 0.20) inset;
}
.sx-fs-perk .t {
  font-size: 15px;
  font-weight: 600;
  color: var(--sx-text);
  letter-spacing: -0.005em;
}
.sx-fs-perk .d { font-size: 13.5px; color: var(--sx-text-2); line-height: 1.5; }

/* ---------- Apply ---------- */
.sx-fs-apply {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 40px;
  border-radius: var(--sx-r-xl);
  background:
    radial-gradient(700px 240px at 100% 0%, rgba(61, 77, 255, 0.18), transparent 60%),
    var(--sx-surface);
  box-shadow: 0 0 0 1px var(--sx-line) inset;
  align-items: center;
}
.sx-fs-apply h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 18ch;
  margin-top: 10px;
}
.sx-fs-apply .lede {
  color: var(--sx-text-2);
  font-size: 15px;
  margin-top: 12px;
  max-width: 52ch;
  line-height: 1.6;
}
.sx-fs-apply ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}
.sx-fs-apply li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--sx-text-2);
}
.sx-fs-apply li::before {
  content: "";
  flex: none;
  margin-top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sx-brand);
}
.sx-fs-apply-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sx-fs-apply-side {
  padding: 22px;
  border-radius: var(--sx-r-lg);
  background: var(--sx-bg);
  box-shadow: 0 0 0 1px var(--sx-line) inset;
}
.sx-fs-apply-side .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--sx-line);
}
.sx-fs-apply-side .row:last-child { border-bottom: 0; }
.sx-fs-apply-side .k {
  font-size: 12px;
  color: var(--sx-text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sx-fs-apply-side .v {
  font-size: 14px;
  color: var(--sx-text);
  font-weight: 600;
  font-family: var(--sx-font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- FAQ ---------- */
.sx-fs-faq-section { margin-bottom: 24px; }
.sx-fs-faq-section h2 {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 600;
}
.sx-fs-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}
.sx-fs-faq dt {
  font-size: 15px;
  font-weight: 600;
  color: var(--sx-text);
  letter-spacing: -0.005em;
}
.sx-fs-faq dd {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--sx-text-2);
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .sx-meet-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .sx-meet-head h1 { font-size: 48px; }
  .sx-meet-grid { grid-template-columns: 1fr 1fr; }
  .sx-fs-perks { grid-template-columns: 1fr 1fr; }
  .sx-fs-apply { grid-template-columns: 1fr; }
  .sx-fs-faq { grid-template-columns: 1fr; }
  .sx-slot-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .sx-meet-head h1 { font-size: 36px; }
  .sx-meet-grid { grid-template-columns: 1fr; }
  .sx-fs-perks { grid-template-columns: 1fr; }
  .sx-slot-strip { grid-template-columns: repeat(3, 1fr); }
  .sx-fs-apply { padding: 24px; }
  .sx-fs-apply h2 { font-size: 28px; }
}
