/* Guided reflection — sage ground, a thin progress track, and one question
   sitting in the middle of whatever room is left. */

.ro-reflect {
  background: var(--color-accent-2-100);
  padding: 66px 20px 14px;
  gap: 16px;
}

/* — back, which room you're in, which of the three — */
.ro-reflect-head {
  display: flex;
  align-items: center;
  gap: 11px;
}
.ro-reflect-topic {
  flex: 1;
  font-size: 12px;
  color: var(--color-accent-2-800);
}
.ro-reflect-count {
  font: 600 12px var(--font-body);
  color: var(--color-accent-2-800);
}

/* — the question — */
.ro-reflect-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.ro-reflect-halo {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 999px;
  background: var(--color-accent-2-300);
  animation: halo 4s ease-in-out infinite;
}
.ro-reflect-prompt {
  font-size: 29px;
  line-height: 1.14;
  color: var(--color-accent-2-900);
  text-wrap: pretty;
}
.ro-reflect-hint {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-accent-2-800);
}

/* — the two ways out: answer it now, or move along the three — */
.ro-reflect-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* .ro-press strips a button to nothing, so these restate the type and box
   .btn would otherwise have supplied. */
.ro-reflect-answer,
.ro-reflect-navbtn {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.2;
  padding: 0 calc(var(--space-3) * 1.2);
}

.ro-reflect-answer {
  height: 50px;
  gap: 9px;
  font-size: 15px;
  background: var(--color-accent-2-700);
  color: var(--color-accent-2-100);
  border: 1px solid transparent;
}
.ro-reflect-answer:hover { background: var(--color-accent-2-800); }
.ro-reflect-answer:active { background: var(--color-accent-2-900); }

.ro-reflect-nav {
  display: flex;
  gap: 9px;
}
.ro-reflect-navbtn {
  flex: 1;
  height: 46px;
  margin: 0;
  font-size: 14px;
  color: var(--color-accent-2-900);
  border: 1px solid var(--color-accent-2-400);
}
/* The design leaves these on .btn-secondary's own states, which tint with the
   text color — not the sage ramp the rest of this screen uses. */
.ro-reflect-navbtn:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.ro-reflect-navbtn:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }

@media (prefers-reduced-motion: reduce) {
  .ro-reflect-halo { animation: none; }
}
