/* Module: Launch Offer
   Scope: .launch-offer (BEM)
   Tokens: use your system vars; falls back if missing.
*/
.launch-offer {
  --launch_offer-bg: var(--brand-surface, #0f2233);
  --launch_offer-card-bg: var(--brand-elevated, #ffffff);
  --launch_offer-text: var(--brand-text, #eaf3fb);
  --launch_offer-muted: var(--brand-muted, #a7b7c6);
  --launch_offer-accent: var(--brand-accent, #19a974);
  --launch_offer-danger: var(--brand-danger, #d02d2d);
  --launch_offer-cta: var(--brand-cta, #e03131);
  --launch_offer-cta-hover: var(--brand-cta-hover, #bf1f1f);
  --launch_offer-radius: 16px;
  --launch_offer-shadow: 0 10px 30px rgba(0,0,0,.25);
  background: radial-gradient(1200px 600px at 20% -20%, rgba(255,255,255,.05), transparent), var(--launch_offer-bg);
  padding: 48px 20px;
  color: var(--launch_offer-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
}

.launch-offer__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
}

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

.launch-offer__headline {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
}

.launch-offer__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.launch-offer__bullet {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--launch_offer-text);
}
.launch-offer__bullet::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--launch_offer-accent);
  font-weight: 700;
}

.launch-offer__fomo {
  margin: 16px 0 22px;
  color: var(--launch_offer-danger);
  font-weight: 700;
}

.launch-offer__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.launch-offer__cta {
  display: inline-block;
  padding: 14px 22px;
  border-radius: var(--launch_offer-radius);
  background: var(--launch_offer-cta);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: var(--launch_offer-shadow);
  transition: transform .08s ease, background .15s ease;
}
.launch-offer__cta:hover { background: var(--launch_offer-cta-hover); transform: translateY(-1px); }
.launch-offer__cta--block { display: block; text-align: center; width: 100%; margin-top: 18px; }

.launch-offer__secondary-cta {
  display: inline-block;
  padding: 14px 18px;
  border-radius: var(--launch_offer-radius);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  backdrop-filter: blur(2px);
}
.launch-offer__secondary-cta:hover { border-color: #fff; }

.launch-offer__guarantee {
  color: var(--launch_offer-muted);
  font-size: 14px;
  margin-top: 6px;
}

/* Card */
.launch-offer__card {
  background: var(--launch_offer-card-bg);
  color: #0b1b28;
  border-radius: 20px;
  box-shadow: var(--launch_offer-shadow);
  padding: 22px 22px 18px;
  position: relative;
  overflow: hidden;
}

.launch-offer__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--launch_offer-danger);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: .4px;
}

.launch-offer__price-line {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 18px;
}
.launch-offer__price-currency { font-size: 26px; line-height: 1; }
.launch-offer__price-main { font-size: 56px; font-weight: 900; line-height: .95; }
.launch-offer__price-suffix { margin-left: 6px; color: #3b4b58; font-weight: 700; }

.launch-offer__subline {
  margin-top: 8px;
  font-weight: 700;
  color: #214055;
}
.launch-offer__per-month { margin-left: 6px; color: #5a7487; font-weight: 600; }

.launch-offer__strike {
  margin-top: 14px;
  padding: 12px;
  background: #ffeaea;
  color: #9b1b1b;
  border: 1px solid #f3c4c4;
  border-radius: 12px;
  font-weight: 700;
}

.launch-offer__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: #3b4b58;
  font-weight: 600;
  font-size: 14px;
}
.launch-offer__shield { font-weight: 900; }
