/* Founders Offer — shared on launch + USD marketing homepages */

.founders-offer {
  --fo-accent: #f59e0b;
  --fo-accent-soft: rgba(245, 158, 11, 0.14);
  --fo-text: #f8fafc;
  --fo-muted: #cbd5e1;
  --fo-card: rgba(15, 23, 42, 0.72);
  --fo-border: rgba(148, 163, 184, 0.22);
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(245, 158, 11, 0.22), transparent 60%),
    radial-gradient(700px 380px at 88% 110%, rgba(59, 130, 246, 0.18), transparent 62%),
    linear-gradient(165deg, #0b1220 0%, #111827 48%, #0f172a 100%);
  color: var(--fo-text);
}

body.wp-home .founders-offer {
  --fo-text: #0f172a;
  --fo-muted: #475569;
  --fo-card: rgba(255, 255, 255, 0.92);
  --fo-border: rgba(148, 163, 184, 0.35);
  background:
    radial-gradient(900px 420px at 10% -8%, rgba(245, 158, 11, 0.16), transparent 58%),
    radial-gradient(760px 360px at 92% 108%, rgba(99, 102, 241, 0.12), transparent 60%),
    linear-gradient(180deg, #fffbeb 0%, #f8fafc 42%, #eef2ff 100%);
}

.founders-offer__wrap {
  width: min(var(--funnel-site-max, 1160px), calc(100% - var(--funnel-site-gutter, 32px)));
  max-width: var(--funnel-site-max, 1160px);
  margin-inline: auto;
  padding-inline: var(--funnel-site-pad-inline, 0);
  box-sizing: border-box;
}

.founders-offer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--fo-accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fde68a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.wp-home .founders-offer__eyebrow {
  color: #92400e;
}

.founders-offer__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.founders-offer__lead,
.founders-offer__note,
.founders-offer__sub {
  margin: 0 0 14px;
  color: var(--fo-muted);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  max-width: 760px;
}

.founders-offer__lead strong,
.founders-offer__cta-lead strong {
  color: inherit;
  font-weight: 800;
}

.founders-offer__grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

@media (min-width: 900px) {
  .founders-offer__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.founders-offer__card {
  padding: 24px 22px;
  border-radius: 18px;
  background: var(--fo-card);
  border: 1px solid var(--fo-border);
  backdrop-filter: blur(8px);
}

.founders-offer__card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.founders-offer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.founders-offer__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fo-muted);
}

.founders-offer__list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

.founders-offer__list--plain li::before {
  content: "•";
  color: var(--fo-accent);
  font-weight: 900;
}

.founders-offer__membership {
  margin-top: 28px;
  padding: 26px 22px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.42);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(59, 130, 246, 0.08));
}

body.wp-home .founders-offer__membership {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(99, 102, 241, 0.08));
}

.founders-offer__membership h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
}

.founders-offer__bundle {
  margin-top: 28px;
}

.founders-offer__bundle-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 14px;
}

.founders-offer__bundle-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--fo-card);
  border: 1px solid var(--fo-border);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--fo-muted);
}

.founders-offer__cta {
  margin-top: 36px;
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--fo-border);
  background: var(--fo-card);
}

.founders-offer__cta h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
}

.founders-offer__cta-lead,
.founders-offer__cta-body,
.founders-offer__cta-closer {
  margin: 0 auto 12px;
  max-width: 680px;
  color: var(--fo-muted);
  font-size: 15px;
  line-height: 1.65;
}

.founders-offer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.founders-offer__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.34);
  color: #111827;
}

.founders-offer__terms {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fo-muted);
  opacity: 0.85;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
