/* Reset — ink ground, one breathing disc, one button. The disc's transform is
   set inline from v.breathScale; the timing curve lives here. */

.ro-breathe {
  background: var(--color-neutral-900);
  padding: 66px 22px 14px;
  gap: 16px;
}

.ro-breathe-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

/* The system's hover tint is ink, which disappears on this ground. */
.ro-breathe-back:hover { background: color-mix(in srgb, var(--color-neutral-100) 10%, transparent); }
.ro-breathe-back:active { background: color-mix(in srgb, var(--color-neutral-100) 18%, transparent); }

.ro-breathe-kicker {
  flex: 1;
  font-size: 12px;
  color: var(--color-neutral-300);
}

.ro-breathe-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.ro-breathe-disc {
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: var(--color-accent-2-700);
  display: grid;
  place-items: center;
  transition: transform 3.4s cubic-bezier(.4, 0, .5, 1);
}

.ro-breathe-inner {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--color-accent-2-500);
  display: grid;
  place-items: center;
}

.ro-breathe-phase {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 26px;
  color: var(--color-neutral-900);
}

.ro-breathe-read {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ro-breathe-count {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 20px;
  color: var(--color-neutral-100);
}

.ro-breathe-note {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-neutral-300);
}

.ro-breathe-go {
  height: 52px;
  background: var(--color-accent-400);
  color: var(--color-neutral-900);
  font-size: 15px;
}
.ro-breathe-go:hover { background: var(--color-accent-300); }
.ro-breathe-go:active { background: var(--color-accent-200); }
