/* ==========================================================================
   Founder Section
   Pioneer Founder Program — warm, exclusive feel. Radial amber glow,
   two-column layout, ROI card, trust badges.
   Mobile-first: 375 px base, scale up.
   ========================================================================== */

/* --- section shell ------------------------------------------------------- */
.founder-section {
  padding: var(--sp-24) 0;
  background: var(--vc-bg-base);
  position: relative;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--vc-founder-subtle), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  position: relative;
  z-index: 1;
}

/* --- live counter -------------------------------------------------------- */
.founder-counter {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.founder-counter-number {
  font-family: var(--font-mono);
  font-size: clamp(40px, 6vw, 64px);
  color: var(--vc-founder);
  font-weight: 500;
}

.founder-counter-text {
  font-size: 16px;
  color: var(--vc-text-secondary);
  margin-top: var(--sp-2);
}

/* --- two-column grid ----------------------------------------------------- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: start;
  margin-top: var(--sp-10);
}

/* --- left column: offer -------------------------------------------------- */
.founder-offer {
  /* left column */
}

.founder-price {
  font-family: var(--font-mono);
  font-size: 48px;
  color: var(--vc-founder);
  font-weight: 500;
}

.founder-price-sub {
  font-size: 16px;
  color: var(--vc-text-tertiary);
  margin-top: var(--sp-1);
}

/* --- top perks (horizontal highlight row) -------------------------------- */
.founder-top-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-2);
}

.founder-top-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-4);
  background: var(--vc-bg-surface);
  border: 1px solid var(--vc-founder-border);
  border-radius: var(--r-lg);
}

.founder-top-perk svg {
  width: 28px;
  height: 28px;
  stroke: var(--vc-founder);
  flex-shrink: 0;
}

.founder-top-perk strong {
  font-size: 15px;
  color: var(--vc-text-primary);
  line-height: 1.3;
}

.founder-top-perk span {
  font-size: 13px;
  color: var(--vc-text-tertiary);
}

@media (max-width: 700px) {
  .founder-top-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- benefits list ------------------------------------------------------- */
.founder-benefits {
  list-style: none;
  padding: 0;
  margin: var(--sp-8) 0;
}

.founder-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
}

.founder-benefit svg {
  width: 20px;
  height: 20px;
  stroke: var(--vc-founder);
  flex-shrink: 0;
  margin-top: 2px;
}

.founder-benefit-text {
  font-size: 15px;
  color: var(--vc-text-secondary);
  line-height: 1.5;
}

.founder-benefit-text strong {
  color: var(--vc-text-primary);
}

.founder-benefit-text .benefit-detail {
  display: block;
  font-size: 13px;
  color: var(--vc-text-tertiary);
  margin-top: 2px;
}

/* --- CTA wrapper --------------------------------------------------------- */
.founder-cta-wrapper {
  margin-top: var(--sp-8);
}

.founder-cta-sub {
  font-size: 13px;
  color: var(--vc-text-tertiary);
  margin-top: var(--sp-3);
  text-align: center;
}

/* --- ROI card (right column) --------------------------------------------- */
.founder-roi {
  background: var(--vc-bg-surface);
  border: 1px solid var(--vc-founder-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.founder-roi h3 {
  font-size: 18px;
  color: var(--vc-text-primary);
  font-weight: 600;
  margin-bottom: var(--sp-6);
}

.roi-scenario {
  font-size: 14px;
  color: var(--vc-text-secondary);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  font-size: 14px;
  border-bottom: 1px solid var(--vc-border-subtle);
}

.roi-row:last-child {
  border-bottom: none;
}

.roi-label {
  color: var(--vc-text-secondary);
}

.roi-value {
  font-family: var(--font-mono);
  color: var(--vc-text-primary);
  font-weight: 500;
}

.roi-highlight {
  background: var(--vc-founder-subtle);
  border: 1px solid var(--vc-founder-border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-top: var(--sp-4);
}

.roi-highlight .roi-label {
  color: var(--vc-text-primary);
  font-weight: 600;
}

.roi-highlight .roi-value {
  color: var(--vc-founder);
  font-weight: 600;
  font-size: 18px;
}

.roi-note {
  font-size: 12px;
  color: var(--vc-text-muted);
  margin-top: var(--sp-4);
  line-height: 1.5;
}

/* --- AI Transformation Circle card --------------------------------------- */
.founder-circle-card {
  background: var(--vc-bg-surface);
  border-left: 3px solid var(--vc-accent);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  margin-top: var(--sp-12);
  max-width: 1200px;
}

.founder-circle-card h3 {
  font-size: 18px;
  color: var(--vc-text-primary);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.founder-circle-card p {
  font-size: 15px;
  color: var(--vc-text-secondary);
  line-height: 1.6;
}

/* --- section transition to pricing --------------------------------------- */
.founder-to-pricing {
  text-align: center;
  margin-top: var(--sp-16);
  margin-bottom: var(--sp-10);
}

.founder-to-pricing h3 {
  font-size: 20px;
  color: var(--vc-text-secondary);
  font-weight: 400;
  margin-bottom: var(--sp-3);
}

.founder-to-pricing p {
  font-size: 15px;
  color: var(--vc-text-tertiary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- trust badges -------------------------------------------------------- */
.founder-trust-row {
  display: flex;
  gap: var(--sp-6);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--vc-border-subtle);
}

.founder-trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--vc-text-tertiary);
}

.founder-trust-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- responsive ---------------------------------------------------------- */
@media (min-width: 901px) {
  .founder-grid {
    grid-template-columns: 3fr 2fr;
  }
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-price {
    font-size: 36px;
  }

  .founder-roi {
    margin-top: var(--sp-4);
  }

  .founder-circle-card {
    padding: var(--sp-4) var(--sp-6);
  }
}

/* --- founder manifesto --------------------------------------------------- */
.founder-manifesto {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0;
  border: none;
}
.founder-manifesto-text {
  font-family: 'Caveat', cursive;
  font-size: clamp(22px, 3vw, 30px);
  color: #8B90A0;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}
.founder-manifesto-mark {
  color: #818CF8;
  font-size: 1.4em;
  font-weight: 700;
  opacity: 0.6;
}
.founder-manifesto-attribution {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.founder-manifesto-name {
  font-size: 14px;
  font-weight: 600;
  color: #A8ADBE;
}
.founder-manifesto-role {
  font-size: 13px;
  font-weight: 400;
  color: #505568;
}
