/* ── ROI Calculator ─────────────────────────────────────── */
.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.calc-row:last-of-type { border-bottom: none; }
.calc-row label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  display: block;
}
.hint {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}
.value-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.value-wrap > span {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 600;
}
.value-wrap input {
  width: 90px;
  padding: 8px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  text-align: right;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -moz-appearance: textfield;
}
.value-wrap input::-webkit-outer-spin-button,
.value-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.value-wrap input:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(74,159,204,.12);
}
.kpi-tile {
  border-radius: 12px;
  padding: 18px 20px;
}
.kpi-tile .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .65;
  margin-bottom: 8px;
}
.kpi-tile .value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.kpi-tile .sub { font-size: 12px; opacity: .7; }
.card-flat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 18px 20px;
}
.mock-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 99px;
  overflow: hidden;
}
.mock-bar span {
  display: block;
  height: 100%;
  border-radius: 99px;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
@media (max-width: 900px) {
  .rg-2 > div[style*="position:sticky"] { position: static !important; top: auto !important; }
  .calc-row { gap: 10px; }
  .value-wrap input { width: 76px; }
}

/* ── Email-gated output blur ─────────────────────────────── */
.roi-blurred {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
}
.roi-gate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2;
}
.roi-gate-overlay .card {
  max-width: 340px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(13,37,64,.18);
}
