.nn-offer {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.nn-offer__deco {
  position: absolute;
  right: -12%;
  top: -30%;
  width: min(640px, 70%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}
.nn-offer__deco::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.nn-offer__inner { position: relative; display: grid; gap: 42px; }
@media (min-width: 990px) {
  .nn-offer__inner { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 70px; align-items: center; }
}
.nn-offer .nn-eyebrow { color: rgba(255, 255, 255, 0.62); }
.nn-offer .nn-eyebrow::before { background: #FF9C6E; }
.nn-offer__title {
  margin-top: 18px;
  color: #fff;
  max-width: 15ch;
}
.nn-offer__text {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  max-width: 44ch;
}
.nn-offer__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}
.nn-offer__note { color: rgba(255, 255, 255, 0.6); font-size: 13px; }

/* stat panel */
.nn-offer__panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--nn-radius-lg);
  padding: 8px 26px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.nn-offer__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nn-offer__row:last-child { border-bottom: 0; }
.nn-offer__row b {
  font-family: var(--nn-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.nn-offer__row span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  text-align: right;
}
.nn .nn-offer .nn-btn--light::after { background: var(--nn-terra); }
