.execution-offer-popup {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1055;
  width: min(24rem, calc(100vw - 2rem));
  font-family: 'Source Sans 3', sans-serif;
}

.execution-offer-popup__body,
.execution-offer-popup__pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(7, 17, 34, 0.28);
  backdrop-filter: blur(18px);
}

.execution-offer-popup__body {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(6, 19, 44, 0.98), rgba(16, 88, 92, 0.96));
  color: #f6fbff;
}

.execution-offer-popup__body::before {
  content: '';
  position: absolute;
  inset: -20% auto auto 55%;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 196, 92, 0.28), rgba(255, 196, 92, 0));
  pointer-events: none;
}

.execution-offer-popup__toggle {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: #f6fbff;
  font-size: 0.85rem;
}

.execution-offer-popup__eyebrow {
  margin: 0;
  color: #89f1d2;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.execution-offer-popup__badge-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding-right: 6rem;
}

.execution-offer-popup__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  background: rgba(255, 196, 92, 0.18);
  color: #ffd77a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.execution-offer-popup h3 {
  margin: 0;
  padding-right: 3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  line-height: 0.98;
}

.execution-offer-popup p {
  margin: 0;
  color: rgba(246, 251, 255, 0.88);
  font-size: 1rem;
  line-height: 1.45;
}

.execution-offer-popup__lead {
  width: 100%;
  max-width: none;
  font-size: 1.02rem;
}

.execution-offer-popup__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.execution-offer-popup__metrics div {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.07);
}

.execution-offer-popup__metrics strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  color: #ffd77a;
}

.execution-offer-popup__metrics span {
  color: rgba(246, 251, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.3;
}

.execution-offer-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.execution-offer-popup__cta,
.execution-offer-popup__minimize,
.execution-offer-popup__pill,
.execution-offer-popup__toggle {
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.execution-offer-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.15rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #ffd56d, #ffb347);
  color: #152033;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(255, 181, 71, 0.28);
}

.execution-offer-popup__minimize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border: 0;
  border-radius: 0.9rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #f6fbff;
  font-weight: 600;
}

.execution-offer-popup__cta:hover,
.execution-offer-popup__minimize:hover,
.execution-offer-popup__pill:hover,
.execution-offer-popup__toggle:hover {
  transform: translateY(-1px);
}

.execution-offer-popup__cta::after {
  content: '→';
  margin-left: 0.45rem;
  font-size: 1rem;
}

.execution-offer-popup__pill {
  display: none;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(135deg, rgba(8, 26, 58, 0.97), rgba(16, 88, 92, 0.95));
  color: #f6fbff;
  font-weight: 700;
  justify-content: space-between;
}

.execution-offer-popup.is-collapsed {
  width: min(19rem, calc(100vw - 2rem));
}

.execution-offer-popup.is-collapsed .execution-offer-popup__body,
.execution-offer-popup.is-collapsed .execution-offer-popup__toggle {
  display: none;
}

.execution-offer-popup.is-collapsed .execution-offer-popup__pill {
  display: inline-flex;
}

.execution-offer-popup__footnote {
  color: rgba(246, 251, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .execution-offer-popup {
    right: 1rem;
    bottom: 1rem;
    width: calc(100vw - 1.5rem);
  }

  .execution-offer-popup__body {
    padding: 1rem;
  }

  .execution-offer-popup h3 {
    padding-right: 2.5rem;
    font-size: 1.45rem;
  }

  .execution-offer-popup p {
    font-size: 0.95rem;
  }

  .execution-offer-popup__badge-row {
    padding-right: 3.5rem;
  }

  .execution-offer-popup__actions {
    flex-direction: column;
  }

  .execution-offer-popup__metrics {
    grid-template-columns: 1fr;
  }

  .execution-offer-popup__cta,
  .execution-offer-popup__minimize {
    width: 100%;
  }
}