.founder-offer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(1120px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  color: #10204a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 248, 255, 0.86)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(16, 32, 74, 0.08);
  font-family: "Nunito", ui-rounded, system-ui, sans-serif;
}

.founder-offer-banner__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.founder-offer-banner__copy strong {
  color: #10204a;
  font-weight: 950;
}

.founder-offer-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 14px;
  border-radius: 999px;
  color: #10204a;
  background: linear-gradient(180deg, #ffe4c7, #f8b989);
  box-shadow: 0 4px 0 #d98a62;
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: none;
}

.founder-offer-counter {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 12px;
  border: 1px solid rgba(255, 95, 139, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.founder-offer-counter__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #10204a;
  font-size: 0.9rem;
  line-height: 1.25;
}

.founder-offer-counter__topline strong {
  font-weight: 950;
}

.founder-offer-counter__topline span {
  flex: 0 0 auto;
  color: #bd174f;
  font-size: 0.78rem;
  font-weight: 950;
}

.founder-offer-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 32, 74, 0.1);
}

.founder-offer-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff5f8b, #f8b989);
}

.founder-offer-copy,
.founder-offer-savings {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.35;
}

.founder-offer-savings {
  color: #7c2d12;
  font-weight: 900;
}

.dashboard-page .founder-offer-banner,
.dashboard-page .founder-offer-counter {
  color: var(--ink);
  border-color: rgba(184, 244, 61, 0.22);
  background: rgba(248, 251, 255, 0.1);
}

.dashboard-page .founder-offer-counter__topline,
.dashboard-page .founder-offer-copy {
  color: var(--ink);
}

.dashboard-page .founder-offer-counter__topline span,
.dashboard-page .founder-offer-savings {
  color: var(--lime);
}

.dashboard-page .founder-offer-progress {
  background: rgba(248, 251, 255, 0.18);
}

.dashboard-page .founder-offer-progress span {
  background: linear-gradient(90deg, var(--lime), #35c7ff);
}

@media (max-width: 720px) {
  .founder-offer-banner,
  .founder-offer-counter__topline {
    align-items: stretch;
    flex-direction: column;
  }

  .founder-offer-banner {
    gap: 10px;
  }

  .founder-offer-banner__cta {
    width: 100%;
  }
}
