/* RH solution page — interactive HTML visuals */

.binds-rebrand.binds-rhSolutionPage .binds-split__media .screen {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.binds-rebrand .binds-hrScene {
  position: relative;
  min-height: 400px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  padding: 22px 20px 20px;
}

.binds-rebrand .binds-hrScene__ambient {
  display: none;
}

/* —— Journey —— */
.binds-rebrand .binds-hrJourney {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.binds-rebrand .binds-hrJourney__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.binds-rebrand .binds-hrJourney__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(var(--binds-primary-rgb), 0.10);
  border: 1px solid rgba(var(--binds-primary-rgb), 0.16);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--binds-primary);
}

.binds-rebrand .binds-hrJourney__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrJourney__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: bindsHrPulse 1.8s ease-out infinite;
}

@keyframes bindsHrPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.binds-rebrand .binds-hrJourney__track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #f1f5f9;
  overflow: hidden;
}

.binds-rebrand .binds-hrJourney__progress {
  display: block;
  height: 100%;
  width: 12%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--binds-primary), var(--binds-teal));
  transition: width 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.binds-rebrand .binds-hrJourney__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.binds-rebrand .binds-hrJourney__step {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 6px;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: var(--binds-text-2);
  font: inherit;
}

.binds-rebrand .binds-hrJourney__step:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--binds-primary-rgb), 0.22);
}

.binds-rebrand .binds-hrJourney__step.is-active {
  border-color: rgba(var(--binds-primary-rgb), 0.28);
  background: #fff;
  box-shadow: 0 12px 28px rgba(var(--binds-primary-rgb), 0.14);
  color: var(--binds-text);
}

.binds-rebrand .binds-hrJourney__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(var(--binds-primary-rgb), 0.08);
  color: var(--binds-primary);
  font-size: 0.9rem;
}

.binds-rebrand .binds-hrJourney__step.is-active .binds-hrJourney__icon {
  background: rgba(var(--binds-primary-rgb), 0.14);
}

.binds-rebrand .binds-hrJourney__label {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.binds-rebrand .binds-hrJourney__panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  animation: bindsHrPanelIn 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.binds-rebrand .binds-hrJourney__panel[hidden] {
  display: none;
}

@keyframes bindsHrPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.binds-rebrand .binds-hrJourney__score {
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.03em;
  padding: 12px 14px;
  border-radius: 14px;
  min-width: 72px;
  text-align: center;
}

.binds-rebrand .binds-hrJourney__score--high { color: #15803d; background: rgba(34, 197, 94, 0.12); }
.binds-rebrand .binds-hrJourney__score--mid { color: #1d4ed8; background: rgba(59, 130, 246, 0.12); }
.binds-rebrand .binds-hrJourney__score--warn { color: #b45309; background: rgba(245, 158, 11, 0.14); }

.binds-rebrand .binds-hrJourney__panelTitle {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 850;
  color: var(--binds-text);
}

.binds-rebrand .binds-hrJourney__panelText {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrJourney__chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.binds-rebrand .binds-hrJourney__chips span {
  font-size: 0.75rem;
  font-weight: 750;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--binds-text-2);
}

/* —— Surveys —— */
.binds-rebrand .binds-hrSurveys {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-height: 340px;
}

.binds-rebrand .binds-hrSurveys__tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.binds-rebrand .binds-hrSurveys__tab {
  flex: 1;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 850;
  font-size: 0.88rem;
  color: var(--binds-text-2);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.binds-rebrand .binds-hrSurveys__tab.is-active {
  background: #fff;
  color: var(--binds-primary);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.binds-rebrand .binds-hrSurveys__body {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  min-height: 280px;
}

.binds-rebrand .binds-hrSurveys__panel[hidden] {
  display: none;
}

.binds-rebrand .binds-hrSurveys__panel.is-active {
  animation: bindsHrPanelIn 0.4s ease;
}

.binds-rebrand .binds-hrSurveys__question {
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
  color: var(--binds-text);
}

.binds-rebrand .binds-hrEnpsScale {
  position: relative;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 5px;
  margin-bottom: 14px;
}

.binds-rebrand .binds-hrEnpsScale > span {
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  font-weight: 850;
  font-size: 0.78rem;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrEnpsScale__cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100% - 50px) / 11);
  height: 32px;
  border-radius: 8px;
  border: 2px solid rgba(var(--binds-primary-rgb), 0.35);
  background: rgba(var(--binds-primary-rgb), 0.12);
  box-shadow: 0 10px 24px rgba(var(--binds-primary-rgb), 0.18);
  animation: bindsHrEnpsPick 4s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes bindsHrEnpsPick {
  0%, 12% { transform: translateX(0); opacity: 0; }
  18% { opacity: 1; }
  40% { transform: translateX(calc((100% + 5px) * 0.545)); }
  62% { transform: translateX(calc((100% + 5px) * 0.818)); }
  78% { transform: translateX(calc((100% + 5px) * 0.727)); opacity: 1; }
  90%, 100% { opacity: 0; }
}

.binds-rebrand .binds-hrSurveys__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--binds-text-2);
  margin-bottom: 14px;
}

.binds-rebrand .binds-hrDot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.binds-rebrand .binds-hrDot--det { background: #ef4444; }
.binds-rebrand .binds-hrDot--neu { background: #f59e0b; }
.binds-rebrand .binds-hrDot--pro { background: #22c55e; }

.binds-rebrand .binds-hrSurveys__metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.binds-rebrand .binds-hrSurveys__metric strong {
  font-size: 1.35rem;
  font-weight: 950;
  color: var(--binds-primary);
}

.binds-rebrand .binds-hrSurveys__metric span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #15803d;
}

.binds-rebrand .binds-hrLikert {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.binds-rebrand .binds-hrLikert__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrLikert__bar {
  height: 10px;
  border-radius: 999px;
  background: #f1f5f9;
  overflow: hidden;
  position: relative;
}

.binds-rebrand .binds-hrLikert__bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--binds-primary), var(--binds-teal));
  animation: bindsHrBarGrow 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  transform-origin: left;
}

.binds-rebrand .binds-hrLikert__bar--warn::after {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

@keyframes bindsHrBarGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.binds-rebrand .binds-hrRadar {
  position: relative;
  height: 180px;
  margin-bottom: 10px;
}

.binds-rebrand .binds-hrRadar__svg {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  display: block;
}

.binds-rebrand .binds-hrRadar__grid {
  fill: none;
  stroke: rgba(15, 23, 42, 0.12);
  stroke-width: 1;
}

.binds-rebrand .binds-hrRadar__fill {
  fill: rgba(var(--binds-primary-rgb), 0.22);
  stroke: var(--binds-primary);
  stroke-width: 2;
  transform-origin: center;
  animation: bindsHrRadarPulse 3s ease-in-out infinite;
}

@keyframes bindsHrRadarPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.binds-rebrand .binds-hrRadar__labels {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.68rem;
  font-weight: 750;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrRadar__labels li:nth-child(1) { position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.binds-rebrand .binds-hrRadar__labels li:nth-child(2) { position: absolute; top: 32%; right: 0; }
.binds-rebrand .binds-hrRadar__labels li:nth-child(3) { position: absolute; bottom: 8%; right: 12%; }
.binds-rebrand .binds-hrRadar__labels li:nth-child(4) { position: absolute; bottom: 8%; left: 12%; }
.binds-rebrand .binds-hrRadar__labels li:nth-child(5) { position: absolute; top: 32%; left: 0; }

/* —— Analytics dashboard —— */
.binds-rebrand .binds-hrDash {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.binds-rebrand .binds-hrDash__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.binds-rebrand .binds-hrDash__title {
  font-weight: 850;
  font-size: 0.92rem;
  color: var(--binds-text);
}

.binds-rebrand .binds-hrDash__filters {
  display: flex;
  gap: 6px;
}

.binds-rebrand .binds-hrDash__filter {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--binds-text-2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.binds-rebrand .binds-hrDash__filter.is-active {
  background: var(--binds-primary);
  border-color: var(--binds-primary);
  color: #fff;
}

.binds-rebrand .binds-hrDash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.binds-rebrand .binds-hrDash__kpi {
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.binds-rebrand .binds-hrDash__kpiLabel {
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--binds-text-2);
  margin-bottom: 4px;
}

.binds-rebrand .binds-hrDash__kpiValue {
  display: block;
  font-size: 1.35rem;
  font-weight: 950;
  color: var(--binds-text);
  letter-spacing: -0.02em;
}

.binds-rebrand .binds-hrDash__kpiDelta {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrDash__kpiDelta--up {
  color: #15803d;
}

.binds-rebrand .binds-hrDash__charts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  align-items: end;
}

.binds-rebrand .binds-hrDash__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 140px;
  padding: 12px;
  border-radius: 16px;
  background: #fafbfc;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.binds-rebrand .binds-hrDash__bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.binds-rebrand .binds-hrDash__bar::before {
  content: "";
  width: 100%;
  max-width: 28px;
  height: var(--h, 40%);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(var(--binds-primary-rgb), 0.35), rgba(var(--binds-primary-rgb), 0.85));
  animation: bindsHrBarRise 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
  animation-delay: calc(var(--i, 0) * 0.08s);
}

.binds-rebrand .binds-hrDash__bar:nth-child(1)::before { --i: 0; }
.binds-rebrand .binds-hrDash__bar:nth-child(2)::before { --i: 1; }
.binds-rebrand .binds-hrDash__bar:nth-child(3)::before { --i: 2; }
.binds-rebrand .binds-hrDash__bar:nth-child(4)::before { --i: 3; }
.binds-rebrand .binds-hrDash__bar:nth-child(5)::before { --i: 4; }
.binds-rebrand .binds-hrDash__bar:nth-child(6)::before { --i: 5; }

.binds-rebrand .binds-hrDash__bar--active::before {
  background: linear-gradient(180deg, var(--binds-teal), var(--binds-primary));
  box-shadow: 0 8px 20px rgba(var(--binds-primary-rgb), 0.25);
}

@keyframes bindsHrBarRise {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); }
}

.binds-rebrand .binds-hrDash__bar span {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrDash__spark {
  padding: 12px;
  border-radius: 16px;
  background: #fafbfc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  display: grid;
  gap: 8px;
  align-content: end;
}

.binds-rebrand .binds-hrDash__spark svg {
  width: 100%;
  height: 56px;
}

.binds-rebrand .binds-hrDash__sparkLine {
  fill: none;
  stroke: var(--binds-teal);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: bindsHrSparkDraw 2.2s ease forwards infinite;
}

@keyframes bindsHrSparkDraw {
  0% { stroke-dashoffset: 200; }
  45% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

.binds-rebrand .binds-hrDash__sparkDot {
  fill: var(--binds-primary);
  animation: bindsHrSparkDot 2.2s ease infinite;
}

@keyframes bindsHrSparkDot {
  0%, 40% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

.binds-rebrand .binds-hrDash__spark span {
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrDash__insight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--binds-text-2);
}

.binds-rebrand .binds-hrDash__insight i {
  color: var(--binds-primary);
  margin-top: 2px;
}

/* —— Text analysis: sentiment bubbles —— */
.binds-rebrand .binds-hrScene--bubbles {
  background: #ffffff;
  padding: 16px 14px 14px;
  min-height: 400px;
}

.binds-rebrand .binds-hrBubbles {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  height: 100%;
}

.binds-rebrand .binds-hrBubbles__canvas {
  position: relative;
  min-height: 340px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fafbfc;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.binds-rebrand .binds-hrBubble {
  --bubble-size: 100px;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--bubble-size);
  height: var(--bubble-size);
  margin: 0;
  transform: translate(-50%, -50%);
  cursor: default;
  outline: none;
  animation: bindsHrBubbleFloat 5.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), z-index 0s;
  z-index: 1;
}

.binds-rebrand .binds-hrBubble--lg {
  --bubble-size: 136px;
  font-size: 14px;
  z-index: 3;
}

.binds-rebrand .binds-hrBubble--md {
  --bubble-size: 112px;
  font-size: 12px;
  z-index: 2;
}

.binds-rebrand .binds-hrBubble--sm {
  --bubble-size: 92px;
  font-size: 11px;
  z-index: 1;
}

.binds-rebrand .binds-hrBubble:hover,
.binds-rebrand .binds-hrBubble:focus-visible {
  animation-play-state: paused;
  transform: translate(-50%, -50%) scale(1.07);
  z-index: 10;
}

.binds-rebrand .binds-hrBubble.is-active {
  animation-play-state: paused;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 10;
}

.binds-rebrand .binds-hrBubbles__canvas.is-dimmed .binds-hrBubble:not(.is-active) {
  opacity: 0.45;
  transform: translate(-50%, -50%) scale(0.96);
}

@keyframes bindsHrBubbleFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-7px); }
}

.binds-rebrand .binds-hrBubble__ring {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.14));
}

.binds-rebrand .binds-hrBubble__fill {
  fill: #ffffff;
}

.binds-rebrand .binds-hrBubble__arc {
  fill: none;
  stroke-width: 4.2;
  stroke-linecap: round;
  transition: stroke-width 0.25s ease;
}

.binds-rebrand .binds-hrBubble:hover .binds-hrBubble__arc,
.binds-rebrand .binds-hrBubble.is-active .binds-hrBubble__arc {
  stroke-width: 5;
}

.binds-rebrand .binds-hrBubble__arc--pos {
  stroke: #66c46a;
}

.binds-rebrand .binds-hrBubble__arc--neu {
  stroke: #f0c040;
}

.binds-rebrand .binds-hrBubble__arc--neg {
  stroke: #e87866;
}

.binds-rebrand .binds-hrBubble__word {
  position: absolute;
  left: 50%;
  top: 41%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 1em;
  line-height: 1.15;
  color: #7a8699;
  letter-spacing: -0.01em;
  pointer-events: none;
  user-select: none;
}

.binds-rebrand .binds-hrBubble__count {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 1.65em;
  line-height: 1;
  color: #a8b4c4;
  pointer-events: none;
  user-select: none;
}

.binds-rebrand .binds-hrBubble--lg .binds-hrBubble__word { font-size: 1.05em; }
.binds-rebrand .binds-hrBubble--lg .binds-hrBubble__count { font-size: 1.85em; }

.binds-rebrand .binds-hrBubbles__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  padding-top: 4px;
  font-size: 0.72rem;
  font-weight: 750;
  color: #7a8699;
}

.binds-rebrand .binds-hrBubbles__legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.binds-rebrand .binds-hrBubbles__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.binds-rebrand .binds-hrBubbles__dot--pos { background: #66c46a; }
.binds-rebrand .binds-hrBubbles__dot--neu { background: #f0c040; }
.binds-rebrand .binds-hrBubbles__dot--neg { background: #e87866; }

@media (prefers-reduced-motion: no-preference) {
  .binds-rebrand .binds-hrBubble {
    animation:
      bindsHrBubbleFloat 5.5s ease-in-out infinite,
      bindsHrBubbleIn 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
    animation-delay: var(--d, 0s), var(--d, 0s);
  }
}

@keyframes bindsHrBubbleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
}

/* Auto-rotate journey when not interacting */
.binds-rebrand .binds-hrJourney.is-autoplay .binds-hrJourney__step.is-active {
  animation: bindsHrStepGlow 2.8s ease;
}

@keyframes bindsHrStepGlow {
  0%, 100% { box-shadow: 0 12px 28px rgba(var(--binds-primary-rgb), 0.14); }
  50% { box-shadow: 0 16px 36px rgba(var(--binds-primary-rgb), 0.22); }
}

@media (max-width: 768px) {
  .binds-rebrand .binds-hrScene {
    min-height: 360px;
    padding: 16px 14px;
  }

  .binds-rebrand .binds-hrJourney__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .binds-rebrand .binds-hrJourney__step:nth-child(4),
  .binds-rebrand .binds-hrJourney__step:nth-child(5) {
    grid-column: span 1;
  }

  .binds-rebrand .binds-hrJourney__panel {
    grid-template-columns: 1fr;
  }

  .binds-rebrand .binds-hrDash__charts {
    grid-template-columns: 1fr;
  }

  .binds-rebrand .binds-hrEnpsScale > span {
    font-size: 0.65rem;
    height: 28px;
  }

  .binds-rebrand .binds-hrScene--bubbles {
    min-height: 360px;
  }

  .binds-rebrand .binds-hrBubbles__canvas {
    min-height: 300px;
  }

  .binds-rebrand .binds-hrBubble--lg { --bubble-size: 118px; }
  .binds-rebrand .binds-hrBubble--md { --bubble-size: 100px; }
  .binds-rebrand .binds-hrBubble--sm { --bubble-size: 84px; }

  .binds-rebrand .binds-hrBubble__word {
    max-width: 78%;
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .binds-rebrand .binds-hrJourney__dot,
  .binds-rebrand .binds-hrEnpsScale__cursor,
  .binds-rebrand .binds-hrRadar__fill,
  .binds-rebrand .binds-hrDash__sparkLine,
  .binds-rebrand .binds-hrBubble {
    animation: none !important;
  }

  .binds-rebrand .binds-hrLikert__bar::after,
  .binds-rebrand .binds-hrDash__bar::before {
    animation: none;
    transform: none;
  }
}
